I see CXF2.5.2 implementation as,
protected void checkPublishPermission()
{
SecurityManager sm = System.getSecurityManager();
if (sm != null)
sm.checkPermission(PUBLISH_PERMISSION);
else if
(Boolean.getBoolean("org.apache.cxf.jaxws.checkPublishEndpointPermission"))
AccessController.checkPermission(PUBLISH_PERMISSION);
}
Is this correct? It does not look for JVM property override, if security
manager is present.
--
View this message in context:
http://cxf.547215.n5.nabble.com/CXF-AccessControl-Exception-Websphere-tp5635783p5636014.html
Sent from the cxf-user mailing list archive at Nabble.com.