how to view internal jaxws logs in tomcat
Posted
by prmatta
on Stack Overflow
See other posts from Stack Overflow
or by prmatta
Published on 2010-02-12T17:47:02Z
Indexed on
2010/05/16
2:10 UTC
Read the original article
Hit count: 284
I have a web service that is deployed in tomcat, and it is rejecting a soap request over https. However, I can't see any logs as to why it is doing so.
I have the following set in my service endpoint implementation file:
System.setProperty("javax.net.debug", "all");
System.setProperty("java.security.debug", "all");
And I pass the following parameters to tomcat:
-Dcom.sun.xml.ws.transport.http.HttpAdapter.dump=true -Dcom.sun.xml.ws.transport.http.client.HttpTransportPipe.dump=true
Is there anything else I need to do to see the internal jaxws logs? Are there some other loggers I need to enable?
© Stack Overflow or respective owner