It's not a secret anymore!
The moose likes Web Services and the fly likes How to Create a SOAP web service that takes in a single name field Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Web Services
Reply Bookmark "How to Create a SOAP web service that takes in a single name field" Watch "How to Create a SOAP web service that takes in a single name field" New topic
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
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How to Create a SOAP web service that takes in a single name field
 
Similar Threads
Android web service client issue
adding arbitary xml to soap headers using SAAJ
SOAP Fault for SOAP Action property
unable to connect to .Net web service using axis with java
KSoap2 question, please reply