I have a directory that contains the following items:
azur-server.jar
azur.properties
sgs.jar
azur.properties contains…
com.sun.sgs.app.authenticators=com.bigfishgames.azur.server.auth.OCAuthenticator
jar mt azur-server.jar contains the com.sun.sgs.app.authenticators class…
com/bigfishgames/azur/server/auth/OCAuthenticator.class
When I run the following…
java -jar sgs.jar azur.properties
May 7, 2007 6:13:53 PM com.sun.sgs.impl.kernel.Kernel
INFO: The Kernel is ready, version: 0.9-r1966M
May 7, 2007 6:13:53 PM com.sun.sgs.impl.kernel.Kernel startupApplication
SEVERE: Failed to load IdentityAuthenticator: com.bigfishgames.azur.server.auth.OCAuthenticator
java.lang.ClassNotFoundException: com.bigfishgames.azur.server.auth.OCAuthenticator
What can I do to correct this problem?