2014-08-29 2 views
0

WebSphere 8.5.5 상자의 한 노드에 JAX-WS servce가 있으며 동일한 상자의 다른 노드에서 JAX-WS 서비스와 통신해야합니다. 몇 달 동안 WebSpere 7에서이 작업을 해왔습니다.JAX-WS 서비스가 다른 노드와 통신 할 수 없음

그러나 갑자기, 그렇지 않습니다. 나는 단지 서버 버전이 변경되었다고 말할 수 있었으면 좋겠다.하지만, 많은 코드가 변경되었다. 그러나이 코드는 현재 WebSphere 7 상자에서 작업 중입니다. 그래서 그것은 버전 일 것 같습니다.

단위 테스트를 통해 다른 서비스에서 호출 한 서비스를 호출 할 수 있으며 정상적으로 작동합니다.

호출 된 서비스가 예외를보고하지 않는 것처럼 보입니다. 전화 서비스는 다음과 같이 불평합니다 :

[8/29/14 14:59:49:222 EDT] 0000007d AxisEngine E org.apache.axis2.engine.AxisEngine receive The endpoint reference (EPR) for the Operation not found is {correct URL redacted) and the WSA Action = . If this EPR was previously reachable, please contact the server administrator. 
org.apache.axis2.AxisFault: The endpoint reference (EPR) for the Operation not found is (correct URL redacted) and the WSA Action = . If this EPR was previously reachable, please contact the server administrator. 
at org.apache.axis2.engine.DispatchPhase.checkPostConditions(DispatchPhase.java:102) 
at org.apache.axis2.engine.Phase.invoke(Phase.java:329) 
at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:360) 
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:195) 
at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:172) 
at com.ibm.ws.websvcs.transport.http.WASAxis2Servlet.doPost(WASAxis2Servlet.java:1583) 
at javax.servlet.http.HttpServlet.service(HttpServlet.java:595) 
at javax.servlet.http.HttpServlet.service(HttpServlet.java:668) 
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1230) 
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:779) 
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478) 
at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:178) 
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:136) 
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:97) 
at org.apache.logging.log4j.core.web.Log4jServletFilter.doFilter(Log4jServletFilter.java:66) 
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195) 
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91) 
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:960) 
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1064) 
at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:87) 
at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:909) 
at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1662) 
at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:200) 
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:459) 
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:526) 
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:312) 
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:283) 
at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214) 
at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113) 
at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175) 
at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217) 
at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161) 
at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138) 
at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204) 
at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775) 
at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905) 
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1862) 
+0

WebSphere 버전을 변경 한 경우 호스트/포트가 변경되어 클라이언트에서 업데이트되지 않았을 수 있습니까? – Gas

+0

다음 답변 확인 : http://stackoverflow.com/questions/5981379/the-endpoint-reference-epr-for-the-operation-not-found-is –

답변

0

그래서 여기에 있습니다. 실제로 약 6 건의 물건이 잘못되어 사람들이 잘못된 장소에서 해결책을 찾고 있습니다. 그러나이 특정 오류는 호출중인 웹 서비스의 인터페이스가 최근 변경된 후 .apt_generated 폴더에서 체크인되지 않은 .class 파일 집합에서 발생한 것으로 보입니다.

일단 체크인하면 배포 작업 영역에 작업 영역이 있으며 모든 작업이 완료됩니다.

관련 문제