This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi, I have written a client to a webservice as a stand-alone Java application. I would now like to make the same web based. My question is : 1. Can the SOAP functions work from a servlet? 2. Can the SOAP functions work from an applet (If I use Swing for my GUI) ? Thanks, Anoop
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12268
1
posted
0
"1. Can the SOAP functions work from a servlet?" Sure - in fact the Apache SOAP package has several examples "2. Can the SOAP functions work from an applet (If I use Swing for my GUI) ?" A SOAP message is just plain HTML so there is no reason an applet could not talk to a SOAP server - remember you would have to make the XML parser available to the applet. Swing or not-Swing makes no difference. Loads of SOAP references at: http://www.lanw.com/books/javasoap/soapref.htm Bill
[This message has been edited by William Brogden (edited June 28, 2001).]