Hi,
I have a requirement for develop a web service between two applications. it's just like transfer data between two applications.
the data will come in the form of xml from one application i have to extrace the data from xml and store in another application.
my method will take input as a xml
String .
the code look like
public String
test(String pXML) throws Exception{
//convert the string to document
//get the data from document object
//return the S or F (Sucess or Failur)
}
how i can make the above method as web service.
any one can help which is best one either axis or ws-j
my xml look like
<Stock>
<itemCode>10</itemCode>
<price>23.000</price>
....
</Stock>
what is the format of wsdl for this xml file.
Help needed .
thanks in advance.