IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
Expand all | Collapse all

SOAPException: [ISS.0088.9112] An Exception was thrown in the server

webMethods Community Member

webMethods Community MemberFri February 29, 2008 09:09 PM

webMethods Community Member

webMethods Community MemberFri February 29, 2008 09:33 PM

  • 1.  SOAPException: [ISS.0088.9112] An Exception was thrown in the server

    Posted Fri February 29, 2008 06:25 PM

    When call [url]http://localhost:5555/soap/rpc[/url] , I get this error as below,
    your help is appreciated,

    <?xml version="1.0" encoding="UTF-8" ?>
    #webMethods
    #API-Management
    #soa


  • 2.  RE: SOAPException: [ISS.0088.9112] An Exception was thrown in the server

    Posted Fri February 29, 2008 06:51 PM

    The service being invoked via SOAP RPC failed with a null pointer exception. Debug that service with Developer.


    #API-Management
    #soa
    #webMethods


  • 3.  RE: SOAPException: [ISS.0088.9112] An Exception was thrown in the server

    Posted Fri February 29, 2008 08:58 PM

    Thanks.Debug which service ?Is it WmPublic/pub.client.soapRPC ?If yes, it’s just a java service and source is not availble.


    #API-Management
    #webMethods
    #soa


  • 4.  RE: SOAPException: [ISS.0088.9112] An Exception was thrown in the server

    Posted Fri February 29, 2008 09:09 PM

    The service you created the WSDL from.


    #webMethods
    #soa
    #API-Management


  • 5.  RE: SOAPException: [ISS.0088.9112] An Exception was thrown in the server

    Posted Fri February 29, 2008 09:33 PM

    What is the SOAP request?


    #soa
    #API-Management
    #webMethods


  • 6.  RE: SOAPException: [ISS.0088.9112] An Exception was thrown in the server

    Posted Fri February 29, 2008 10:05 PM

    Thanks . When I call [url]http://10.191.23.6:5555/soap/rpc[/url] in browser, I get below message:

    <?xml version="1.0" encoding="UTF-8" ?>

    However, when I call [url]http://10.191.23.12:5555/soap/rpc[/url], I get below web page,what’s the difference ?It seems the former is not correct.How to correct this ?what’s more , I can call the webservice internally by webservice connector successfully.Howerver, my partner call ihttp://10.191.23.6:5555/soap/rpc externally the get error as above. why ?Thanks.

    <?xml version="1.0" encoding="UTF-8" ?>
    #soa
    #webMethods
    #API-Management


  • 7.  RE: SOAPException: [ISS.0088.9112] An Exception was thrown in the server

    Posted Fri February 29, 2008 10:20 PM

    A browser cannot call a web service normally. The content type of the post must be set to an appropriate value, which is not controllable from most browsers.

    The difference is only in error reporting. Both are indicative of failures. A SOAP RPC service expects to be given a SOAP document. Armed with just a browser, this isn’t possible.

    That would indicate things are set up correctly.

    Three possibilities come to mind: 1) they too are using a browser to hit the URL, which is not valid; 2) they are not passing a SOAP document in their HTTP POST or are not setting the content-type to text/xml; 3) SOAP RPC has interoperability issues, which have been covered many times in the forums. Perhaps they are encountering one of these.


    #soa
    #API-Management
    #webMethods


  • 8.  RE: SOAPException: [ISS.0088.9112] An Exception was thrown in the server

    Posted Fri February 29, 2008 10:25 PM

    Before you use http://{IS_Server}:5555/soap/rpc you have to understand how is working.

    1. You use http://{IS_Server}:5555/soap/rpc to invoke an existing IS service
    2. In order to do so, you can generate a WSDL file from IS flow/java service: select IS service/ Click Tools and then Generate WSDL …; You will have options to select how you want to invoke you web service Protocol (SOAP-RPC; SOAP-MSG; HTTP-POST; HTTP-GET) and Transport (HTTP/HTTPS).
    3. Using generated WSDL you can generate the right SOAP client to test.

    Watch carefully location in generated WSDL … if you want to invoke from Browser (that HTTP-GET) you shouldn’t use http://{IS_Server}:5555/soap/rpc but http://{IS_Server}:5555/invoke

    I think you have this NullPointerException because some mandatory elements required by http://{IS_Server}:5555/soap/rpc are missing since you just called them from Browser or a client that doesn’t supply all required parameters. That’s where WSDL cames into play … if you are familiar with Web Services, generated WSDL gives you all you need to invoke an IS service via soap/rpc!


    #soa
    #API-Management
    #webMethods


  • 9.  RE: SOAPException: [ISS.0088.9112] An Exception was thrown in the server

    Posted Tue April 28, 2015 08:31 AM

    Hi, Has anyone implemeneted SOAP over HTTP using SOAP Plugin in UM(9.7) ?


    #API-Management
    #soa
    #webMethods


  • 10.  RE: SOAPException: [ISS.0088.9112] An Exception was thrown in the server

    Posted Wed April 29, 2015 12:26 PM

    I recommend you open a new thread with this question under the Universal Messaging forum.


    #API-Management
    #webMethods
    #soa


  • 11.  RE: SOAPException: [ISS.0088.9112] An Exception was thrown in the server

    Posted Thu April 30, 2015 05:36 AM