RE: Using Xerces to parse a SOAP response

2001-07-31 Thread aclarkdc
Response resp = call.invoke( url, ""); String xml = (String)((MimeBodyPart)resp.getBodyPart(0)).getContent(); This will get you the whole envelope as an XML string which you can parse into a DOM and traverse as needed. __ Do You Yahoo!? Make intern

QNameSerializer

2001-08-04 Thread aclarkdc
Could someone please give an example of when the above class would be used? I don't understand its purpose. Thanks! __ Do You Yahoo!? Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.yahoo.com/

Serializers

2001-08-04 Thread aclarkdc
Suppose I have an object of type Pkg.ClassName which I have written a Serializer for. I want to pass this object as an input parm to a SOAP call. Should my request look like this: xyz 123 or this: xyz 123 or neither of the above? Thanks!