Hi,
Following options enable logging of all communication to the console. Set these options in the code, as command line parameter using -D or as environment variable:
static {
//
System.setProperty("com.sun.xml.ws.transport.http.client.HttpTransportPipe.dump", "true");
System.setProperty("com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.dump", "true");
System.setProperty("com.sun.xml.ws.transport.http.HttpAdapter.dump", "true");
System.setProperty("com.sun.xml.internal.ws.transport.http.HttpAdapter.dump", "true");
//System.setProperty("javax.net.ssl.trustStore", System.getProperty("user.dir") + "\\mycertificates");
//System.setProperty("javax.net.ssl.trustStorePassword", "JavaLu");
//System.setProperty("javax.net.ssl.keyStore", System.getProperty("user.dir") + "\\mycertificates");
//System.setProperty("javax.net.ssl.keyStorePassword", "JavaLu");
}
Best regards,
Huseyin
