• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

SOAP in an applet or servlet ?

 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"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).]
 
This. Exactly this. This is what my therapist has been talking about. And now with a tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic