Dear Friends
It is my pleasure to be with u now, as it is my first time to send anythread here.
I face an Issue which is:
I’m creating a Web Service which Invokes within it a Flow Service
The Flow Service is Working correctly.
I added before and after it the needed Built In functions that makes it a Web Service that deals with SOAP Message.
The Input / Output are document Types with Namespaces ,
The WSDL is Created with No Errors.
The Web Connector is Done smoothly.
But while Testing the Web Service, It works v.well, Until it reaches the Built in Function → pub.client:soapHTTP It shows me error → [ISS.0088.9142] Invalid Body Entry. SOAP Body Entries must have a namespace name.
What makes me confised is that i feel that the SOAP Messae is follwoing the Standards in the Documentation !!! ???
Using IS 6.5 SP2 with WebSvcsXML_Fix2, I whipped up a 2-line test service that used pub.soap.utils:stringToSoapData to convert your sample soap doc to a soapdata object and then used pub.client:soapHTTP to post it to my local server. No error messages were thrown.
What version of IS are you using? Are you sure the error is coming from the pub.client:soapHTTP call?
Those errors are specific to your application. Apparently, your invoke of SalesOrderSOAP.Adapters.BusinessFunctions:F4211FSBeginDoc is not providing the correct data. If you believe that the correct data is in your soap request, then the issue most likely lies with how you are extracting the data from the soap body and using it to invoke the adapter service.
Build a simple test harness that uses pub.soap.utils:stringToSoapData to build the soap request that believe you are sending and then sends this soap request (soapRequestData object) to your wrapper service which is extracting data from the body and invoking your adapter service.
You can use the “step into” feature to see what is happenging in your wrapper service.
Dear
As the Specific Services Invoked Standalone without wrapping it to be a Web Service, It works great … with the same input data equivalent to what is included in the SOAP Message …
so could u help me know the steps and tricks needed to convert a service to be a Web Service (SOAP - Message) …
even i follwoed the webMethods documentation steps …
Thanks alot