[JBossWS] - Re: Need help : JBossWS Security!
by helmutdoe
Hi all,
yes think you were right i had mixed RPC und JAXWS. Also after a while i was able to fix the <wsse:Securtiy> -Tag missing by using the folloing code
| import java.io.File;
| import java.net.MalformedURLException;
| import java.net.URL;
| import java.util.ArrayList;
| import java.util.List;
| import javax.xml.namespace.QName;
| import javax.xml.ws.BindingProvider;
| import javax.xml.ws.Service;
| import javax.xml.ws.handler.Handler;
| import org.jboss.ws.core.StubExt;
| import org.jboss.ws.extensions.security.jaxws.WSSecurityHandlerClient;
| import org.jboss.ws.extensions.addressing.jaxws.WSAddressingClientHandler;
|
| ...
| System.setProperty("org.jboss.ws.wsse.keyStore","src/WEB-INF/keystore.jks");
| System.setProperty("org.jboss.ws.wsse.trustStore", "src/WEB-INF/cacerts.jks");
| System.setProperty("org.jboss.ws.wsse.keyStorePassword", "changeit");
| System.setProperty("org.jboss.ws.wsse.trustStorePassword", "changeit");
| System.setProperty("org.jboss.ws.wsse.keyStoreType", "jks");
| System.setProperty("org.jboss.ws.wsse.trustStoreType", "jks");
|
|
|
| // Create Service Binding
| URL url = new URL("http://localhost:8080/LottoBean/LottoEJBWS?wsdl");
| QName qName = new QName("urn:com:tools:wsse", "LottoEJBWSService");
|
| //LottoEJBWSService service = new LottoEJBWSService(url,qName);
| LottoEJBWS port = Service.create(url, qName).getPort(LottoEJBWS.class);
|
| ((StubExt) port).setSecurityConfig(new File("src/META-INF/jboss-wsse-client.xml").toURI().toURL().toExternalForm());
| ((StubExt) port).setConfigName("Standard WSSecurity Client");
|
| BindingProvider binding = (BindingProvider)port;
| List<Handler> handlerChain = new ArrayList<Handler>();
| // handlerChain.add(new WSAddressingClientHandler());
| handlerChain.add(new WSSecurityHandlerClient());
| handlerChain.add(new LogHandler());
| binding.getBinding().setHandlerChain(handlerChain);
|
With this code and my configured handlers i be able to sign messages. If i add encryption to the WebService Endponit i run in an other Exception.
| Endpoint {urn:com:tools:wsse}LottoEJBWSPort does not contain operation meta data for: {http://www.w3.org/2001/04/xmlenc#}EncryptedData
| javax.xml.ws.soap.SOAPFaultException: Endpoint {urn:com:tools:wsse}LottoEJBWSPort does not contain operation meta data for: {http://www.w3.org/2001/04/xmlenc#}EncryptedData
| at org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS.getSOAPFaultException(SOAPFaultHelperJAXWS.java:72)
| at org.jboss.ws.core.jaxws.binding.SOAP11BindingJAXWS.throwFaultException(SOAP11BindingJAXWS.java:109)
| at org.jboss.ws.core.CommonSOAPBinding.unbindResponseMessage(CommonSOAPBinding.java:579)
| ....
|
The code below shows my xml handler files.
standard-jaxws-client-config.xml
|
| <client-config>
| <config-name>Standard WSSecurity Client</config-name>
| <post-handler-chains>
| <javaee:handler-chain>
| <javaee:protocol-bindings>##SOAP11_HTTP ##SOAP11_HTTP_MTOM</javaee:protocol-bindings>
| <javaee:handler>
| <javaee:handler-name>WSSecurityHandlerOutbound</javaee:handler-name>
| <javaee:handler-class>org.jboss.ws.extensions.security.jaxws.WSSecurityHandlerClient</javaee:handler-class>
| </javaee:handler>
| </javaee:handler-chain>
| </post-handler-chains>
| </client-config>
|
standard-jaxws-endpoint-config.xml
|
|
| <endpoint-config>
| <config-name>Standard WSSecurity Endpoint</config-name>
| <post-handler-chains>
| <javaee:handler-chain>
| <javaee:protocol-bindings>##SOAP11_HTTP ##SOAP11_HTTP_MTOM</javaee:protocol-bindings>
| <javaee:handler>
| <javaee:handler-name>WSSecurity Handler</javaee:handler-name>
| <javaee:handler-class>org.jboss.ws.extensions.security.jaxws.WSSecurityHandlerServer</javaee:handler-class>
| </javaee:handler>
| <javaee:handler>
| <javaee:handler-name>Recording Handler</javaee:handler-name>
| <javaee:handler-class>org.jboss.wsf.framework.invocation.RecordingServerHandler</javaee:handler-class>
| </javaee:handler>
| </javaee:handler-chain>
| </post-handler-chains>
| </endpoint-config>
|
jboss-wsse-client.xml
| <jboss-ws-security xmlns="http://www.jboss.com/ws-security/config"
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
| xsi:schemaLocation="http://www.jboss.com/ws-security/config
| http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd">
| <config>
| <sign type="x509v3" alias="s1as" includeTimestamp="false"/>
| <encrypt type="x509v3" alias="s1as" />
| <requires>
| <signature/>
| </requires>
| </config>
| </jboss-ws-security>
|
jboss-wsse-server.xml
| <jboss-ws-security xmlns="http://www.jboss.com/ws-security/config"
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
| xsi:schemaLocation="http://www.jboss.com/ws-security/config
| http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd">
| <key-store-file>WEB-INF/keystore.jks</key-store-file>
| <key-store-password>changeit</key-store-password>
| <key-store-type>jks</key-store-type>
| <trust-store-file>WEB-INF/cacerts.jks</trust-store-file>
| <trust-store-password>changeit</trust-store-password>
| <config>
| <sign type="x509v3" alias="s1as" includeTimestamp="false"/>
| <encrypt type="x509v3" alias="s1as" />
| <requires>
| <signature/>
| </requires>
| </config>
| </jboss-ws-security>
|
Thnx for any hints
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4161537#4161537
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4161537
16 years, 6 months
[JBossWS] - Re: WS-Security trouble: {http://www.w3.org/2005/08/addressi
by timeagentess
"alessio.soldano(a)jboss.com" wrote : Hi, as a general suggestion, I first of all suggest you to try using some more recent versions of both JBoss AS and JBossWS.
Hi, thanks for the suggestions! As a matter of fact, I am using JBoss 4.2.2 and JBossWS 3.0.2 now, with the same problems. Some more answers/questions for each of your points below.
anonymous wrote : You get this message because you're using WS-Addressing and the Action header is missing in your SOAP message. This is not related to WS-Security.
|
Have I inadvertently activated WS-Addressing? (that was most certainly not my intention). I thought for using WS-Addressing one has to have an annotation like this on the web service class: @EndpointConfig(configName = "Standard WSAddressing Endpoint") ?
anonymous wrote :
| Endpoint {http://localhost:8080/atb}WSTwoServiceBeanPort does not contain operation meta data for: {http://www.w3.org/2001/04/xmlenc#}EncryptedData
|
| under which conditions you got this? Try looking at the log and verify the security handler on server side is configured (the ws-security conf is selected).
I got this when requesting encryption in both client and service jboss-wsse-****.xml
I'm not sure if this part of the log is what you referred to, but the security config seems to be null:
anonymous wrote : 2008-06-30 15:23:36,422 DEBUG [org.jboss.system.ServiceConfigurator] SecurityConf set to [security: null] in jboss.mq.destination:service=Topic,name=testTopic
| 2008-06-30 15:23:36,422 DEBUG [org.jboss.mq.server.jmx.Topic.testTopic] Setting securityConf: [security: null]
On the service endpoint it seems to be ok:
anonymous wrote : ServerEndpointMetaData:
| type=JAXWS
| qname={http://wsthree.ws.atb.com/}WSThreeServiceBeanPort
| [...]
| configFile=META-INF/standard-jaxws-endpoint-config.xml
| configName=Standard WSSecurity Endpoint
| authMethod=null
| transportGuarantee=null
| secureWSDLAccess=false
| properties={}
(I suppose META-INF/standard-jaxws-endpoint-config.xml is taken from the JBossWS.sar deployment, as it is not present in my web service deployment anymore? )
And a bit lower in the log file the handler seems to be ok as well:
anonymous wrote : HandlerMetaDataJAXWS:
| type=POST
| name=WSSecurity Handler
| class=class org.jboss.ws.extensions.security.jaxws.WSSecurityHandlerServer
| params=[]
| protocols=##SOAP11_HTTP ##SOAP11_HTTP_MTOM
| services=null
| ports=null
------------------------------------------------
Anyway, to sum up what I have now and what does not work:
Web service:
| @WebService
| @SOAPBinding(style = javax.jws.soap.SOAPBinding.Style.DOCUMENT,
| use = javax.jws.soap.SOAPBinding.Use.LITERAL,
| parameterStyle = javax.jws.soap.SOAPBinding.ParameterStyle.WRAPPED)
| @EndpointConfig(configName = "Standard WSSecurity Endpoint")
| public class WSThreeServiceBean implements WSThreeRemoteInterface {
| @WebMethod
| public String hello(String input) {
| return "Hello, " + input + "!";
| }
| }
In the META-INF folder there is the keystore, truststore and jboss-wsse-server.xml
Client:
[...]
| securityURL = new File("META-INF/jboss-wsse-client.xml").toURL();
| ((StubExt)wsthree).setSecurityConfig(securityURL.toExternalForm());
| ((StubExt)wsthree).setConfigName("Standard WSSecurity Client");
|
with keystore, truststore and jboss-wsse-client.xml in the META-INF (client is standalone).
Both service and client request messages to be signed.
Tracing the SOAP messages, looks like the client sends a properly signed message, which the service receives, then answers without signing the message.
The client replies with "This service requires <wsse:Security>, which is missing.", which is logical, since the service sent an unsigned message.
If I comment out ((StubExt)wsthree).setConfigName("Standard WSSecurity Client"); in the client, the request-reply goes "perfectly": the client sends an unsigned message, and the service answers with an unsigned message as well.
What is not so clear to me is how to make the web service sign the message -- does it need something else besides the @EndpointConfig annotation and jboss-wsse-server.xml?
Thank you! (And I really apologize if I am asking stupid questions in the wrong direction, I think I've gotten to the point where I can't see the forest because of the trees anymore...)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4161532#4161532
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4161532
16 years, 6 months
[JBoss jBPM] - Re: How to deploy a BPEL process using the APIs?
by dhanushgopinath
HI,
I tried doing the same thing jsports mentioned.. and I was successful to some extend. Some logs came :).
But I hit upon this error. Anyone have any idea?
| 2:41:57,494 DEBUG [Configuration] resolving reference to class: com.ibm.wsdl.PortTypeImpl
| 12:41:57,494 DEBUG [Configuration] resolving reference to class: org.jbpm.bpel.wsdl.impl.OutputImpl
| 12:41:57,494 DEBUG [Configuration] resolving reference to class: com.ibm.wsdl.MessageImpl
| 12:41:57,494 DEBUG [Configuration] resolving reference to class: com.ibm.wsdl.OperationImpl
| 12:41:57,494 DEBUG [Configuration] resolving reference to class: com.ibm.wsdl.MessageImpl
| 12:41:57,494 DEBUG [Configuration] resolving reference to class: org.jbpm.bpel.graph.def.ImportDefinition
| 12:41:57,635 INFO [NamingHelper] JNDI InitialContext properties:{}
| 12:41:58,135 FATAL [DatasourceConnectionProvider] Could not find datasource: java:/DefaultDS
| javax.naming.NameNotFoundException: jbpmbpel-client not bound
| at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
| at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
| at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
|
Thanks
Dhanush
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4161526#4161526
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4161526
16 years, 6 months
[JBoss Tools (users)] - Re: Thi first impressions whith Ganimade - ERROR
by krasig
Ok. This is my log with night built form June 28:
| !SESSION 2008-06-30 16:52:38.895 -----------------------------------------------
| eclipse.buildId=I20080617-2000
| java.version=1.5.0_05
| java.vendor=Sun Microsystems Inc.
| BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=bg_BG
| Command-line arguments: -os win32 -ws win32 -arch x86 -clean
|
| !ENTRY org.eclipse.ui 2 0 2008-06-30 16:53:32.647
| !MESSAGE Warnings while parsing the key bindings from the 'org.eclipse.ui.commands' extension point
| !SUBENTRY 1 org.eclipse.ui 2 0 2008-06-30 16:53:32.647
| !MESSAGE Cannot bind to an undefined command: plug-in='org.eclipse.tm.terminal', id='org.eclipse.tm.terminal.command1'
| !SUBENTRY 1 org.eclipse.ui 2 0 2008-06-30 16:53:32.647
| !MESSAGE Cannot bind to an undefined command: plug-in='org.eclipse.tm.terminal', id='org.eclipse.tm.terminal.command1'
| !SUBENTRY 1 org.eclipse.ui 2 0 2008-06-30 16:53:32.647
| !MESSAGE Cannot bind to an undefined command: plug-in='org.eclipse.tm.terminal', id='org.eclipse.tm.terminal.command1'
| !SUBENTRY 1 org.eclipse.ui 2 0 2008-06-30 16:53:32.647
| !MESSAGE Cannot bind to an undefined command: plug-in='org.eclipse.tm.terminal', id='org.eclipse.tm.terminal.command1'
| !SUBENTRY 1 org.eclipse.ui 2 0 2008-06-30 16:53:32.647
| !MESSAGE Cannot bind to an undefined command: plug-in='org.eclipse.tm.terminal', id='org.eclipse.tm.terminal.command1'
| !SUBENTRY 1 org.eclipse.ui 2 0 2008-06-30 16:53:32.647
| !MESSAGE Cannot bind to an undefined command: plug-in='org.eclipse.tm.terminal', id='org.eclipse.tm.terminal.command1'
| !SUBENTRY 1 org.eclipse.ui 2 0 2008-06-30 16:53:32.647
| !MESSAGE Cannot bind to an undefined command: plug-in='org.eclipse.tm.terminal', id='org.eclipse.tm.terminal.command1'
| !SUBENTRY 1 org.eclipse.ui 2 0 2008-06-30 16:53:32.647
| !MESSAGE Cannot bind to an undefined command: plug-in='org.eclipse.tm.terminal', id='org.eclipse.tm.terminal.command1'
| !SUBENTRY 1 org.eclipse.ui 2 0 2008-06-30 16:53:32.647
| !MESSAGE Cannot bind to an undefined command: plug-in='org.eclipse.tm.terminal', id='org.eclipse.tm.terminal.command1'
| !SUBENTRY 1 org.eclipse.ui 2 0 2008-06-30 16:53:32.662
| !MESSAGE Cannot bind to an undefined command: plug-in='org.eclipse.tm.terminal', id='org.eclipse.tm.terminal.command1'
|
| !ENTRY org.eclipse.ui 4 0 2008-06-30 16:53:45.147
| !MESSAGE An unexpected exception was thrown.
| !STACK 0
| java.lang.NullPointerException
| at org.jboss.tools.vpe.ui.palette.PaletteAdapter.dispose(PaletteAdapter.java:88)
| at org.jboss.tools.common.model.ui.views.palette.PaletteViewPart.dispose(PaletteViewPart.java:91)
| at org.eclipse.ui.internal.ViewReference.createPartHelper(ViewReference.java:459)
| at org.eclipse.ui.internal.ViewReference.createPart(ViewReference.java:230)
| at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:594)
| at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:306)
| at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:531)
| at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:180)
| at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:270)
| at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65)
| at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:473)
| at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1256)
| at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:668)
| at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:576)
| at org.eclipse.ui.internal.PartSashContainer.createControl(PartSashContainer.java:568)
| at org.eclipse.ui.internal.PerspectiveHelper.activate(PerspectiveHelper.java:271)
| at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:964)
| at org.eclipse.ui.internal.WorkbenchPage.onActivate(WorkbenchPage.java:2593)
| at org.eclipse.ui.internal.WorkbenchWindow$25.run(WorkbenchWindow.java:2869)
| at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
| at org.eclipse.ui.internal.WorkbenchWindow.setActivePage(WorkbenchWindow.java:2850)
| at org.eclipse.ui.internal.WorkbenchWindow$19.runWithException(WorkbenchWindow.java:2167)
| at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
| at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
| at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133)
| at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3800)
| at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3425)
| at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
| at org.eclipse.ui.internal.Workbench$27.runWithException(Workbench.java:1361)
| at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
| at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
| at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133)
| at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3800)
| at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3425)
| at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2293)
| at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198)
| at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493)
| at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288)
| at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488)
| at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
| at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113)
| at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
| at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
| at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
| at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
| at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
| at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
| at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
|
| !ENTRY org.eclipse.ui.workbench 4 0 2008-06-30 16:53:45.162
| !MESSAGE Unable to create view ID org.jboss.tools.common.model.ui.views.palette.PaletteView: org/eclipse/gef/internal/ui/palette/editparts/PaletteEditPart
| !STACK 0
| java.lang.NoClassDefFoundError: org/eclipse/gef/internal/ui/palette/editparts/PaletteEditPart
| at org.jboss.tools.vpe.ui.palette.CustomPaletteEditPartFactory.createDrawerEditPart(CustomPaletteEditPartFactory.java:27)
| at org.eclipse.gef.ui.palette.PaletteEditPartFactory.createEditPart(PaletteEditPartFactory.java:66)
| at org.eclipse.gef.editparts.AbstractEditPart.createChild(AbstractEditPart.java:249)
| at org.eclipse.gef.editparts.AbstractEditPart.refreshChildren(AbstractEditPart.java:726)
| at org.eclipse.gef.editparts.AbstractEditPart.refresh(AbstractEditPart.java:677)
| at org.eclipse.gef.editparts.AbstractGraphicalEditPart.refresh(AbstractGraphicalEditPart.java:571)
| at org.eclipse.gef.editparts.AbstractEditPart.addNotify(AbstractEditPart.java:235)
| at org.eclipse.gef.editparts.AbstractGraphicalEditPart.addNotify(AbstractGraphicalEditPart.java:219)
| at org.eclipse.gef.editparts.AbstractEditPart.addChild(AbstractEditPart.java:198)
| at org.eclipse.gef.editparts.SimpleRootEditPart.setContents(SimpleRootEditPart.java:101)
| at org.eclipse.gef.ui.palette.PaletteViewer.setPaletteRoot(PaletteViewer.java:397)
| at org.jboss.tools.vpe.ui.palette.PaletteAdapter.createControl(PaletteAdapter.java:59)
| at org.jboss.tools.common.model.ui.views.palette.PaletteViewPart.createPartControlImpl(PaletteViewPart.java:63)
| at org.jboss.tools.common.model.ui.views.palette.PaletteViewPart.createPartControl(PaletteViewPart.java:50)
| at org.eclipse.ui.internal.ViewReference.createPartHelper(ViewReference.java:371)
| at org.eclipse.ui.internal.ViewReference.createPart(ViewReference.java:230)
| at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:594)
| at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:306)
| at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:531)
| at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:180)
| at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:270)
| at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65)
| at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:473)
| at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1256)
| at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:668)
| at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:576)
| at org.eclipse.ui.internal.PartSashContainer.createControl(PartSashContainer.java:568)
| at org.eclipse.ui.internal.PerspectiveHelper.activate(PerspectiveHelper.java:271)
| at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:964)
| at org.eclipse.ui.internal.WorkbenchPage.onActivate(WorkbenchPage.java:2593)
| at org.eclipse.ui.internal.WorkbenchWindow$25.run(WorkbenchWindow.java:2869)
| at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
| at org.eclipse.ui.internal.WorkbenchWindow.setActivePage(WorkbenchWindow.java:2850)
| at org.eclipse.ui.internal.WorkbenchWindow$19.runWithException(WorkbenchWindow.java:2167)
| at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
| at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
| at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133)
| at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3800)
| at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3425)
| at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
| at org.eclipse.ui.internal.Workbench$27.runWithException(Workbench.java:1361)
| at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
| at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
| at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133)
| at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3800)
| at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3425)
| at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2293)
| at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198)
| at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493)
| at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288)
| at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488)
| at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
| at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113)
| at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
| at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
| at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
| at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
| at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
| at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
| at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
|
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4161524#4161524
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4161524
16 years, 6 months