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
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/
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!