[jboss-user] [JBossWS] - Applet invoking a web service
earniedyke
do-not-reply at jboss.com
Wed Aug 22 08:38:03 EDT 2007
Greetings all!!
I have a problem I am hoping someone can help me solve. I have the following code in an APPLET
URL url = new URL(webRoot + "/" + JBPM_WEBSERVICE + "?WSDL");
| QName qname = new QName("http://webservice.jbpm.abc.org","JbpmBeanService");
| ServiceFactory factory = ServiceFactory.newInstance();
| Service remote = factory.createService(url,qname);
| Jbpm proxy = (Jbpm)remote.getPort(Jbpm.class);
| String[] xml = proxy.getWorkFlow(name);
|
When it is executed, I receive the following error in the Java Console:
Exception in thread "AWT-EventQueue-2" java.security.AccessControlException: access denied (java.util.PropertyPermission javax.xml.rpc.ServiceFactory read)
| at java.security.AccessControlContext.checkPermission(Unknown Source)
| at java.security.AccessController.checkPermission(Unknown Source)
| at java.lang.SecurityManager.checkPermission(Unknown Source)
| at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
| at java.lang.System.getProperty(Unknown Source)
| at javax.xml.rpc.ServiceFactory$PropertyAccessAction.run(ServiceFactory.java:189)
| at java.security.AccessController.doPrivileged(Native Method)
| at javax.xml.rpc.ServiceFactory.newInstance(ServiceFactory.java:77)
| at org.ebsinc.jbpm.applet.Diagrammer$DrawingCanvas.actionPerformed(Diagrammer.java:727)
| at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
| at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
| at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
| at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
| at javax.swing.AbstractButton.doClick(Unknown Source)
| at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
| at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source)
| at java.awt.Component.processMouseEvent(Unknown Source)
| at javax.swing.JComponent.processMouseEvent(Unknown Source)
| at java.awt.Component.processEvent(Unknown Source)
| at java.awt.Container.processEvent(Unknown Source)
| at java.awt.Component.dispatchEventImpl(Unknown Source)
| at java.awt.Container.dispatchEventImpl(Unknown Source)
| at java.awt.Component.dispatchEvent(Unknown Source)
| at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
| at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
| at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
| at java.awt.Container.dispatchEventImpl(Unknown Source)
| at java.awt.Component.dispatchEvent(Unknown Source)
| at java.awt.EventQueue.dispatchEvent(Unknown Source)
| at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
| at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
| at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
| at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
| at java.awt.EventDispatchThread.run(Unknown Source)
|
My research leads me to believe the ServiceFactory in jboss-jaxrpc.jar is attempting to read a system property and this is causing the error. Anyone think of a way around this?
Thanks in advance for any and all assistance!!!
Earnie!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076819#4076819
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076819
More information about the jboss-user
mailing list