[JBoss Web Services Users] - Getting Classcast Exception Inconsistently on WSAddressing I
by vinothkumar
Hello all,
We are using JBOSS 4.2.3 with JBOSSWS Native 3.1.0 deployed.
We had implemented WSAddressing for Our Services as per the Steps given in the link : http://www.jboss.org/community/wiki/JBossWS-NativeUserGuide.
This WSAddressing implementation works fine without any issues if we give a single hit to the Services from the client for a given time. But if we have multiple simultaneous hits, we are getting the Classcast Exception inconsistently.
We had done the following changes in Client,
Service service = Service.create(wsdlURL, serviceName);
| port1 = (IdentityServiceImpl)service.getPort(IdentityServiceImpl.class);
| BindingProvider bindingProvider = (BindingProvider)port1;
|
| List<Handler> customHandlerChain = new ArrayList<Handler>();
| customHandlerChain.add(new ClientHandler());
| customHandlerChain.add(new WSAddressingClientHandler());
| bindingProvider.getBinding().setHandlerChain(customHandlerChain);
The Exception that we are getting is,
javax.xml.ws.WebServiceException: java.lang.ClassCastException: com.mobax.signage.ws.RemoveDeviceResponse cannot be cast to com.mobax.signage.ws.GetDeviceResponseResponse
| at org.jboss.ws.core.jaxws.client.ClientImpl.handleRemoteException(ClientImpl.java:404)
| at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:314)
| at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:172)
| at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:152)
| at $Proxy103.removeDevice(Unknown Source)
| at com.mobax.mashup.webserviceconsumer.SignageServiceConsumer.removeDevices(SignageServiceConsumer.java:264)
| at com.mobax.mashup.responsebuilder.EnablerResponseParser.removeDevice(EnablerResponseParser.java:1489)
| at com.mobax.mashup.servlet.signage.RemoveDevice.processRequest(RemoveDevice.java:60)
| at com.mobax.mashup.servlet.signage.RemoveDevice.doGet(RemoveDevice.java:88)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
| at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
| at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
| at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
| at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
| at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
| at java.lang.Thread.run(Thread.java:619)
As per Our understanding,
We are invoking the method port1.getDeviceResponse(). Before receiving the response for this request, we are invoking another method port1.removeDevice(). The Proxy seems to be waiting for the Response for the second request removeDevice(). When it receives the Response for the first request getDeviceResponse(), the proxy tries to parse this response assuming that this response belongs to the Second request, thus Resulting in Classcast Exception.
We would like to know whether anybody have Successfully implemented the WSAddressing in their Services without having any issues.
Interestingly, we had find out a WORKAROUND for this issue. The workaround is to generate the following code for every Request. i.e., before calling any Requests, if we generate the following proxy every time newly, then the Exception does not Occurs.
| port1 = (IdentityServiceImpl)service.getPort(IdentityServiceImpl.class);
| BindingProvider bindingProvider = (BindingProvider)port1;
|
| List<Handler> customHandlerChain = new ArrayList<Handler>();
| customHandlerChain.add(new ClientHandler());
| customHandlerChain.add(new WSAddressingClientHandler());
| bindingProvider.getBinding().setHandlerChain(customHandlerChain);
Does anybody have any idea on this? We are not getting enough responses on our previous posts for this issue. So I had opened a new thread and provided more information on this issue.
Thanks for reading this long post.
Regards,
Vinoth Kumar
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4251412#4251412
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4251412
16 years, 8 months
[Security] - run -c default -b node1.jboss.com
by norazanita_adnan
step 5 in JBOSS FEDERATED SSO - GETTING STARTED tutorial
http://www.jboss.org/community/wiki/StartFedSSO
when i invoke ./run.sh -c default -b node1.jboss.com
i get this error..
22:23:38,920 ERROR [AbstractKernelController] Error installing to Start: name=ServiceBindingManagementObject state=Create
java.net.UnknownHostException: node1.jboss.com
at java.net.Inet4AddressImpl.lookupAllHostAddr(Native Method)
at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:849)
at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1200)
at java.net.InetAddress.getAllByName0(InetAddress.java:1153)
at java.net.InetAddress.getAllByName(InetAddress.java:1083)
at java.net.InetAddress.getAllByName(InetAddress.java:1019)
at java.net.InetAddress.getByName(InetAddress.java:969)
at org.jboss.services.binding.ServiceBinding.(ServiceBinding.java:125)
at org.jboss.services.binding.impl.PojoServiceBindingStore.addServiceBindingInternal(PojoServiceBindingStore.java:458)
at org.jboss.services.binding.impl.PojoServiceBindingStore.establishBindings(PojoServiceBindingStore.java:439)
at org.jboss.services.binding.impl.PojoServiceBindingStore.start(PojoServiceBindingStore.java:204)
at org.jboss.services.binding.managed.ServiceBindingManagementObject.start(ServiceBindingManagementObject.java:324)
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:597)
at org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:59)
at org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:150)
at org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66)
at org.jboss.kernel.plugins.dependency.KernelControllerContextAction$JoinpointDispatchWrapper.execute(KernelControllerContextAction.java:241)
at org.jboss.kernel.plugins.dependency.ExecutionWrapper.execute(ExecutionWrapper.java:47)
at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchExecutionWrapper(KernelControllerContextAction.java:109)
at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchJoinPoint(KernelControllerContextAction.java:70)
at org.jboss.kernel.plugins.dependency.LifecycleAction.installActionInternal(LifecycleAction.java:221)
at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54)
at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42)
at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:774)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:540)
at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:121)
at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:51)
at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)
at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process(MainDeployerAdapter.java:117)
at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(ProfileDeployAction.java:70)
at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(AbstractProfileAction.java:53)
at org.jboss.system.server.profileservice.repository.AbstractProfileService.install(AbstractProfileService.java:361)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile(AbstractProfileService.java:306)
at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:271)
at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)
at org.jboss.Main.boot(Main.java:221)
at org.jboss.Main$1.run(Main.java:556)
at java.lang.Thread.run(Thread.java:619)
22:24:01,847 INFO [EsbConfigParser] Created
22:24:23,397 INFO [NativeServerConfig] JBoss Web Services - Stack Native Core
22:24:23,400 INFO [NativeServerConfig] 3.1.2.GA
22:24:26,328 INFO [AttributeCallbackItem] Owner callback not implemented.
22:24:34,934 INFO [LogNotificationListener] Adding notification listener for logging mbean "jboss.system:service=Logging,type=Log4jService" to server org.jboss.mx.server.MBeanServerImpl@191777e[ defaultDomain='jboss' ]
23:00:34,680 INFO [NativeServerConfig] JBoss Web Services - Stack Native Core
23:00:34,682 INFO [NativeServerConfig] 3.1.2.GA
23:00:38,108 INFO [AttributeCallbackItem] Owner callback not implemented.
23:00:42,994 INFO [LogNotificationListener] Adding notification listener for logging mbean "jboss.system:service=Logging,type=Log4jService" to server org.jboss.mx.server.MBeanServerImpl@12cb585[ defaultDomain='jboss' ]
23:02:00,777 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@25908944{vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/profileservice-secured.jar/}
23:02:00,781 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@25908944{vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/profileservice-secured.jar/}
23:02:00,781 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@25908944{vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/profileservice-secured.jar/}
23:02:00,782 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@25908944{vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/profileservice-secured.jar/}
23:02:26,034 ERROR [AbstractKernelController] Error installing to Create: name=jboss.messaging:service=Connector,transport=bisocket state=Configured mode=Manual requiredState=Create
java.lang.RuntimeException: Error setting up server invoker SocketServerInvoker[node1.jboss.com:4457]
at org.jboss.remoting.ServerInvoker.create(ServerInvoker.java:936)
at org.jboss.remoting.transport.Connector.init(Connector.java:436)
at org.jboss.remoting.transport.Connector.create(Connector.java:1143)
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:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
at $Proxy38.create(Unknown Source)
at org.jboss.system.microcontainer.CreateDestroyLifecycleAction.installAction(CreateDestroyLifecycleAction.java:42)
at org.jboss.system.microcontainer.CreateDestroyLifecycleAction.installAction(CreateDestroyLifecycleAction.java:37)
at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
at org.jboss.system.ServiceController.create(ServiceController.java:422)
at org.jboss.system.ServiceController.create(ServiceController.java:387)
at org.jboss.system.deployers.ServiceDeployer.create(ServiceDeployer.java:158)
at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:96)
at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)
at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process(MainDeployerAdapter.java:117)
at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(ProfileDeployAction.java:70)
at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(AbstractProfileAction.java:53)
at org.jboss.system.server.profileservice.repository.AbstractProfileService.install(AbstractProfileService.java:361)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile(AbstractProfileService.java:306)
at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:271)
at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)
at org.jboss.Main.boot(Main.java:221)
at org.jboss.Main$1.run(Main.java:556)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.net.UnknownHostException: node1.jboss.com
at java.net.Inet4AddressImpl.lookupAllHostAddr(Native Method)
at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:849)
at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1200)
at java.net.InetAddress.getAllByName0(InetAddress.java:1153)
at java.net.InetAddress.getAllByName(InetAddress.java:1083)
at java.net.InetAddress.getAllByName(InetAddress.java:1019)
at java.net.InetAddress.getByName(InetAddress.java:969)
at org.jboss.remoting.ServerInvoker.getAddressByName(ServerInvoker.java:2173)
at org.jboss.remoting.ServerInvoker.setupHomes(ServerInvoker.java:1195)
at org.jboss.remoting.ServerInvoker.setup(ServerInvoker.java:1067)
at org.jboss.remoting.transport.socket.SocketServerInvoker.setup(SocketServerInvoker.java:212)
at org.jboss.remoting.transport.bisocket.BisocketServerInvoker.setup(BisocketServerInvoker.java:651)
at org.jboss.remoting.ServerInvoker.create(ServerInvoker.java:932)
... 65 more
23:02:26,120 ERROR [AbstractKernelController] Error installing to Real: name=vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/messaging/remoting-bisocket-service.xml state=PreReal mode=Manual requiredState=Real
org.jboss.deployers.spi.DeploymentException: Error deploying: jboss.messaging:service=Connector,transport=bisocket
at org.jboss.deployers.spi.DeploymentException.rethrowAsDeploymentException(DeploymentException.java:49)
at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:118)
at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)
at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process(MainDeployerAdapter.java:117)
at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(ProfileDeployAction.java:70)
at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(AbstractProfileAction.java:53)
at org.jboss.system.server.profileservice.repository.AbstractProfileService.install(AbstractProfileService.java:361)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile(AbstractProfileService.java:306)
at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:271)
at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)
at org.jboss.Main.boot(Main.java:221)
at org.jboss.Main$1.run(Main.java:556)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.RuntimeException: Error setting up server invoker SocketServerInvoker[node1.jboss.com:4457]
at org.jboss.remoting.ServerInvoker.create(ServerInvoker.java:936)
at org.jboss.remoting.transport.Connector.init(Connector.java:436)
at org.jboss.remoting.transport.Connector.create(Connector.java:1143)
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:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
at $Proxy38.create(Unknown Source)
at org.jboss.system.microcontainer.CreateDestroyLifecycleAction.installAction(CreateDestroyLifecycleAction.java:42)
at org.jboss.system.microcontainer.CreateDestroyLifecycleAction.installAction(CreateDestroyLifecycleAction.java:37)
at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
at org.jboss.system.ServiceController.create(ServiceController.java:422)
at org.jboss.system.ServiceController.create(ServiceController.java:387)
at org.jboss.system.deployers.ServiceDeployer.create(ServiceDeployer.java:158)
at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:96)
... 34 more
Caused by: java.net.UnknownHostException: node1.jboss.com
at java.net.Inet4AddressImpl.lookupAllHostAddr(Native Method)
at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:849)
at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1200)
at java.net.InetAddress.getAllByName0(InetAddress.java:1153)
at java.net.InetAddress.getAllByName(InetAddress.java:1083)
at java.net.InetAddress.getAllByName(InetAddress.java:1019)
at java.net.InetAddress.getByName(InetAddress.java:969)
at org.jboss.remoting.ServerInvoker.getAddressByName(ServerInvoker.java:2173)
at org.jboss.remoting.ServerInvoker.setupHomes(ServerInvoker.java:1195)
at org.jboss.remoting.ServerInvoker.setup(ServerInvoker.java:1067)
at org.jboss.remoting.transport.socket.SocketServerInvoker.setup(SocketServerInvoker.java:212)
at org.jboss.remoting.transport.bisocket.BisocketServerInvoker.setup(BisocketServerInvoker.java:651)
at org.jboss.remoting.ServerInvoker.create(ServerInvoker.java:932)
... 65 more
23:02:29,447 INFO [SoapUI] initialized soapui-settings from [/usr/local/jboss-5.1.0.GA/server/default/data/soapui-settings.xml]
23:02:36,253 WARN [JBossASSecurityMetadataStore] WARNING! POTENTIAL SECURITY RISK. It has been detected that the MessageSucker component which sucks messages from one node to another has not had its password changed from the installation default. Please see the JBoss Messaging user guide for instructions on how to do this.
23:02:36,512 WARN [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
23:02:40,867 WARN [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
23:02:51,916 INFO [H2Database] jdbc:h2:file:/usr/local/jboss-5.1.0.GA/server/default/data/h2/jbpmDB;MVCC=TRUE;DB_CLOSE_ON_EXIT=FALSE
DEPLOYMENTS MISSING DEPENDENCIES:
Deployment "${jboss.bind.address}-MO" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "CachedConnectionManager" is missing the following dependencies:
Dependency "TransactionManager" (should be in state "Configured", but is actually in state "Instantiated")
Deployment "ConnectorBean-http-${jboss.bind.address}-8080MO" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "ConnectorMBean" is missing the following dependencies:
Dependency "jboss.remoting:service=Connector,transport=socket" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.remoting:service=Connector,transport=socket' **")
Deployment "DefaultUserTransactionprovider" is missing the following dependencies:
Dependency "<UNKNOWN DefaultUserTransactionprovider>" (should be in state "Described", but is actually in state "** UNRESOLVED Demands 'TransactionManager' **")
Deployment "DeploymentInvocationHandler" is missing the following dependencies:
Dependency "ConnectorMBean" (should be in state "Installed", but is actually in state "Configured")
Dependency "ConnectorMBean" (should be in state "Installed", but is actually in state "Configured")
Deployment "DeploymentManager" is missing the following dependencies:
Deployment "JBossTimerServiceFactory" is missing the following dependencies:
Dependency "jboss.ejb:service=EJBTimerService" (should be in state "Create", but is actually in state "Configured")
Deployment "MBeanManagedOperationProxyFactory" is missing the following dependencies:
Deployment "ManagedOperationProxyFactory" is missing the following dependencies:
Deployment "ManagementView" is missing the following dependencies:
Dependency "MBeanManagedOperationProxyFactory" (should be in state "Configured", but is actually in state "Instantiated")
Dependency "DeploymentManager" (should be in state "Configured", but is actually in state "Instantiated")
Dependency "ManagedOperationProxyFactory" (should be in state "Configured", but is actually in state "Instantiated")
Deployment "ProfileServiceInvocationHandler" is missing the following dependencies:
Dependency "ProfileServiceProxyFactory" (should be in state "Configured", but is actually in state "Instantiated")
Dependency "ProfileServiceProxyFactory" (should be in state "Configured", but is actually in state "Instantiated")
Deployment "ProfileServiceProxyFactory" is missing the following dependencies:
Dependency "ManagementView" (should be in state "Configured", but is actually in state "Instantiated")
Dependency "DeploymentManager" (should be in state "Configured", but is actually in state "Instantiated")
Deployment "RealTransactionManager" is missing the following dependencies:
Deployment "ServiceBindingManager" is missing the following dependencies:
Dependency "ServiceBindingManagementObject" (should be in state "Instantiated", but is actually in state "**ERROR**")
Deployment "SystemPropertyBinder" is missing the following dependencies:
Dependency "SystemPropertyBinder#3" (should be in state "Instantiated", but is actually in state "Described")
Dependency "SystemPropertyBinder#2" (should be in state "Instantiated", but is actually in state "Described")
Dependency "SystemPropertyBinder#1" (should be in state "Instantiated", but is actually in state "Described")
Deployment "SystemPropertyBinder#1" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Instantiated", but is actually in state "Described")
Deployment "SystemPropertyBinder#2" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Instantiated", but is actually in state "Described")
Deployment "SystemPropertyBinder#3" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Instantiated", but is actually in state "Described")
Deployment "ThreadPool-http-${jboss.bind.address}-8080MO" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "TransactionManager" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "UnifiedInvoker" is missing the following dependencies:
Dependency "UnifiedInvokerConnector" (should be in state "Configured", but is actually in state "Instantiated")
Deployment "UnifiedInvokerConfiguration" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "UnifiedInvokerConnector" is missing the following dependencies:
Dependency "UnifiedInvokerConfiguration" (should be in state "Configured", but is actually in state "Instantiated")
Deployment "WSDeployerHook_JAXRPC_POST_JSE" is missing the following dependencies:
Dependency "WebServiceDeployerPostJSE" (should be in state "Create", but is actually in state "Configured")
Deployment "WSDeployerHook_JAXRPC_PRE_JSE" is missing the following dependencies:
Dependency "WebServiceDeployerPreJSE" (should be in state "Create", but is actually in state "Instantiated")
Deployment "WSDeployerHook_JAXWS_POST_JSE" is missing the following dependencies:
Dependency "WebServiceDeployerPostJSE" (should be in state "Create", but is actually in state "Configured")
Deployment "WSDeployerHook_JAXWS_PRE_JSE" is missing the following dependencies:
Dependency "WebServiceDeployerPreJSE" (should be in state "Create", but is actually in state "Instantiated")
Deployment "WarDeployer" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "WebServer" is missing the following dependencies:
Dependency "WarDeployer" (should be in state "Configured", but is actually in state "Instantiated")
Deployment "WebServiceDeployerPostJSE" is missing the following dependencies:
Dependency "WarDeployer" (should be in state "Create", but is actually in state "Instantiated")
Deployment "WebServiceDeployerPreJSE" is missing the following dependencies:
Dependency "WarDeployer" (should be in state "Configured", but is actually in state "Instantiated")
Deployment "WorkManager" is missing the following dependencies:
Dependency "TransactionManager" (should be in state "Configured", but is actually in state "Instantiated")
Deployment "jboss.admin:service=PluginManager" is missing the following dependencies:
Dependency "jboss.jmx:name=Invoker,protocol=jrmp,service=proxyFactory,type=adaptor" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.ejb:persistencePolicy=database,service=EJBTimerService" is missing the following dependencies:
Dependency "jboss.jca:name=DefaultDS,service=DataSourceBinding" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.ejb:service=EJBTimerService" is missing the following dependencies:
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Dependency "jboss.ejb:persistencePolicy=database,service=EJBTimerService" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb.destination:name=CallbackQueue,service=Queue" is missing the following dependencies:
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb.destination:name=DataCollectorQueue,service=Queue" is missing the following dependencies:
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb.destination:name=DeadMessageQueue,service=Queue" is missing the following dependencies:
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb.destination:name=OperationsCollectorQueue,service=Queue" is missing the following dependencies:
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb.destination:name=OperationsResultCollectorQueue,service=Queue" is missing the following dependencies:
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb.quickstart.destination:name=quickstart_helloworld_Request_esb,service=Queue" is missing the following dependencies:
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.messaging:service=PostOffice" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb.quickstart.destination:name=quickstart_helloworld_Request_gw,service=Queue" is missing the following dependencies:
Dependency "jboss.messaging:service=PostOffice" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbossesb.esb/" is missing the following dependencies:
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbossesb.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb.destination:name=OperationsCollectorQueue,service=Queue' **")
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbossesb.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb.destination:name=DeadMessageQueue,service=Queue' **")
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbossesb.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb.destination:name=OperationsResultCollectorQueue,service=Queue' **")
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbossesb.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.jca:name=JBossESBDS,service=DataSourceBinding' **")
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbossesb.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb:service=MessageStoreDatabaseInitializer' **")
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbossesb.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb.destination:name=DataCollectorQueue,service=Queue' **")
Deployment "jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbpm.esb/" is missing the following dependencies:
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbpm.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb:service=JbpmService' **")
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbpm.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb:deployment=jbossesb.esb' **")
Deployment "jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbrules.esb/" is missing the following dependencies:
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbrules.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb:deployment=jbossesb.esb' **")
Deployment "jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/slsb.esb/" is missing the following dependencies:
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/slsb.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb:deployment=jbossesb.esb' **")
Deployment "jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/smooks.esb/" is missing the following dependencies:
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/smooks.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb:deployment=jbossesb.esb' **")
Deployment "jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/soap.esb/" is missing the following dependencies:
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/soap.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb:deployment=jbossesb.esb' **")
Deployment "jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/spring.esb/" is missing the following dependencies:
Dependency "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/spring.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb:deployment=jbossesb.esb' **")
Deployment "jboss.esb.vfszip:/usr/local/jboss-5.1.0.GA/server/default/deploy/Quickstart_helloworld.esb/" is missing the following dependencies:
Dependency "<UNKNOWN jboss.esb.vfszip:/usr/local/jboss-5.1.0.GA/server/default/deploy/Quickstart_helloworld.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb.quickstart.destination:name=quickstart_helloworld_Request_esb,service=Queue' **")
Dependency "<UNKNOWN jboss.esb.vfszip:/usr/local/jboss-5.1.0.GA/server/default/deploy/Quickstart_helloworld.esb/>" (should be in state "PreInstall", but is actually in state "** UNRESOLVED Demands 'jboss.esb.quickstart.destination:name=quickstart_helloworld_Request_gw,service=Queue' **")
Deployment "jboss.esb:service=ESBRegistry" is missing the following dependencies:
Dependency "jboss.esb:service=PropertyService" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb:service=JBPMDatabaseInitializer" is missing the following dependencies:
Dependency "jboss.jca:name=JbpmDS,service=DataSourceBinding" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb:service=JbpmService" is missing the following dependencies:
Dependency "jboss.esb:service=JBPMDatabaseInitializer" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb:service=JuddiRMI" is missing the following dependencies:
Dependency "jboss.jca:name=juddiDB,service=DataSourceBinding" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.esb:service=PropertyService" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb:service=MessageStoreDatabaseInitializer" is missing the following dependencies:
Dependency "jboss.jca:name=JBossESBDS,service=DataSourceBinding" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.esb:service=PropertyService" is missing the following dependencies:
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Deployment "jboss.jca:name='jboss-local-jdbc.rar',service=RARDeployment" is missing the following dependencies:
Dependency "jboss:service=TransactionManager" (should be in state "Configured", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Dependency "jboss.jca:service=WorkManager" (should be in state "Configured", but is actually in state "** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **")
Deployment "jboss.jca:name='jboss-xa-jdbc.rar',service=RARDeployment" is missing the following dependencies:
Dependency "jboss:service=TransactionManager" (should be in state "Configured", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Dependency "jboss.jca:service=WorkManager" (should be in state "Configured", but is actually in state "** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **")
Deployment "jboss.jca:name='jms-ra.rar',service=RARDeployment" is missing the following dependencies:
Dependency "jboss.jca:service=WorkManager" (should be in state "Configured", but is actually in state "** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **")
Dependency "jboss:service=TransactionManager" (should be in state "Configured", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Deployment "jboss.jca:name='mail-ra.rar',service=RARDeployment" is missing the following dependencies:
Dependency "jboss:service=TransactionManager" (should be in state "Configured", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Dependency "jboss.jca:service=WorkManager" (should be in state "Configured", but is actually in state "** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **")
Deployment "jboss.jca:name='quartz-ra.rar',service=RARDeployment" is missing the following dependencies:
Dependency "jboss:service=TransactionManager" (should be in state "Configured", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Dependency "jboss.jca:service=WorkManager" (should be in state "Configured", but is actually in state "** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **")
Deployment "jboss.jca:name=DefaultDS,service=DataSourceBinding" is missing the following dependencies:
Dependency "jboss.jca:name=DefaultDS,service=LocalTxCM" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=DefaultDS,service=LocalTxCM" is missing the following dependencies:
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Dependency "jboss.jca:name=DefaultDS,service=ManagedConnectionPool" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.jca:service=CachedConnectionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.jca:service=CachedConnectionManager' **")
Deployment "jboss.jca:name=DefaultDS,service=ManagedConnectionFactory" is missing the following dependencies:
Dependency "jboss.jca:name='jboss-local-jdbc.rar',service=RARDeployment" (should be in state "Create", but is actually in state "Instantiated")
Deployment "jboss.jca:name=DefaultDS,service=ManagedConnectionPool" is missing the following dependencies:
Dependency "jboss.jca:name=DefaultDS,service=ManagedConnectionFactory" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=JBossESBDS,service=DataSourceBinding" is missing the following dependencies:
Dependency "jboss.jca:name=JBossESBDS,service=LocalTxCM" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=JBossESBDS,service=LocalTxCM" is missing the following dependencies:
Dependency "jboss.jca:service=CachedConnectionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.jca:service=CachedConnectionManager' **")
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Dependency "jboss.jca:name=JBossESBDS,service=ManagedConnectionPool" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=JBossESBDS,service=ManagedConnectionFactory" is missing the following dependencies:
Dependency "jboss.jca:name='jboss-local-jdbc.rar',service=RARDeployment" (should be in state "Create", but is actually in state "Instantiated")
Deployment "jboss.jca:name=JBossESBDS,service=ManagedConnectionPool" is missing the following dependencies:
Dependency "jboss.jca:name=JBossESBDS,service=ManagedConnectionFactory" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=JbpmDS,service=DataSourceBinding" is missing the following dependencies:
Dependency "jboss.jca:name=JbpmDS,service=LocalTxCM" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=JbpmDS,service=LocalTxCM" is missing the following dependencies:
Dependency "jboss.jca:service=CachedConnectionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.jca:service=CachedConnectionManager' **")
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Dependency "jboss.jca:name=JbpmDS,service=ManagedConnectionPool" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=JbpmDS,service=ManagedConnectionFactory" is missing the following dependencies:
Dependency "jboss.jca:name='jboss-local-jdbc.rar',service=RARDeployment" (should be in state "Create", but is actually in state "Instantiated")
Deployment "jboss.jca:name=JbpmDS,service=ManagedConnectionPool" is missing the following dependencies:
Dependency "jboss.jca:name=JbpmDS,service=ManagedConnectionFactory" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=JmsXA,service=ConnectionFactoryBinding" is missing the following dependencies:
Dependency "jboss.jca:name=JmsXA,service=TxCM" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=JmsXA,service=ManagedConnectionFactory" is missing the following dependencies:
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.jca:name='jms-ra.rar',service=RARDeployment" (should be in state "Create", but is actually in state "Instantiated")
Deployment "jboss.jca:name=JmsXA,service=ManagedConnectionPool" is missing the following dependencies:
Dependency "jboss.jca:name=JmsXA,service=ManagedConnectionFactory" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=JmsXA,service=TxCM" is missing the following dependencies:
Dependency "jboss.jca:service=CachedConnectionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.jca:service=CachedConnectionManager' **")
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Dependency "jboss.jca:name=JmsXA,service=ManagedConnectionPool" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=juddiDB,service=DataSourceBinding" is missing the following dependencies:
Dependency "jboss.jca:name=juddiDB,service=LocalTxCM" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jca:name=juddiDB,service=LocalTxCM" is missing the following dependencies:
Dependency "jboss.jca:service=CachedConnectionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.jca:service=CachedConnectionManager' **")
Dependency "jboss.jca:name=juddiDB,service=ManagedConnectionPool" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Deployment "jboss.jca:name=juddiDB,service=ManagedConnectionFactory" is missing the following dependencies:
Dependency "jboss.jca:name='jboss-local-jdbc.rar',service=RARDeployment" (should be in state "Create", but is actually in state "Instantiated")
Deployment "jboss.jca:name=juddiDB,service=ManagedConnectionPool" is missing the following dependencies:
Dependency "jboss.jca:name=juddiDB,service=ManagedConnectionFactory" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.jmx:alias=jmx/rmi/RMIAdaptor" is missing the following dependencies:
Dependency "jboss:service=Naming" (should be in state "Create", but is actually in state "Instantiated")
Deployment "jboss.jmx:name=Invoker,protocol=jrmp,service=proxyFactory,type=adaptor" is missing the following dependencies:
Dependency "jboss:service=Naming" (should be in state "Create", but is actually in state "Instantiated")
Dependency "jboss:service=invoker,type=jrmp" (should be in state "Create", but is actually in state "Instantiated")
Deployment "jboss.jmx:name=MBeanProxyRemote,protocol=jrmp,type=adaptor" is missing the following dependencies:
Dependency "jboss.jmx:name=Invoker,protocol=jrmp,service=proxyFactory,type=adaptor" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.messaging.connectionfactory:service=ClusterPullConnectionFactory" is missing the following dependencies:
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.messaging:service=Connector,transport=bisocket" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.messaging:service=Connector,transport=bisocket' **")
Dependency "jboss.messaging:service=PostOffice" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.messaging.connectionfactory:service=ClusteredConnectionFactory" is missing the following dependencies:
Dependency "jboss.messaging:service=PostOffice" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.messaging:service=Connector,transport=bisocket" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.messaging:service=Connector,transport=bisocket' **")
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.messaging.connectionfactory:service=ConnectionFactory" is missing the following dependencies:
Dependency "jboss.messaging:service=Connector,transport=bisocket" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.messaging:service=Connector,transport=bisocket' **")
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.messaging:service=PostOffice" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.messaging.destination:name=DLQ,service=Queue" is missing the following dependencies:
Dependency "jboss.messaging:service=PostOffice" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.messaging.destination:name=ExpiryQueue,service=Queue" is missing the following dependencies:
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.messaging:service=PostOffice" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.messaging:service=JMSUserManager" is missing the following dependencies:
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Dependency "jboss.jca:name=DefaultDS,service=DataSourceBinding" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.messaging:service=PersistenceManager" is missing the following dependencies:
Dependency "jboss.jca:name=DefaultDS,service=DataSourceBinding" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Deployment "jboss.messaging:service=PostOffice" is missing the following dependencies:
Dependency "jboss.jca:name=DefaultDS,service=DataSourceBinding" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Deployment "jboss.messaging:service=ServerPeer" is missing the following dependencies:
Dependency "jboss.messaging:service=Connector,transport=bisocket" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.messaging:service=Connector,transport=bisocket' **")
Dependency "jboss.messaging:service=JMSUserManager" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss.messaging:service=PersistenceManager" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.mq:service=DestinationManager" is missing the following dependencies:
Dependency "jboss.messaging:service=ServerPeer" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss.remoting:protocol=rmi,service=JMXConnectorServer" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "jboss:readonly=true,service=invoker,target=Naming,type=http" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "jboss:service=ClientUserTransaction" is missing the following dependencies:
Dependency "jboss:service=proxyFactory,target=ClientUserTransaction" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss:service=proxyFactory,target=ClientUserTransactionFactory" (should be in state "Create", but is actually in state "Configured")
Deployment "jboss:service=KeyGeneratorFactory,type=HiLo" is missing the following dependencies:
Dependency "jboss.jca:name=DefaultDS,service=DataSourceBinding" (should be in state "Create", but is actually in state "Configured")
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Deployment "jboss:service=KeyGeneratorFactory,type=UUID" is missing the following dependencies:
Dependency "jboss:service=Naming" (should be in state "Create", but is actually in state "Instantiated")
Deployment "jboss:service=Mail" is missing the following dependencies:
Dependency "jboss:service=Naming" (should be in state "Create", but is actually in state "Instantiated")
Deployment "jboss:service=Naming" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "jboss:service=NamingProviderURLWriter" is missing the following dependencies:
Dependency "jboss:service=Naming" (should be in state "Configured", but is actually in state "Instantiated")
Deployment "jboss:service=WebService" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "jboss:service=invoker,target=Naming,type=http" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "jboss:service=invoker,type=http" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "jboss:service=invoker,type=jrmp" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "jboss:service=invoker,type=local" is missing the following dependencies:
Dependency "jboss:service=TransactionManager" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=TransactionManager' **")
Deployment "jboss:service=invoker,type=pooled" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "jboss:service=proxyFactory,target=ClientUserTransaction" is missing the following dependencies:
Dependency "jboss:service=invoker,type=unified" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=invoker,type=unified' **")
Deployment "jboss:service=proxyFactory,target=ClientUserTransactionFactory" is missing the following dependencies:
Dependency "jboss:service=invoker,type=unified" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss:service=invoker,type=unified' **")
Deployment "org.jboss.ejb3.RemotingConnector" is missing the following dependencies:
Dependency "ServiceBindingManager" (should be in state "Configured", but is actually in state "Described")
Deployment "vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/profileservice-secured.jar/" is missing the following dependencies:
Dependency "interface javax.transaction.TransactionManager" (should be in state "Real", but is actually in state "** NOT FOUND Depends on 'interface javax.transaction.TransactionManager' **")
Dependency "interface javax.transaction.TransactionManager" (should be in state "Real", but is actually in state "** NOT FOUND Depends on 'interface javax.transaction.TransactionManager' **")
Dependency "interface javax.transaction.TransactionManager" (should be in state "Real", but is actually in state "** NOT FOUND Depends on 'interface javax.transaction.TransactionManager' **")
DEPLOYMENTS IN ERROR:
Deployment "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/spring.esb/>" is in error due to the following reason(s): ** UNRESOLVED Demands 'jboss.esb:deployment=jbossesb.esb' **
Deployment "jboss.jca:service=WorkManager" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **
Deployment "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/slsb.esb/>" is in error due to the following reason(s): ** UNRESOLVED Demands 'jboss.esb:deployment=jbossesb.esb' **
Deployment "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbpm.esb/>" is in error due to the following reason(s): ** UNRESOLVED Demands 'jboss.esb:deployment=jbossesb.esb' **, ** UNRESOLVED Demands 'jboss.esb:service=JbpmService' **
Deployment "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/jbrules.esb/>" is in error due to the following reason(s): ** UNRESOLVED Demands 'jboss.esb:deployment=jbossesb.esb' **
Deployment "jboss.jca:service=CachedConnectionManager" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.jca:service=CachedConnectionManager' **
Deployment "interface javax.transaction.TransactionManager" is in error due to the following reason(s): ** NOT FOUND Depends on 'interface javax.transaction.TransactionManager' **
Deployment "<UNKNOWN jboss.esb.vfszip:/usr/local/jboss-5.1.0.GA/server/default/deploy/Quickstart_helloworld.esb/>" is in error due to the following reason(s): ** UNRESOLVED Demands 'jboss.esb.quickstart.destination:name=quickstart_helloworld_Request_gw,service=Queue' **, ** UNRESOLVED Demands 'jboss.esb.quickstart.destination:name=quickstart_helloworld_Request_esb,service=Queue' **
Deployment "vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/messaging/remoting-bisocket-service.xml" is in error due to the following reason(s): java.net.UnknownHostException: node1.jboss.com
Deployment "jboss.messaging:service=Connector,transport=bisocket" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.messaging:service=Connector,transport=bisocket' **
Deployment "<UNKNOWN jboss.esb.vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/smooks.esb/>" is in error due to the following reason(s): ** UNRESOLVED Demands 'jboss.esb:deployment=jbossesb.esb' **
Deployment "jboss:service=invoker,type=unified" is in error due t
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4251396#4251396
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4251396
16 years, 8 months