Hello,
i have project with about 20 services, for each I created mockService, then i Deploy as War file, and started under Tomcat (catalina)
all mockServices running correctly, but one of mockService sometimes returnexception: (always i send same request)
Internal error: WS 'RecordService.searchRecords' call has failed: null response received.
there are same logic for all mockService.
request is validated and has about 5 kb
i found in tomcat log this exceprion
com.eviware.soapui.mockaswar.MockAsWarServlet service
SEVERE: null
com.eviware.soapui.impl.wsdl.mock.DispatchException: org.apache.xmlbeans.XmlException: error: XML document structures must start and end within the same entity.
at com.eviware.soapui.impl.wsdl.mock.WsdlMockDispatcher.dispatchPostRequest(WsdlMockDispatcher.java:241)
at com.eviware.soapui.impl.wsdl.mock.WsdlMockDispatcher.dispatchRequest(WsdlMockDispatcher.java:113)
at com.eviware.soapui.impl.wsdl.mock.WsdlMockRunner.dispatchRequest(WsdlMockRunner.java:142)
at com.eviware.soapui.mockaswar.MockAsWarServlet$MockServletSoapUICore.dispatchRequest(MockAsWarServlet.java:235)
at com.eviware.soapui.mockaswar.MockAsWarServlet.service(MockAsWarServlet.java:170)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:723)
...
Do you advice to me with this problem?