Demo not working

Hi

We signed up for the trial of LimeLM today and our main developer has tried to get the demo working. Unfortunately, after following the steps exactly we get an error:

C:\Users\anuradha\Desktop\Java\dist>java -jar DocumentEditor.jarException in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: Unable to load library 'C:\Users\anuradha\Desktop\Java\dist\TurboActivate\win-x64\TurboActivate.dll': The specified module could not be found.

at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:169) at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:242) at com.sun.jna.Library$Handler.<init>(Library.java:140) at com.sun.jna.Native.loadLibrary(Native.java:368) at com.sun.jna.Native.loadLibrary(Native.java:353) at turboactivates.TurboActivateNative.<clinit>(TurboActivate.java:812) at turboactivates.TurboActivate.SetPDetsLocation(TurboActivate.java:659)

at documenteditor.DocumentEditorView.<init>(DocumentEditorView.java:28) at documenteditor.DocumentEditorApp.startup(DocumentEditorApp.java:14) at org.jdesktop.application.Application$1.run(Application.java:171) at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEventImpl(Unknown Source) at java.awt.EventQueue.access$000(Unknown Source) at java.awt.EventQueue$3.run(Unknown Source) at java.awt.EventQueue$3.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source)

C:\Users\anuradha\Desktop\Java\dist>

all files are correctly on the paths

The error tells you exactly what's wrong:

Unable to load library 'C:\Users\anuradha\Desktop\Java\dist\TurboActivate\win-x64\TurboActivate.dll': The specified module could not be found.

Create that path and add the 64-bit TurboActivate.dll to that folder.

Does that make sense?

Folder " TurboActivate\win-x64" is in the path as jar file and dll is inside it still throw the error

You wouldn't get that error if that were the case.

Copy that path in the error into the Run box in the start menu. Press enter. You'll be shown the folder (or you'll be shown an error saying the folder doesn't exist).

Now, make sure you copy the TurboActivate.dll file from the "x64" folder in TurboActivate.zip file. That is, not the x86 folder, but the x64 folder.

After doing that you shouldn't get that error anymore.

If you get another error then tell me what it is and I'll help.

First, try using the latest JNA library instead of the one included in the TurboActivate package.

If that doesn't solve the problem then you should also explicitly pass in the folder that contains the TurboActivate.dat file (and the subfolders like "win-x86, "win-x64", etc.) by using the SetTurboActivateFolder(String folder) function.

You have to call SetTurboActivateFolder() before making any other TurboActivate calls.