Using GigaSpaces JMS Without Changing the Classpath

A JMS application may use the GigaSpaces RMI registry to a acquire its JMS resources. In this case the application administrator may prefer not to include the GigaSpaces JAR files in the application's classpath. The GigaSpaces RMI registry specifies a Code Base where the application receives GigaSpaces's class information automatically.

In order for an application to use GigaSpaces JMS without having to include GigaSpaces JAR files in the classpath the application administrator has to make sure that:

  1. The security policy contains:
grant {
    permission java.security.AllPermission "", "";
};

For example, the security policy may be set to the policy file of GigaSpaces:

-Djava.security.policy=$GS_HOME\policy\policy.all
  1. The security manager is set to be the RMISecurityManager:
-Djava.security.manager=java.rmi.RMISecurityManager