Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-swt-dev] SWT Deployment problem

Hello,

I have an SWT application which I deploy via Java WebStart. On a normal Windows machine everything works fine. But if I try to start the application from a Citrix Terminal Server I get the following exception:

java.lang.reflect.InvocationTargetException
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at com.sun.javaws.Launcher.executeApplication(Unknown Source)
      at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
      at com.sun.javaws.Launcher.continueLaunch(Unknown Source)
      at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
      at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
      at com.sun.javaws.Launcher.run(Unknown Source)
      at java.lang.Thread.run(Unknown Source) Caused by:
java.lang.UnsatisfiedLinkError: GetVersionExW
      at org.eclipse.swt.internal.win32.OS.GetVersionExW(Native Method)
      at org.eclipse.swt.internal.win32.OS.<clinit>(OS.java:62)
      at org.eclipse.swt.widgets.Display.<clinit>(Display.java:125)


Does anybody have an idea what the reason for this is or any solutions? All forum posts I found until now refer to this problem only in a mobile environment (PDA) when a wrong native library is used. But i use the win32-x86 library, which should be right for the Terminal Server (windows 2000).

I would be really thankful if anybody has any clue.

Martin


Back to the top