How can I access custom properties in WebSphere?
I have set some custom properties for a container in WebSphere, but I can't figur开发者_如何学Goe out how to read those properties back. I've tried System.getProperty(...), but it's empty.
I've seen references to JMX, but wondered if there was a definitive answer.
"Custom property" is a generate term in WAS configuration for applying arbitrary properties to all kinds of objects. Custom properties on the JVM configuration object do translate to system properties that can be acquired using System.getProperty. What are you trying to do?
SIP Servlets 1.1 Spec Section 15.4.2 defines the Application Router Packaging and Deployment.
javax.servlet.sip.ar.spi.SipApplicationRouterProvider system property can be used to override loading behavior and force a specific provider implementation to be used.
Alternatively you can try with Mobicents SIP Servlets if it doesn't work with IBM
精彩评论