Forums Register Login

Calling Web Service Method using SAAJ

+Pie Number of slices to send: Send
Dear Friends,

I have an XML document(DOM object) which should be sent to the Web Service from a java client.
I created the DOM by iterating through the JDBC ResultSet. The DOM when converted to String will display the full XML data.

I developed the following code.


I need to send the Document as SOAP message.
TestService.java is a Web Service class from which i created the WSDL. In this class, there is a method processRequest() which takes SOAPMessage type as argument.


Follwing is the WSDL generated by Axis:



My problem is, how to call this method from the java client. In Axis, we can do a setOperationName("methodName") to call a particular web service method. But when using SAAJ, how to call the particular method of the webservice since there is only provision (that i know) to send only the webservice endpoint URL.

i am using JDK 6 and Tomcat 5.5.27 with Eclipse Galileo as the editor.

Kindly provide your help.

Following is the exception i get:


Thanks,
Vijay
+Pie Number of slices to send: Send
Hi!
First, you know that SOAP encoding is discouraged by the WS-I Basic Profile, right? In your code you set the encoding style to SOAP encoding, despite the fact that in the WSDL it is Literal.

You'll make your life easier and your code more clear if you, instead of writing code to create SOAP messages use the following approach:
- From the WSDL, generate JAXB bean classes.
- After having queried the database, create the appropriate JAXB beans and insert data.
- Let JAXB marshall the data to XML (optional step, see next step).
- Insert the XML data into a SOAP message or use a JAXBSource when sending the message.

Regarding the operation name:
You have a Document/Literal style web service. This is not RPC. You send the web service a chunk of XML and, depending on the data in the XML, it selects the way to process the request. I recommend reading some about Document style messaging. Here is one article: http://www.ibm.com/developerworks/webservices/library/ws-docstyle.html
Best wishes!
I got this tall by not having enough crisco in my diet as a kid. This ad looks like it had plenty of shortening:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 4957 times.
Similar Threads
org.apache.axis.client.Call invoke method always returning string type
InstantiationException, axis error
Problem with mapping Array String into HashMap in Axis
How do I consume Web Services in Swing
creating a SOAP request from WSDL
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 03:05:45.