| Author |
How to Create a SOAP web service that takes in a single name field
|
Christopher Rajan
Greenhorn
Joined: Aug 28, 2012
Posts: 3
|
|
Create a SOAP web service that takes in a single name field ----Related to JAVA
<soap:Envelope
<soap:Body>
<getNameRequest>
<name>Robert</name>
</getNameRequest>
<soap:Envelope>
|
 |
Surender Suri
Ranch Hand
Joined: May 28, 2010
Posts: 41
|
|
There are two ways to create a webservice, top-down and bottom-up. In top-down approach, you start with a XSD, WSDL and generate the necessary stub classes using some web service code generation tool like wsdl2java etc... In bottom-up approch you start with a Java method, and generate the WSDL from it. Either way you need WSDL and webservice engine to deploy the service.
You can develop webservice using axis2, metro etc . If you are new to webservice, start with some basics and understand the terminology first : go through WebServicesFaq
|
Thanks,
Suri
|
 |
 |
|
|
subject: How to Create a SOAP web service that takes in a single name field
|
|
|