Hi All,
I am new to
SOAP so please forgive me if I mix apples and oranges here.
I have a
java web app that uses soap and I need to parse a SoapMessage object. I would like to use the parse method of a SAXParser object to do this.
I have found a tutorial on using a SAXParser by extending an org.xml.sax.helpers.DefaultHandler class, but the example expects a user to parse a file, not a SOAPMessage. The parse method seems to expect a path to a file, and I am having trouble finding resources on making this work for a SOAPMessage. A lot of sites recommend using Axis, but I must work with SOAP as this is how another app I communicate with is set up.
Could anyone point me at a good resource that I could use that will help me to parse a javax.xml.soap.SOAPMessage object using SAX ?
Thanks!
Kim