I have bundled a Axis2 webservice in an EAR & deployed in weblogic9.2. When i call this webservice from my local enviroment using a Test class it works fine. But when i try calling it from another deployed EAR, I get this error.
Service invocation failed - com.sampler.framework.webservices.invocation.InvocationException: Webservice Invocation exception, Message: javax.xml.ws.soap.SOAPFaultException: The endpoint reference (EPR) for the Operation not found is http://10.98.149.3:13003/Learning/services/TestService and the WSA Action = at orchestration.handler.OrchestrationEventHandler.execute(OrchestrationEventHandler.java:58) at common.handler.GOLFEventHandler.doBusiness(GOLFEventHandler.java:31) at com.sampler.framework.handler.EventHandler.process(EventHandler.java:77) at com.sampler.framework.ejb.EventListenerBean.onMessage(EventListenerBean.java:147) at common.ejb.GOLFEventListenerBean.onMessage(GOLFEventListenerBean.java:35) at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:429) at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:335) at weblogic.ejb.container.internal.JMSMessagePoller.processOneMessage(JMSMessagePoller.java:320) at weblogic.ejb.container.internal.JMSMessagePoller.pollForAWhile(JMSMessagePoller.java:477) at weblogic.ejb.container.internal.JMSMessagePoller.pollForChild(JMSMessagePoller.java:512) at weblogic.ejb.container.internal.JMSMessagePoller.run(JMSMessagePoller.java:530) at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:181) Caused by: com.sampler.framework.orchestration.OrchestrationException: Service invocation failed - com.sampler.framework.webservices.invocation.InvocationException: Webservice Invocation exception, Message: javax.xml.ws.soap.SOAPFaultException: The endpoint reference (EPR) for the Operation not found is http://10.98.149.3:13003/Learning/services/TestService and the WSA Action = at com.sampler.framework.orchestration.actions.PipelineAction.createException(PipelineAction.java:150) at com.sampler.framework.orchestration.actions.InvokeAction.execute(InvokeAction.java:51) at com.sampler.framework.orchestration.OrchestrationController.orchestrate(OrchestrationController.java:73) at orchestration.handler.OrchestrationEventHandler.execute(OrchestrationEventHandler.java:50) ... 13 more Caused by: com.sampler.framework.webservices.invocation.InvocationException: Webservice Invocation exception, Message: javax.xml.ws.soap.SOAPFaultException: The endpoint reference (EPR) for the Operation not found is http://10.98.149.3:13003/Learning/services/TestService and the WSA Action = at com.sampler.framework.webservices.invocation.ServiceInvokerUtil.invoke(ServiceInvokerUtil.java:99) at com.sampler.framework.webservices.invocation.ServiceInvokerUtil.invoke(ServiceInvokerUtil.java:120) at com.sampler.framework.orchestration.actions.InvokeAction.execute(InvokeAction.java:45) ... 15 more Caused by: javax.xml.ws.soap.SOAPFaultException: The endpoint reference (EPR) for the Operation not found is http://10.98.149.3:13003/Learning/services/TestService and the WSA Action = at org.apache.axis2.jaxws.marshaller.impl.alt.MethodMarshallerUtils.createSystemException(MethodMarshallerUtils.java:1249) at org.apache.axis2.jaxws.client.dispatch.BaseDispatch.getFaultResponse(BaseDispatch.java:437) at org.apache.axis2.jaxws.client.dispatch.BaseDispatch.invoke(BaseDispatch.java:167) at com.sampler.framework.webservices.invocation.ServiceInvokerUtil.invoke(ServiceInvokerUtil.java:94) I have checked the request message & tested it using SoapUI, it works fine there also. Can somebody help me in identifying the reason for thie error? Thanks. -- View this message in context: http://www.nabble.com/The-endpoint-reference-%28EPR%29-for-the-Operation-not-found-error-in-weblogic9.2-tp21804241p21804241.html Sent from the Axis - Dev mailing list archive at Nabble.com.
