XoomCode / AcidMaps

Interpolated Images Generator
GNU Lesser General Public License v3.0
33 stars 10 forks source link

Problem with Windows Vista #2

Closed js4game closed 13 years ago

js4game commented 13 years ago

I installed the plugin in geoserver (Windows Vista) but does not work, it throws an exception when i try an AMS call.

2011-04-07 13:54:36,618 ERROR [geoserver.ows] - org.geoserver.platform.ServiceException: No service: ( AMS ) at org.geoserver.ows.Dispatcher.service(Dispatcher.java:404) at org.geoserver.ows.Dispatcher.handleRequestInternal(Dispatcher.java:213) at org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153)

Any tips for this problem?

PD:I can't find the Windows Vista dll library

fpanettieri commented 13 years ago

This can be caused when you use a differente version of the JNI adapter. The mismatch between 64 and 32 bit library or java with Windows causes the module to stop.

Please check these things: Is your windows 64 or 32 bits? Check java version, does it runs on 32 or 64 bits?

In case everything is 64 bits, you'll need the 64 bits JNI extracted in your system32 folder In case Windows runs on 64 bits, but the version of java that you have installed is 32 bits, you'll need to extract de 32 bits JNI in "Windows\SysWOW64" folder. (This folder contains 32 libraries on 64 bits systems) In case everything runs on 32 bits, the 32 bit JNI should be extracted in system32 folder.

Hope this help you

js4game commented 13 years ago

Ok with the new 32-bit library it works!

Thanks a lot.