> I am desperately trying to debug a web service call from axis. Problem
> is: it is an SSL call
If you really need to look at the contents of the SSL connection, insert
an SSL proxy or similar into the connection. You will need to generate
(or buy) a certificate for the proxy, and install it (the public key) in
the client (the web browser).
/Thomas

Signature
The comp.lang.java.gui FAQ:
ftp://ftp.cs.uu.nl/pub/NEWS.ANSWERS/computer-lang/java/gui/faq
http://www.uni-giessen.de/faq/archiv/computer-lang.java.gui.faq/
Axel Bock - 16 May 2006 12:10 GMT
Well, that's one solution. I would like to see the XML code which Axis
sends to the HTTP layer. That would actually be the only thing which
helps me, cause I need this for logging purposes (later on), too :)
greetings & thanks,
Axel.
Thomas Kellerer - 16 May 2006 12:28 GMT
> Well, that's one solution. I would like to see the XML code which Axis
> sends to the HTTP layer. That would actually be the only thing which
> helps me, cause I need this for logging purposes (later on), too :)
Axis 1.3 includes a TCP Monitor which does exactly that.
Thomas

Signature
It's not a RootKit - it's a Sony
Axel Bock - 16 May 2006 13:11 GMT
yes, right, I know, BUT that's an _external_ solution. I want to see
the code from _within_ my program.
Also the TCP monitor cannot ever look into SSL connections.
paulstaylor@gmail.com - 19 May 2006 18:17 GMT
Try this:
Message msg = msgContext.getCurrentMessage();
System.out.println("SOAP=>"+msg.getSOAPPartAsString());
> yes, right, I know, BUT that's an _external_ solution. I want to see
> the code from _within_ my program.
> Also the TCP monitor cannot ever look into SSL connections.
Axel Bock - 22 May 2006 07:50 GMT
ah, code :))
Thanks a lot, I'll try that soon. Right now we discovered a blocker in
the code which short-stopped development :(
I will be coming back to you if it worked or not.
Axel Bock - 23 May 2006 15:53 GMT
hm. well, It didn't work :)
I have a call object, and its getCurrentContext() does return
something, but the getCurrentMessage() of that one does return null,
alas. I don't know why.
any other ideas? :))
cheers & thanks,
Axel.