WSDL: Server Error

Hi,
I have SOAP-XI-RFC scenario.
I generated a WSDL, and using it as a webservice from my ASP (local) application.
My URL for connecting to xi server is:
http://xiServer:xiPort/XISOAPAdapter/MessageServlet?version=x.0&Sender.Service=MY_SERVICE&Interface=MY_NAMESPACE/MY_MessageINTERFACE
I am getting this error. SERVER ERROR in my localhost application.
In rwb also there is no error logged for this event.
What am I missing?
any problems with URL or something else in my application.
:::ERROR::::
=========
Exception :Server Error
StackTrace--> at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message,
                              WebResponse response, Stream responseStream, Boolean asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
=========
Thanks,
Narendra.

Ok,
Lets go this way.
First, Is it okay if I test WSDL in my http://localhost (ASP.Net) Application?
I am following scenario in weblog of Sudhir.
https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2131 [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken]
I am missing something in URL part.
I get this message "Message Servlet is in Status OK"
when I try this URL directly in IE.
But when I run the (ASP.Net) application it fails !!
Regards,
Narednra.
No response till now...
Message was edited by: Narendra Jadeja

Similar Messages

  • Javax.xml.rpc.soap.SOAPFaultException: "Server Error" while calling a WSDL

    Hi
    I am using a WSDL in my java code by creating proxy.
    I am getting an exception on below line of code
    XX_RESPONSE res = port.XX_XX_Forecast(req);
    exception :
    javax.xml.rpc.soap.SOAPFaultException: "Server Error"
    hat could be the possibility.
    is it from XI side or Java side.
    Shall I catch a XI person on my floor to solve this !!
    To be more specific :
    Error is
    <detail xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
    <s:SystemError xmlns:s="http://sap.com/xi/WebService/xi2.0">
    <context>XIAdapter</context>
    <code>ADAPTER.JAVA_EXCEPTION</code>
    <text>com.sap.aii.af.service.cpa.CPAException: invalid channel (party:service:channel) = <null>
    at com.sap.aii.af.mp.soap.web.MessageServlet.getChannel(MessageServlet.java:499)
    at com.sap.aii.af.mp.soap.web.MessageServlet.doPost(MessageServlet.java:409)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(AccessController.java:215)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)</text>
    </s:SystemError>
    </detail>
    Thanks

    Hi...
    WSDL forwarded by my manager was wong
    I tested it and it threw same exception.
    nyways...1 more help..
    Now, is there any way in NWDS to replace contents of used WSDL.
    Because only 1 "=" is missing in WSDL..
    Thanks

  • Bugs in BC CRM web service need to be fix (Server was unable to process request ERROR: A server error has occured)

    I'm using the following code to retrieve order list is working fine but it give me an error Server was unable to process request ERROR: A server error has occurred when I trying to retrieve order total paid with same code: and the output when retrieve order total paid is [object Object]
    var wsUrl = "https://mysite.worldsecuresystems.com/CatalystWebService/CatalystCRMWebservice.asmx?WSDL";
                          var RetrieveTotalPaidXML =
                          '<?xml version="1.0" encoding="utf-8"?>\
                          <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" \
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">\
                          <soap12:Body>\
                          <Order_RetrieveTotalPaid xmlns="http://tempuri.org/CatalystDeveloperService/CatalystCRMWebservice">\
                          <username>user</username>\
                          <password>pass</password>\
                          <siteid>111222</siteid>\
                          <orderId>112345</orderId>\
                          </Order_RetrieveTotalPaid>\
                          </soap12:Body>\
                          </soap12:Envelope>';
                           $.ajax({
                            type: "POST",
                            url: wsUrl,
                            Host: "mysite.worldsecuresystems.com",
                            contentType: "application/soap+xml; charset=utf-8",
                            data: RetrieveTotalPaidXML,
                            dataType: "xml",
                            success: processSuccess,
                            error: function(){alert("Error: Something went wrong");}
                           function processSuccess(ResData) {
                           var RetrieveTotalPaidParse = $.parseXML(ResData);
                           var $xmlRetrieveTotalPaidParse = $(RetrieveTotalPaidParse);
                           var $Order_RetrieveTotalPaidResult = $xmlRetrieveTotalPaidParse.find('Order_RetrieveTotalPaidResult');
                                   $Order_RetrieveTotalPaidResult = $(this).find('Order_RetrieveTotalPaidResult').text();
                                   $('#RetrieveTotalPaidResult').text(Order_RetrieveTotalPaidResult);
    I think there a bug in BC CRM Web Service when trying to make a request for Order_RetrieveTotalPaid using soap need to be fix

    Perhaps it would be good to update the sample request as shown on the  Developer reference page for this method (and, actually ALL of the SOAP samples)
    The sample shows siteid (all lower case)

  • Javax.xml.rpc.soap.SOAPFaultException: Server Error

    Hi,
    <P>
    I have Dyn Pro application deployed on NW app server. The application uses webservices on PI and the whole process working until a month back. Recently the application stopped working and throwing following error. Also I use following code for Authentication.
    <P>
    <P>
    I am not sure where the issue is? I looked at forums before posting and could not find anything. I wonder if any one ran into the issue and how is it fixed? I appreciate your help.
    <P>
    <P>
    CODE
    <P>
    <P>
    if ( port instanceof Stub ) {
    final Stub stub = (Stub)port;  stub._setProperty(Stub.USERNAME_PROPERTY,  "abcd");
    stub._setProperty(Stub.PASSWORD_PROPERTY, "123");
    } else if (port instanceof DInterfaceInvoker) {
    final DInterfaceInvoker invoker = (DInterfaceInvoker)port;
    invoker.setProperty(Stub.USERNAME_PROPERTY,  "abcd");
    invoker.setProperty(Stub.PASSWORD_PROPERTY, "123");
    <P>
    <P>
    Exception is:
    <P>
    <P>
    java.lang.RuntimeException: com.sap.tc.webdynpro.model.webservice.api.WDWSModelExecuteException: Exception on execution of web service with WSDL URL 'C:
    cliqbook
    wsdl
    MI_Project_Search_Request_Response1.wsdl' with operation 'MI_Project_Search_Request_Response' in interface 'MI_Project_Search_Request_Response' at com.app.freeman.search.cliqbook.CliqBookSearch.executeRequest_MI_Project_Search_Request_Response(CliqBookSearch.java:294) at com.app.freeman.search.cliqbook.wdp.InternalCliqBookSearch.executeRequest_MI_Project_Search_Request_Response(InternalCliqBookSearch.java:387) at com.app.freeman.search.cliqbook.CliqBookSearchView.onActionSearch(CliqBookSearchView.java:160) at com.app.freeman.search.cliqbook.wdp.InternalCliqBookSearchView.wdInvokeEventHandler(InternalCliqBookSearchView.java:380) at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87) at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67) at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:420) at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132) at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335) at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143) at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:321) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250) at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149) at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62) at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176) Caused by: com.sap.tc.webdynpro.model.webservice.api.WDWSModelExecuteException: Exception on execution of web service with WSDL URL 'C:
    cliqbook
    wsdl
    MI_Project_Search_Request_Response1.wsdl' with operation 'MI_Project_Search_Request_Response' in interface 'MI_Project_Search_Request_Response' ... 33 more Caused by: java.lang.reflect.InvocationTargetException: Server Error at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.processDocumentFault(MimeHttpBinding.java:927) at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1440) at MI_ProjectSearchRequestResponseBindingStub._invoke(MI_ProjectSearchRequestResponseBindingStub.java:99) at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DInterfaceInvokerImpl.invokeOperation(DInterfaceInvokerImpl.java:63) at com.sap.tc.webdynpro.model.webservice.model.WSGenericModelClassExecutable.execute(WSGenericModelClassExecutable.java:68) at com.sap.tc.webdynpro.model.webservice.gci.WSTypedModelClassExecutable.execute(WSTypedModelClassExecutable.java:46) at com.app.freeman.search.cliqbook.CliqBookSearch.executeRequest_MI_Project_Search_Request_Response(CliqBookSearch.java:248) ... 32 more Caused by: javax.xml.rpc.soap.SOAPFaultException: Server Error at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.buildFaultException(MimeHttpBinding.java:737) at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.processDocumentFault(MimeHttpBinding.java:860) ...
    <P>
    Thank you,
    Balaji

    Ganga,
    Thank you for the reply. THe stand alone webservice runs fine on PI. I have already tested with stansalone client and it works. It seems to be webdyn pro failing in the following code.
    public void executeRequest_MI_Project_Search_Request_Response( )
        //@@begin executeRequest_MI_Project_Search_Request_Response()
        //$$begin Service Controller(763118099)
         IWDMessageManager manager = wdComponentAPI.getMessageManager();
      try
         wdContext.currentRequest_MI_Project_Search_Request_ResponseElement().modelObject().wdSetInvocationModifier(new WSDLAuthentication());
          wdContext.currentRequest_MI_Project_Search_Request_ResponseElement().modelObject().execute();
          wdContext.nodeResponse().invalidate();
          wdContext.nodeMT_Project_Search_Response().invalidate();
          wdContext.nodeRecords().invalidate();
          wdContext.nodeReturn().invalidate();    
        catch(Exception e)
          manager.reportException(e.getMessage(), false);     
          throw new RuntimeException(e.fillInStackTrace());
        //$$end
        //@@end
       * The following code section can be used for any Java code that is
       * not to be visible to other controllers/views or that contains constructs
       * currently not supported directly by Web Dynpro (such as inner classes or
       * member variables etc.). </p>
       * Note: The content of this section is in no way managed/controlled
       * by the Web Dynpro Designtime or the Web Dynpro Runtime.
      //@@begin others
      private final class WSDLAuthentication implements IWDWSInvocationModifier {
                public void doModifyInvocation(final Object port) {
                        if ( port instanceof Stub ) {
                               final Stub stub = (Stub)port;
                               stub._setProperty(Stub.USERNAME_PROPERTY,  "abc");
                               stub._setProperty(Stub.PASSWORD_PROPERTY, "123");
                        } else if (port instanceof DInterfaceInvoker) {
                               final DInterfaceInvoker invoker = (DInterfaceInvoker)port;
                               invoker.setProperty(Stub.USERNAME_PROPERTY,  "abc");
                               invoker.setProperty(Stub.PASSWORD_PROPERTY, "123");
                        } else
                               throw new RuntimeException("Error");
                        public void doModifyAfterInvocation() {}
    Thankyou,
    Balaji
    Edited by: balaji uppalapati on Jul 27, 2010 3:17 PM

  • Internal server error - processLoanApp of loanGateway1 example

    I am receiving an Internal Server Error while attempting to call the processLoanApp operation on the sample service bus example loanGateway1 proxy service. I generated some code from the wsdl definition. The wsdl for LoanStruct defines NumOfYear as an int while the underlying class defines it as a string. This causes a request to fail when the request includes the type of each attribute as part of the request. For example, the following request will fail:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
    <ns1:processLoanApp soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://example.org">
    <loanRequest href="#id0"/>
    </ns1:processLoanApp>
    <multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:LoanStruct" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns2="java:normal.client">
    <Name xsi:type="xsd:string">Tyler Durden</Name>
    <SSN xsi:type="xsd:string">111-11-1111</SSN>
    <Rate href="#id1"/>
    <Amount href="#id2"/>
    <NumOfYear xsi:type="xsd:int">45</NumOfYear>
    <Notes xsi:type="xsd:string">My Note</Notes>
    </multiRef>
    <multiRef id="id2" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:long" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">900000</multiRef>
    <multiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:double" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">5.0</multiRef>
    </soapenv:Body>
    </soapenv:Envelope>
    But if I remove the types from the attributes the request completes succesfully (you can also change the type of the NumOfYears attribute to string and it will work):
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <soapenv:Body>
              <ns1:processLoanApp soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://example.org">
                   <loanRequest href="#id0"/>
              </ns1:processLoanApp>
              <multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:LoanStruct" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns2="java:normal.client">
                   <Name>Tyler Durden</Name>
                   <SSN>111-11-1111</SSN>
                   <Rate href="#id1"/>
                   <Amount href="#id2"/>
                   <NumOfYear>TEST</NumOfYear>
                   <Notes>My Note</Notes>
              </multiRef>
              <multiRef id="id2">900000</multiRef>
              <multiRef id="id1">5.0</multiRef>
         </soapenv:Body>
    </soapenv:Envelope>
    I receive an internal server error. Below is the stack trace I received running this through the service bus test console:
    <soapenv:Body xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Fault>
    <faultcode>soapenv:Server</faultcode>
    <faultstring>
    [Server CodecHandler] Failed to decode Failed to decode message
    </faultstring>
    <detail>
    <bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webservice/fault/1.0.0"/>
    weblogic.wsee.codec.CodecException: Failed to decode message
    at weblogic.wsee.codec.soap11.SoapCodec.decode(SoapCodec.java:142)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.decode(CodecHandler.java:138)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.handleRequest(CodecHandler.java:39)
    at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
    at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:85)
    at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
    at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
    at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
    at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:165)
    at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:84)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3214)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1983)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1890)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1344)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Caused by: com.bea.xml.XmlException: java.lang.IllegalArgumentException: argument type mismatch
    at com.bea.staxb.runtime.internal.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:52)
    at com.bea.staxb.runtime.internal.RuntimeBindingType$BeanRuntimeProperty.setValue(RuntimeBindingType.java:483)
    at com.bea.staxb.runtime.internal.ByNameRuntimeBindingType$ElementQNameProperty.fill(ByNameRuntimeBindingType.java:351)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.basicExtractAndFill(SoapUnmarshalResult.java:244)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.extractAndFillElementProp(SoapUnmarshalResult.java:174)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents(ByNameUnmarshaller.java:51)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshalIntoIntermediary(AttributeUnmarshaller.java:47)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.umarshalComplexElementWithId(SoapUnmarshalResult.java:395)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.unmarshalBindingType(SoapUnmarshalResult.java:114)
    at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalType(UnmarshalResult.java:212)
    at com.bea.staxb.runtime.internal.SoapUnmarshallerImpl.unmarshalType(SoapUnmarshallerImpl.java:93)
    at weblogic.wsee.bind.runtime.internal.EncodedDeserializerContext.unmarshalType(EncodedDeserializerContext.java:66)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.internalDeserializeType(BaseDeserializerContext.java:170)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.deserializeType(BaseDeserializerContext.java:87)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodePart(SoapDecoder.java:401)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParams(SoapDecoder.java:236)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParts(SoapDecoder.java:163)
    at weblogic.wsee.codec.soap11.SoapDecoder.decode(SoapDecoder.java:116)
    at weblogic.wsee.codec.soap11.SoapCodec.decode(SoapCodec.java:136)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.decode(CodecHandler.java:138)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.handleRequest(CodecHandler.java:39)
    at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
    at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:85)
    at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
    at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
    at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
    at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:165)
    at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:84)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    Caused by: java.lang.IllegalArgumentException: argument type mismatch
    at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
    at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source)
    at com.bea.staxb.runtime.internal.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:48)
    at com.bea.staxb.runtime.internal.RuntimeBindingType$BeanRuntimeProperty.setValue(RuntimeBindingType.java:483)
    at com.bea.staxb.runtime.internal.ByNameRuntimeBindingType$ElementQNameProperty.fill(ByNameRuntimeBindingType.java:351)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.basicExtractAndFill(SoapUnmarshalResult.java:244)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.extractAndFillElementProp(SoapUnmarshalResult.java:174)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents(ByNameUnmarshaller.java:51)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshalIntoIntermediary(AttributeUnmarshaller.java:47)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.umarshalComplexElementWithId(SoapUnmarshalResult.java:395)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.unmarshalBindingType(SoapUnmarshalResult.java:114)
    at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalType(UnmarshalResult.java:212)
    at com.bea.staxb.runtime.internal.SoapUnmarshallerImpl.unmarshalType(SoapUnmarshallerImpl.java:93)
    at weblogic.wsee.bind.runtime.internal.EncodedDeserializerContext.unmarshalType(EncodedDeserializerContext.java:66)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.internalDeserializeType(BaseDeserializerContext.java:170)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.deserializeType(BaseDeserializerContext.java:87)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodePart(SoapDecoder.java:401)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParams(SoapDecoder.java:236)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParts(SoapDecoder.java:163)
    at weblogic.wsee.codec.soap11.SoapDecoder.decode(SoapDecoder.java:116)
    at weblogic.wsee.codec.soap11.SoapCodec.decode(SoapCodec.java:136)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.decode(CodecHandler.java:138)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.handleRequest(CodecHandler.java:39)
    at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
    at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:85)
    at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
    at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
    at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
    at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:165)
    at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:84)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    Caused by: com.bea.xml.XmlException: java.lang.IllegalArgumentException: argument type mismatch
    at com.bea.staxb.runtime.internal.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:52)
    at com.bea.staxb.runtime.internal.RuntimeBindingType$BeanRuntimeProperty.setValue(RuntimeBindingType.java:483)
    at com.bea.staxb.runtime.internal.ByNameRuntimeBindingType$ElementQNameProperty.fill(ByNameRuntimeBindingType.java:351)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.basicExtractAndFill(SoapUnmarshalResult.java:244)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.extractAndFillElementProp(SoapUnmarshalResult.java:174)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents(ByNameUnmarshaller.java:51)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshalIntoIntermediary(AttributeUnmarshaller.java:47)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.umarshalComplexElementWithId(SoapUnmarshalResult.java:395)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.unmarshalBindingType(SoapUnmarshalResult.java:114)
    at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalType(UnmarshalResult.java:212)
    at com.bea.staxb.runtime.internal.SoapUnmarshallerImpl.unmarshalType(SoapUnmarshallerImpl.java:93)
    at weblogic.wsee.bind.runtime.internal.EncodedDeserializerContext.unmarshalType(EncodedDeserializerContext.java:66)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.internalDeserializeType(BaseDeserializerContext.java:170)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.deserializeType(BaseDeserializerContext.java:87)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodePart(SoapDecoder.java:401)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParams(SoapDecoder.java:236)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParts(SoapDecoder.java:163)
    at weblogic.wsee.codec.soap11.SoapDecoder.decode(SoapDecoder.java:116)
    at weblogic.wsee.codec.soap11.SoapCodec.decode(SoapCodec.java:136)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.decode(CodecHandler.java:138)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.handleRequest(CodecHandler.java:39)
    at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
    at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:85)
    at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
    at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
    at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
    at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:165)
    at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:84)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    Caused by: java.lang.IllegalArgumentException: argument type mismatch
    at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
    at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source)
    at com.bea.staxb.runtime.internal.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:48)
    at com.bea.staxb.runtime.internal.RuntimeBindingType$BeanRuntimeProperty.setValue(RuntimeBindingType.java:483)
    at com.bea.staxb.runtime.internal.ByNameRuntimeBindingType$ElementQNameProperty.fill(ByNameRuntimeBindingType.java:351)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.basicExtractAndFill(SoapUnmarshalResult.java:244)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.extractAndFillElementProp(SoapUnmarshalResult.java:174)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents(ByNameUnmarshaller.java:51)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshalIntoIntermediary(AttributeUnmarshaller.java:47)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.umarshalComplexElementWithId(SoapUnmarshalResult.java:395)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.unmarshalBindingType(SoapUnmarshalResult.java:114)
    at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalType(UnmarshalResult.java:212)
    at com.bea.staxb.runtime.internal.SoapUnmarshallerImpl.unmarshalType(SoapUnmarshallerImpl.java:93)
    at weblogic.wsee.bind.runtime.internal.EncodedDeserializerContext.unmarshalType(EncodedDeserializerContext.java:66)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.internalDeserializeType(BaseDeserializerContext.java:170)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.deserializeType(BaseDeserializerContext.java:87)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodePart(SoapDecoder.java:401)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParams(SoapDecoder.java:236)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParts(SoapDecoder.java:163)
    at weblogic.wsee.codec.soap11.SoapDecoder.decode(SoapDecoder.java:116)
    at weblogic.wsee.codec.soap11.SoapCodec.decode(SoapCodec.java:136)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.decode(CodecHandler.java:138)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.handleRequest(CodecHandler.java:39)
    at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
    at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:85)
    at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
    at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
    at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
    at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:165)
    at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:84)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    Caused by: java.lang.IllegalArgumentException: argument type mismatch
    at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
    at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source)
    at com.bea.staxb.runtime.internal.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:48)
    at com.bea.staxb.runtime.internal.RuntimeBindingType$BeanRuntimeProperty.setValue(RuntimeBindingType.java:483)
    at com.bea.staxb.runtime.internal.ByNameRuntimeBindingType$ElementQNameProperty.fill(ByNameRuntimeBindingType.java:351)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.basicExtractAndFill(SoapUnmarshalResult.java:244)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.extractAndFillElementProp(SoapUnmarshalResult.java:174)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents(ByNameUnmarshaller.java:51)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshalIntoIntermediary(AttributeUnmarshaller.java:47)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.umarshalComplexElementWithId(SoapUnmarshalResult.java:395)
    at com.bea.staxb.runtime.internal.SoapUnmarshalResult.unmarshalBindingType(SoapUnmarshalResult.java:114)
    at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalType(UnmarshalResult.java:212)
    at com.bea.staxb.runtime.internal.SoapUnmarshallerImpl.unmarshalType(SoapUnmarshallerImpl.java:93)
    at weblogic.wsee.bind.runtime.internal.EncodedDeserializerContext.unmarshalType(EncodedDeserializerContext.java:66)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.internalDeserializeType(BaseDeserializerContext.java:170)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.deserializeType(BaseDeserializerContext.java:87)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodePart(SoapDecoder.java:401)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParams(SoapDecoder.java:236)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParts(SoapDecoder.java:163)
    at weblogic.wsee.codec.soap11.SoapDecoder.decode(SoapDecoder.java:116)
    at weblogic.wsee.codec.soap11.SoapCodec.decode(SoapCodec.java:136)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.decode(CodecHandler.java:138)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.handleRequest(CodecHandler.java:39)
    at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
    at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:85)
    at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
    at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
    at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
    at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:165)
    at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:84)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    </detail>
    </soapenv:Fault>
    </soapenv:Body>
    I was wondering if this was a known issue, a bug, or something I am doing wrong?
    Edited by jay.perkins at 12/27/2006 7:14 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      

    This is a know issue with the sample application. The message sent contains an incorrect namespace and by removing the attribute types you fixed the sample message :)

  • Java.rmi.ServerException: Internal Server Error (deserialization error: XML

    I am trying to transmit a document as a byte array to a web service using jax-rpc, and I get the following error:
    2004-05-25 08:04:39,468 exception [Thread-5] - [email protected]33fd java.rmi.ServerException: Internal Server Error (deserialization error: XML parsing error: com.sun.xml.rpc.sp.ParseException:58: Expected "</ns0:receivexmldocument>" to terminate element starting on line 2)
         at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:370)
         at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:231)
         at com.mobius.cmsl.client.contentindexlistener.ContentWebServiceListenerIF_Stub.receivexmldocument(ContentWebServiceListenerIF_Stub.java:63)
         at com.mobius.cmsl.adapters.convera.client.ContentWebServiceClient.sendxml(ContentWebServiceClient.java:89)
         at com.mobius.cmsl.adapters.convera.client.ContentInterceptor.doGet(ContentInterceptor.java:89)
         at com.mobius.cmsl.adapters.convera.client.ContentInterceptor.doPost(ContentInterceptor.java:110)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    The code looks like:
    Client:
    clientStub = (ContentWebServiceListenerIF_Stub)new ContentIndexService_Impl().
    getContentWebServiceListenerIFPort();
    clientStub._setProperty(Stub.ENDPOINT_ADDRESS_PROPERTY, endPoint);
    obj = clientStub.receivexmldocument(cd.externalLink.contents,inxml);
    Web Service:
    public String receivexmldocument(byte docstream[],
    String inxml
    ) throws RemoteException {
    The wsdl looks like:
    <message name="ContentWebServiceListenerIF_receivexmldocument">
    <part name="arrayOfbyte_1" type="xsd:base64Binary"/>
    <part name="String_2" type="xsd:string"/></message>
    <operation name="receivexmldocument" parameterOrder="arrayOfbyte_1 String_2">
    <input message="tns:ContentWebServiceListenerIF_receivexmldocument"/>
    <output message="tns:ContentWebServiceListenerIF_receivexmldocumentResponse"/></operation>
    The documents I am sending do contain special characters like maybe japanese or italian.

    Sounds like the xml you are sending is not well-formed. Please start with simple xml documents to see if it works.

  • HTTP/1.1 500 Internal Server Error for SAOAP Sender Adapter

    Hi,
    I am veera, i am getting the below error. I doing the SOAP Syn interface, While executeing the soap client i got the below error..
    Please help me .. how to retry the this error. 
    HTTP/1.1 500 Internal Server Error
    Set-Cookie: JSESSIONID=(tam00_PID_70)ID1513783250DB21066821525219634633End; Version=1; Domain= 150.208.226.90; Path=/
    Set-Cookie: saplb_*=(tam00_PID_70)703524750; Version=1; Path=/
    Server: SAP J2EE Engine/7.00
    Content-Type: text/xml; charset=utf-8
    Content-Encoding: gzip
    Date: Tue, 23 Feb 2010 13:07:00 GMT
    Transfer-Encoding: chunked
    <?xml version='1.0'?>
    <!-- see the documentation -->
    <SOAP:Envelope xmlns:SOAP='http://schemas.xmlsoap.org/soap/envelope/'>
      <SOAP:Body>
        <SOAP:Fault>
          <faultcode>SOAP:Server</faultcode>
          <faultstring>Server Error</faultstring>
          <detail>
            <s:SystemError xmlns:s='http://sap.com/xi/WebService/xi2.0'>
              <context>XIAdapter</context>
              <code>CPAException</code>
              <text><![CDATA[
    com.sap.aii.af.service.cpa.CPAException: invalid channel (party:service:channel) = <null>
         at com.sap.aii.af.mp.soap.web.MessageServlet.getChannel(MessageServlet.java:481)
         at com.sap.aii.af.mp.soap.web.MessageServlet.doPost(MessageServlet.java:415)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
              ]]></text>
            </s:SystemError>
          </detail>
        </SOAP:Fault>
      </SOAP:Body>
    </SOAP:Envelope>
    Thanks & Regards,
    Veera

    Hi Prateek,
    Thanks for Response.
    Regenerating  the wsdl in IR/ESR or ID  Please tell me .
    am generating wsdl file for ID --> define webservice and follwing parameters like sender interface name, namespace,communication channel,business systemname.
    Regards,
    Veera.

  • SOAP Sync: HTTP/1.1 500 Internal Server Error

    Hi,
                      My scenario is SOAP to SOAP Synchronous. I created WSDL from Id by using (http://<host>:<j2ee-port>/XISOAPAdapter/MessageServlet?channel=:<service>:<channel>.  And Sender interface details.
    I am testing SOAP Synchronous scenario through SOAPUI tool. When sending the requrest from SOAP UI i am getting "HTTP/1.1 500 Internal Server Error" error.
    Log:
    <?xml version='1.0'?>
    <!-- see the documentation -->
    <SOAP:Envelope xmlns:SOAP='http://schemas.xmlsoap.org/soap/envelope/'>
      <SOAP:Body>
        <SOAP:Fault>
          <faultcode>SOAP:Server</faultcode>
          <faultstring>Server Error</faultstring>
          <detail>
            <s:SystemError xmlns:s='http://sap.com/xi/WebService/xi2.0'>
              <context>XIAdapter</context>
              <code>ADAPTER.JAVA_EXCEPTION</code>
              <text><![CDATA[
    com.sap.aii.af.service.cpa.CPAObjectNotFoundException: Couldn't retrieve binding for the given channelId: Binding:CID=null;
    When i test the URL in explorer its giving "OK". What will be the probelm? Pls let me know.
    Regards,
    Dev

    Hi,
       This might be the problem with url...
    It should be in the below format...
    http://host:port/XISOAPAdapter/MessageServlet?channel=party:sender component:sender Communicaton Channel
    Regards,
    Naveen

  • ADF Mobile: HTTP Status Code 500 Internal Server Error

    Hi,
    I wrote a SOAP web service and deployed it to my standalone ADF Server. I tested it with the HTTP Analyzer, works great. I used it in a Web Service Data Control in normal ADF Web - works perfect. It returns a table of data as programmed. However, ADF Mobile gives me errors: "Http Status Code 500 Internal Server Error: The server encountered an unexpected condition which prevented it from fulfilling the request".
    I developed an ADF Mobile interface with an amx page. I created the same Web Service Data Control and created a List View based on the data control. The error pops up every single time, both on iOS simulator and Android Simulator.
    I know the simulators have network access to the web services - because i can open the web service test page and WSDL from both simulator's internet browsers.
    I know the web services are running - because my ADF Web application can access it.
    Any ideas?
    Thank you!
    -Gavin

    Thanks for the reply. There were no errors in my WLS server. However, I will add some statements to my web service to write to the log file. That way i can see if or at what point is the web service is being accessed by the mobile app.
    Thanks,
    Gavin

  • SOAP Invoke error: Status (500): Internal Server Error

    I have a BLS with a WebService action.  I am testing the WebService call with each operation within the wsdl address.  I used the wsdl address to make the call.  I selected the only port available.  There are several operations available.  This WebService call is successful for all operations except for one.  The operation that fails, I get the following errors in the "ServletExec.log" for this one operation.  Can you tell me where the issue may be?
    "SOAP Invoke error: Status (500): Internal Server Error"
    "java.lang.Exception: Status (500): Internal Server Error"
    "at com.lighthammer.webservice.SoapClient.invoke(Unknown Source)"
    "at com.lighthammer.xacute.actions.webservice.WebServiceAction.RawInvoke(Unknown Source)"
    "at com.lighthammer.xacute.actions.webservice.WebServiceAction.Invoke(Unknown Source)"
    Thanks,
    Chris

    The Web Service had been "Reversed Engineered".  In doing this, the parameters had been changed in the Web Service.  This created a "break" on MII's side (i.e. MII was still trying to pass the authentication token to the parameter named "authenticationToken", instead of passing it to the parameter named "paramString1".).
    Thanks,
    Chris

  • SOAP to RFC Scenerio: HTTP 500: Internal Server Error

    Hi Experts,
        I am facing HTTP 500:Internal server Error. We have SOAP to RFC Scenerio. Interface is working fine, suddenly we are facing this error in Interface. On XI server side - ABAP and JAVA stack are on same Service Pack(SP 13). There is no change done in WSDL and RFC Structure and Mapping side.
    Please suggest to resolve this Issue.

    Hi Subbu,
       I have found this error in adapter monitoring??..  Please find my finding of XI server related to this below:--
    *Error categaory - XI_J2EE_MESSAGING_SYSTEM
    Error Code - CALL_ CONSUMER _ERROR
    Error :Returning synchornous error notification to calling application:com.sap.aii.af.ra.ms.api.RecoverableException: RecievedHTTP Response code 500:internal Server Error.*
       I have refresh the cache already, but problem still exists.
       Please suggest how to resolve this error.

  • CLIENT_SEND_FAILED HTTP ERROR 500 Internal Server Error

    Hello Experts,
        I have a scenario from Proxy->SOAP.  I am facing the below error.  I have many other Scenarios from Proxy -> SOAP all of them are working fine except this.
    I am using NW07_06_REL With SP 06
    <?xml version="1.0"; encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">CLIENT_SEND_FAILED</SAP:Code>
      <SAP:P1>500</SAP:P1>
      <SAP:P2>Internal Server Error</SAP:P2>
      <SAP:P3>(See attachment HTMLError for details)</SAP:P3>
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:Stack>Error while sending by HTTP (error code: 500, error text: Internal Server Error) (See attachment HTMLError for details)</SAP:Stack>
      <SAP:Retry>A</SAP:Retry>
      </SAP:Error>
    HTML Error
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: Could not create Message from TransportMessage. Reason: com.sap.engine.interfaces.messaging.api.exception.MessagingException: XIMessage creation failed (inbound). Reason: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Could not parse XMBMessage. Reason: com.sap.aii.af.sdk.xi.mo.MalformedMessageException: Unexpected length of element <sap:Main><sap:Interface @sap:namespace> = xxxxx; nested exception caused by: com.sap.aii.af.sdk.xi.util.XMLScanException: Unexpected length of element <sap:Main><sap:Interface @sap:namespace> = XXXXXX
    The message clogs in the qRFC Queue. Not able to re-process it.
    I have already checked Most of the threads on the SDN, They didn't help me.
    Any help greatly appreciated
    Edited by: Kannan Narayanan on Dec 28, 2010 3:29 AM

    --> Error while sending by HTTP (error code: 500, error text: Internal Server Error)
    Answer: 500 internal Server Error is due to server down or network related problems.
    Import the wsdl in xmlspy or SOAPUI and see the behavior first. If the error is same, you can conclude it due to other end .(i meant server that host webservice causing it). we have very similar issues in our end. This is server down error mostly.
    Hope I answered your question.

  • Running a WD-Appl. results in 500   Internal Server Error

    Dear all,
    I installed both JAVA and ABAP stack (Sneak preview 6.40 SP15) on one box.
    In the NSP I created a Web Service via SE37 using an existing RFC function module of my own. Then I released my Web Service for SOAP Runtime via WSCONFIG.
    Next I checked the WSDL document and run a test via WSADMIN. On the right side I can see all retrieved data in a tree. Congratulation!
    Next I created a Web Dynpro Project in the NW DevStudio that uses my Web Service:
    - the model using my WSDL from above and
    - context and model binding
    - a view showing a table and a pushbutton .
    Eerything went fine ... saveing-deploying-running ...
    A html-page appears, I see my empty table and a shiny button ... I exspect that the Web Service Function Module will be triggered and the table shows me some entries, but instead, when I push the button, I get an error message: "500   Internal Server Error
    Failed to process request. Please contact your system administrator. " What did go wrong? Who can help me?

    Good evening,
    maybe some more info about my system:
    - both stacks are running (all traffic lights are green)
    - the function module sends 5 fields per line, but in the
      View of my WebDynpro I included only 4, excluded field
      MANDT
    - Web-Browser is running with lowest security level
    - here are som logfile info:  Thank you Armin
    I:\usr\sap\J2E\JC02\j2ee\cluster\server0\log\system
    server.1.log
    #1.5#02004C4F4F500061000000410000042800040CFC59A74859#1140177882312#/System/Server/WebRequests#sap.com/tcwddispwda#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#Guest#0####940e13809fad11daba2502004c4f4f50#SAPEngine_Application_Thread[impl:3]_38##0#0#Warning#1#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#Plain###Cannot send an HTTP error response [500 Application error occurred during request processing. (details: java.lang.NoSuchFieldError: typeRegistry)].The error is: com.sap.engine.services.servletsjsp.server.exceptions.WebIOException: An attempt to write after the stream had been closed.null#
    #1.5#02004C4F4F50006B000000110000042800040D00A0D24CEF#1140196256171#/System/Server/SLDService#sap.com/tcwddispwda#com.sap.sldserv.SldApplicationService#admin#4020####1fd388809fd811da831202004c4f4f50#ID\#(J2EE23436000)ID1860686650DB20022690890746729240End.1fd5d2709fd811da919a02004c4f4f50##0#0#Warning#1#com.sap.sldserv.SldApplicationService#Plain###Insufficient permissions for getting SLD access information. You can add permissions for your application via the SLD service in the 'Visual Administrator'.#
    #1.5#02004C4F4F50006B000000140000042800040D00A0D27772#1140196256187#/System/Server/SLDService#sap.com/tcwddispwda#com.sap.sldserv.SldApplicationService#admin#4020####1fd388809fd811da831202004c4f4f50#ID\#(J2EE23436000)ID1860686650DB20022690890746729240End.1fd5d2709fd811da919a02004c4f4f50##0#0#Warning#1#com.sap.sldserv.SldApplicationService#Plain###Insufficient permissions for getting SLD access information. You can add permissions for your application via the SLD service in the 'Visual Administrator'.#
    #1.5#02004C4F4F500012000000010000042800040D00A0D97B46#1140196256640#/System/Server##com.sap.engine.services.deploy######5c0478009fd811da852e02004c4f4f50#SAPEngine_System_Thread[impl:5]_50##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp over application sap.com/tclmwebadminoverviewsys_mngt~wd finished successfully on server 23436050#
    #1.5#02004C4F4F500012000000020000042800040D00A0D97BBE#1140196256640#/System/Server##com.sap.engine.services.deploy######5c0478009fd811da852e02004c4f4f50#SAPEngine_System_Thread[impl:5]_50##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp on application sap.com/tclmwebadminoverviewsys_mngt~wd finished on current cluster node for 47 ms.#
    #1.5#02004C4F4F500002000000010000042800040D00A21BB95A#1140196277765#/System/Server##com.sap.engine.services.deploy######689be3509fd811dabf2402004c4f4f50#SAPEngine_System_Thread[impl:5]_34##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp over application sap.com/tclmwebadminoverviewmonitoring~wd finished successfully on server 23436050#
    #1.5#02004C4F4F500002000000020000042800040D00A21BB9D8#1140196277765#/System/Server##com.sap.engine.services.deploy######689be3509fd811dabf2402004c4f4f50#SAPEngine_System_Thread[impl:5]_34##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp on application sap.com/tclmwebadminoverviewmonitoring~wd finished on current cluster node for 31 ms.#
    #1.5#02004C4F4F500030000000010000042800040D00A3684B2F#1140196299562#/System/Server##com.sap.engine.services.deploy######7599d8a09fd811da82a002004c4f4f50#SAPEngine_System_Thread[impl:5]_36##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp over application sap.com/tclmlv~client_ui finished successfully on server 23436050#
    #1.5#02004C4F4F500030000000020000042800040D00A3684BA9#1140196299562#/System/Server##com.sap.engine.services.deploy######7599d8a09fd811da82a002004c4f4f50#SAPEngine_System_Thread[impl:5]_36##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp on application sap.com/tclmlv~client_ui finished on current cluster node for 47 ms.#
    #1.5#02004C4F4F500030000000030000042800040D00A3685B75#1140196299562#/System/Server##com.sap.engine.services.deploy######7599d8a09fd811da82a002004c4f4f50#SAPEngine_System_Thread[impl:5]_36##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp over application sap.com/tclmwebadminlvwd finished successfully on server 23436050#
    #1.5#02004C4F4F500030000000040000042800040D00A3685BEE#1140196299562#/System/Server##com.sap.engine.services.deploy######7599d8a09fd811da82a002004c4f4f50#SAPEngine_System_Thread[impl:5]_36##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp on application sap.com/tclmwebadminlvwd finished on current cluster node for 62 ms.#
    #1.5#02004C4F4F5006BD000000000000042800040D00B2D311C2#1140196558250#/System/Server##com.sap.engine.services.deploy######0fca80a09fd911da8f4b02004c4f4f50#SAPEngine_System_Thread[impl:5]_70##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp over application sap.com/tclmwebadminoverviewconfig~wd finished successfully on server 23436050#
    #1.5#02004C4F4F5006BD000000010000042800040D00B2D3123F#1140196558250#/System/Server##com.sap.engine.services.deploy######0fca80a09fd911da8f4b02004c4f4f50#SAPEngine_System_Thread[impl:5]_70##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp on application sap.com/tclmwebadminoverviewconfig~wd finished on current cluster node for 32 ms.#
    #1.5#02004C4F4F50003F000000010000042800040D00B4256808#1140196580421#/System/Server##com.sap.engine.services.deploy######1d0187509fd911da918902004c4f4f50#SAPEngine_System_Thread[impl:5]_40##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp over application sap.com/tclmwebadminlog_configwd finished successfully on server 23436050#
    #1.5#02004C4F4F50003F000000020000042800040D00B4256882#1140196580421#/System/Server##com.sap.engine.services.deploy######1d0187509fd911da918902004c4f4f50#SAPEngine_System_Thread[impl:5]_40##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp on application sap.com/tclmwebadminlog_configwd finished on current cluster node for 46 ms.#
    #1.5#02004C4F4F500025000000010000042800040D00DEFE7F57#1140197299343#/System/Server##com.sap.engine.services.deploy######c98451f09fda11dacf5d02004c4f4f50#SAPEngine_System_Thread[impl:5]_75##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp over application sap.com/tclmwebadminoverviewdebug~wd finished successfully on server 23436050#
    #1.5#02004C4F4F500025000000020000042800040D00DEFE7FD1#1140197299343#/System/Server##com.sap.engine.services.deploy######c98451f09fda11dacf5d02004c4f4f50#SAPEngine_System_Thread[impl:5]_75##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp on application sap.com/tclmwebadminoverviewdebug~wd finished on current cluster node for 15 ms.#
    #1.5#02004C4F4F500029000000010000042800040D00F460D8F4#1140197658015#/System/Server##com.sap.engine.services.deploy######9f4d52f09fdb11dac04c02004c4f4f50#SAPEngine_System_Thread[impl:5]_83##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp over application sap.com/tclmwebadminoverviewanalysis~wd finished successfully on server 23436050#
    #1.5#02004C4F4F500029000000020000042800040D00F460D978#1140197658015#/System/Server##com.sap.engine.services.deploy######9f4d52f09fdb11dac04c02004c4f4f50#SAPEngine_System_Thread[impl:5]_83##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp on application sap.com/tclmwebadminoverviewanalysis~wd finished on current cluster node for 47 ms.#
    #1.5#02004C4F4F50003E000000030000042800040D00F5660BBF#1140197675140#/System/Server##com.sap.engine.services.deploy######a98264409fdb11daa59302004c4f4f50#OrderedChannel for service##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp over application sap.com/tclmwebadminoverviewperform~wd finished successfully on server 23436050#
    #1.5#02004C4F4F50003E000000040000042800040D00F5660C39#1140197675140#/System/Server##com.sap.engine.services.deploy######a98264409fdb11daa59302004c4f4f50#OrderedChannel for service##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp on application sap.com/tclmwebadminoverviewperform~wd finished on current cluster node for 62 ms.#
    #1.5#02004C4F4F5000200000000B0000042800040D00F597B551#1140197678390#/System/Server##com.sap.engine.services.deploy######ab724d609fdb11dac12102004c4f4f50#SAPEngine_System_Thread[impl:5]_97##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp over application sap.com/tclmwebadminsession_tracewd finished successfully on server 23436050#
    #1.5#02004C4F4F5000200000000C0000042800040D00F597B5CA#1140197678390#/System/Server##com.sap.engine.services.deploy######ab724d609fdb11dac12102004c4f4f50#SAPEngine_System_Thread[impl:5]_97##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp on application sap.com/tclmwebadminsession_tracewd finished on current cluster node for 47 ms.#
    #1.5#02004C4F4F500041000000020000042800040D00F809240B#1140197719375#/System/Server##com.sap.engine.services.deploy######c3e01df09fdb11da90cd02004c4f4f50#SAPEngine_System_Thread[impl:5]_71##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp over application sap.com/tclmwebadminoverviewconf~wd finished successfully on server 23436050#
    #1.5#02004C4F4F500041000000030000042800040D00F8092486#1140197719375#/System/Server##com.sap.engine.services.deploy######c3e01df09fdb11da90cd02004c4f4f50#SAPEngine_System_Thread[impl:5]_71##0#0#Info#1#com.sap.engine.services.deploy#Plain###
    Operation startApp on application sap.com/tclmwebadminoverviewconf~wd finished on current cluster node for 32 ms.#
    #1.5#02004C4F4F50002D0000000B0000042800040D01BC3F1359#1140201011218#/System/Server/SLDService##com.sap.sldserv.SldServerFrame.doCollect######664177909fe311da83fb02004c4f4f50#SAPEngine_System_Thread[impl:5]_57##0#0#Warning#1#com.sap.sldserv.SldServerFrame#Plain###SLD data collector run failed: Unable to open connection to host "localhost:50000". The host is down or unavailable..#
    #1.5#02004C4F4F50002D0000000C0000042800040D01BC3F1446#1140201011218#/System/Server/SLDService##com.sap.sldserv.SldServerFrame######664177909fe311da83fb02004c4f4f50#SAPEngine_System_Thread[impl:5]_57##0#0#Warning#1#com.sap.sldserv.SldServerFrame#Plain###Failed to collect SLD data. Unable to open connection to host "localhost:50000". The host is down or unavailable..#
    #1.5#02004C4F4F500062000000250000042800040D02694FB4F4#1140203914796#/System/Server/WebRequests#sap.com/tcwddispwda#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#Guest#0####30a256c09fea11dac94a02004c4f4f50#SAPEngine_Application_Thread[impl:3]_13##0#0#Error#1#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#Plain###Processing HTTP request to servlet [dispatcher] finished with error.
    The error is: java.lang.NoSuchFieldError: _typeRegistry
    Exception id: [02004C4F4F500062000000240000042800040D02694FB344]#
    #1.5#02004C4F4F500062000000270000042800040D02694FBDA8#1140203914796#/System/Server/WebRequests#sap.com/tcwddispwda#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#Guest#0####30a256c09fea11dac94a02004c4f4f50#SAPEngine_Application_Thread[impl:3]_13##0#0#Warning#1#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#Plain###Cannot send an HTTP error response [500 Application error occurred during request processing. (details: java.lang.NoSuchFieldError: typeRegistry)].The error is: com.sap.engine.services.servletsjsp.server.exceptions.WebIOException: An attempt to write after the stream had been closed.null#
    I:\usr\sap\J2E\JC02\j2ee\cluster\server0\log\system
    userinterface.0.log
    #1.5#02004C4F4F500058000000180000042800040CFC451E5B5B#1140177537984#/System/UserInterface#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientManager#Guest#0####c6d43c009fac11daa11602004c4f4f50#SAPEngine_Application_Thread[impl:3]_20##0#0#Info#1#com.sap.tc.webdynpro.clientserver.cal.ClientManager#Plain###ClientWindow with Id 9fbf1dd19faa11da982502004c4f4f50does not contain ApplicationWindow with Id Id9fbf1dd19faa11da982502004c4f4f501!#
    #1.5#02004C4F4F50006C0000000C0000042800040CFC4520D522#1140177538156#/System/UserInterface#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientManager#Guest#0####c6ee7ac09fac11da96ec02004c4f4f50#SAPEngine_Application_Thread[impl:3]_34##0#0#Info#1#com.sap.tc.webdynpro.clientserver.cal.ClientManager#Plain###ClientWindow with Id 5aaa43309fac11daa9e302004c4f4f50does not contain ApplicationWindow with Id Id5aaa43309fac11daa9e302004c4f4f502!#
    #1.5#02004C4F4F50005B0000000D0000042800040CFC557AD42C#1140177812281#/System/UserInterface#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientSession#Guest#0####6a5031909fad11da952f02004c4f4f50#ID\#(J2EE23436000)ID1437660650DB21061510417884802850End.6a5031919fad11daa4e302004c4f4f50##0#0#Info#1#com.sap.tc.webdynpro.clientserver.cal.ClientSession#Java###ClientSession=, locale=#2#(J2EE23436000)ID1437660650DB21061510417884802850End#de#
    #1.5#02004C4F4F5000610000003C0000042800040CFC59A72A98#1140177882296#/System/UserInterface#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientManager.handleThrowable#Guest#0####940e13809fad11daba2502004c4f4f50#ID\#(J2EE23436000)ID1437660650DB21061510417884802850End.6a5031919fad11daa4e302004c4f4f50##0#0#Error#1#/System/UserInterface#Plain###Exception(java.lang.NoSuchFieldError: _typeRegistry) during processing a Web Dynpro Application.#
    #1.5#02004C4F4F500070000000170000042800040CFC5E58E911#1140177961062#/System/UserInterface#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientManager#Guest#0####c300d0609fad11daa29302004c4f4f50#SAPEngine_Application_Thread[impl:3]_17##0#0#Info#1#com.sap.tc.webdynpro.clientserver.cal.ClientManager#Plain###ClientWindow with Id 6a5031919fad11daa4e302004c4f4f50does not contain ApplicationWindow with Id Id6a5031919fad11daa4e302004c4f4f503!#
    #1.5#02004C4F4F50006B0000000E0000042800040D009AD602EE#1140196155750#/System/UserInterface#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientSession#admin#4020####1fd388809fd811da831202004c4f4f50#ID\#(J2EE23436000)ID1860686650DB20022690890746729240End.1fd5d2709fd811da919a02004c4f4f50##0#0#Info#1#com.sap.tc.webdynpro.clientserver.cal.ClientSession#Java###ClientSession=, locale=#2#(J2EE23436000)ID1860686650DB20022690890746729240End#en#
    #1.5#02004C4F4F50006F000000130000042800040D02653B3545#1140203846359#/System/UserInterface#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientSession#Guest#0####07d53d709fea11da9a6802004c4f4f50#ID\#(J2EE23436000)ID0131720150DB21013274501523920836End.07d7ae709fea11da844902004c4f4f50##0#0#Info#1#com.sap.tc.webdynpro.clientserver.cal.ClientSession#Java###ClientSession=, locale=#2#(J2EE23436000)ID0131720150DB21013274501523920836End#de#
    #1.5#02004C4F4F500062000000220000042800040D02694F9F64#1140203914796#/System/UserInterface#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientManager.handleThrowable#Guest#0####30a256c09fea11dac94a02004c4f4f50#ID\#(J2EE23436000)ID0131720150DB21013274501523920836End.07d7ae709fea11da844902004c4f4f50##0#0#Error#1#/System/UserInterface#Plain###Exception(java.lang.NoSuchFieldError: _typeRegistry) during processing a Web Dynpro Application.#
    I:\usr\sap\J2E\JC02\j2ee\cluster\server0\log\system\httpaccess
    responses.0.trc
    [Feb 17, 2006 8:14:52 PM  ] - 127.0.0.1 : GET /webdynpro/dispatcher/sap.com/tclmwebadminmainframewd/WebAdminApp?sap-wd-cltwndid=1fd5d2709fd811da919a02004c4f4f50&sap-wd-appwndid=Id1fd5d2709fd811da919a02004c4f4f504&sap-sessioncmd=unload HTTP/1.1 500 2117
    [Feb 17, 2006 8:17:26 PM  ] - 169.254.25.129 : GET /webdynpro/dispatcher/local/MyWDP/MyWDA?SAPtestId=4 HTTP/1.1 200 3221
    [Feb 17, 2006 8:18:34 PM  ] - 169.254.25.129 : POST /webdynpro/dispatcher/local/MyWDP/MyWDA?SAPtestId=4 HTTP/1.1 500 720
    I:\usr\sap\J2E\JC02\j2ee\cluster\server0\log\system\webcontainer
    requests.0.trc
    The error is: java.lang.NoSuchFieldError: _typeRegistry
    Exception id: [02004C4F4F500062000000240000042800040D02694FB344]#
    #1.5#02004C4F4F500062000000270000042800040D02694FBDA8#1140203914796#/System/Server/WebRequests#sap.com/tcwddispwda#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#Guest#0####30a256c09fea11dac94a02004c4f4f50#SAPEngine_Application_Thread[impl:3]_13##0#0#Warning#1#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#Plain###Cannot send an HTTP error response [500 Application error occurred during request processing. (details: java.lang.NoSuchFieldError: typeRegistry)].The error is: com.sap.engine.services.servletsjsp.server.exceptions.WebIOException: An attempt to write after the stream had been closed.null#

  • "500 Internal Server Error" response from asynchronous AquaLogic proxy

    Hi,
    We have a proxy service deployed to AquaLogic Service Bus (alsb) v3.0 as a WSDL-based SOAP/HTTP service. The WSDL for the proxy defines a single one-way operation (i.e. no response message is defined), making it an asynchronous operation. The proxy routes the request through a couple business services and then routes the response to a URL specified in the request (in the ReplyTo element of a WS-Addressing header). Essentially it's an asynchronous request-response pattern that accepts requests from a web service and calls back to that web service with the response.
    This proxy service works perfectly when run from the test page in the ALSB console. However, when calling the proxy from the real client web service, AquaLogic returns a "500" response from the HTTP POST. The WSDL and everything look correct, and we can use the proxy's URL to download the WSDL with no problem.
    Is this a known problem?
    Thanks!
    -Eric

    HI,
    I am looking for a solution to the problem (i am using Oracle service Bus_10.3).
    After publishing, I can get the wsdl from the web browser but calling the proxy service directly results:
    com.bea.control.ServiceControlException: Unexpected exception raised invoking getTerminalDistance on control com.demo.control.TerminalLocationServiceControl. Use getCause() to see the root cause.[java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoap.org/soap/envelope/}Server] FaultString [BEA-380001: Internal Server Error] FaultActor [null] Detail [<detail><con:fault xmlns:con="http://www.bea.com/wli/sb/context"><con:errorCode>BEA-380001</con:errorCode><con:reason>Internal Server Error</con:reason><con:location><con:node>RouteNode3</con:node><con:path>response-pipeline</con:path></con:location></con:fault></detail>]; nested exception is:
         weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: BEA-380001: Internal Server Error]
         at com.bea.control.servicecontrol.impl.ServiceControlImpl.invoke(ServiceControlImpl.java:696)
         at com.demo.control.TerminalLocationServiceControlBean.getTerminalDistance(TerminalLocationServiceControlBean.java:132)
         at com.demo.control.TerminalLocationImpl.getTerminalDistance(TerminalLocationImpl.java:51)
         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 weblogic.wsee.component.pojo.JavaClassComponent.invoke(JavaClassComponent.java:112)
         at weblogic.wsee.ws.dispatch.server.ComponentHandler.handleRequest(ComponentHandler.java:84)
         at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:141)
         at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:114)
         at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
         at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
         at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
         at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:285)
         at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:169)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3504)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2186)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2092)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoap.org/soap/envelope/}Server] FaultString [BEA-380001: Internal Server Error] FaultActor [null] Detail [<detail><con:fault xmlns:con="http://www.bea.com/wli/sb/context"><con:errorCode>BEA-380001</con:errorCode><con:reason>Internal Server Error</con:reason><con:location><con:node>RouteNode3</con:node><con:path>response-pipeline</con:path></con:location></con:fault></detail>]; nested exception is:
         weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: BEA-380001: Internal Server Error
         at weblogic.wsee.jaxrpc.StubImpl.throwRemoteException(StubImpl.java:296)
    I have implemented one testservice and trying to invoke Aqualogic proxy using service control generated through weblogic workshop and getting above error. but if I use test console of Service bus to test this proxy, it runs fine. Also I have configured proxy service message flow where i am using "Replace" action to replce the header from the incoming reuest with the following as my business service expects this security token:
    <soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" soap:mustUnderstand="1">
    <wsse:UsernameToken xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="UsernameToken-24512621">
    <wsse:Username>sample:parlayx</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">1234</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    </soap:Header>
    please Please share any additional configuration/settings needed.
    thanks
    Narendra

  • Internal Server Error (NullPointerException) when invoking a Web Service

    I'm using SOA suite 10.1.3.3 (incl the latest patch set) on Windows XP.
    I've created 3 web services using the wizard interface out of 3 existing WSDL files. The Java code inside the web services is just dummy code.
    I'm testing the web services using the Test Web Service functionality in Oracle Enterprise Manager's Application Server Control.
    The moment I fill in the data and press invoke, I get back the following fault:
    <env:Body>
    <env:Fault>
    <faultcode>env:Server</faultcode>
    <faultstring>Internal Server Error (Caught exception while handling request: java.lang.NullPointerException)</faultstring>
    </env:Fault>
    </env:Body>
    I know that control never reaches inside the services themselves.
    I've even followed the online demo that shows users how to create, deploy and test a Web Service in JDeveloper to make sure that I wasn't doing anything silly.
    What could be wrong? Please help.
    Thanks in advance.

    Seems to be a problem in serialization??? What do I do?
    When I invoke the web service from a web proxy client, this is the stack trace:
    QueryGDSAsiaPackage.SearchAirline_fault: java.lang.NullPointerException
         at QueryGDSAsiaPackage.runtime.SearchAirline_fault__LiteralSerializer.doDeserialize(SearchAirline_fault__LiteralSerializer.java:71)
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.internalDeserialize(LiteralObjectSerializerBase.java:250)
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.deserialize(LiteralObjectSerializerBase.java:159)
         at QueryGDSAsiaPackage.runtime.QueryGDS_Asia_PortType_searchAirline_Fault_SOAPSerializer.deserializeDetail(QueryGDS_Asia_PortType_searchAirline_Fault_SOAPSerializer.java:56)
         at oracle.j2ee.ws.common.encoding.SOAPFaultInfoSerializer.doDeserializeSOAP11(SOAPFaultInfoSerializer.java:132)
         at oracle.j2ee.ws.common.encoding.SOAPFaultInfoSerializer.doDeserialize(SOAPFaultInfoSerializer.java:94)
         at oracle.j2ee.ws.common.encoding.ObjectSerializerBase.deserialize(ObjectSerializerBase.java:180)
         at oracle.j2ee.ws.common.encoding.ReferenceableSerializerImpl.deserialize(ReferenceableSerializerImpl.java:147)
         at oracleesb.QueryGDA_Asia_proxy.runtime.QueryGDS_AsiaSOAP_Stub._readBodyFaultElement(QueryGDS_AsiaSOAP_Stub.java:346)
         at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:321)
         at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:112)
         at oracleesb.QueryGDA_Asia_proxy.runtime.QueryGDS_AsiaSOAP_Stub.searchAirline(QueryGDS_AsiaSOAP_Stub.java:155)
         at QueryGDSAsiaPackage.QueryGDS_AsiaSOAPClient.searchAirline(QueryGDS_AsiaSOAPClient.java:43)
         at QueryGDSAsiaPackage.QueryGDS_AsiaSOAPClient.main(QueryGDS_AsiaSOAPClient.java:30)
    Process exited with exit code 0.

Maybe you are looking for