Java.security.PrivilegedActionException when deleting web services via https

I get the following exception when I try to use a web service through https using a java client:

com.sun.xml.internal.messaging.saaj.client.p2p.HttpSOAPConnection post SEVERE: SAAJ0009: Error sending message com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl: java.security.PrivilegedActionException: com.sun.xml .internal.messaging.saaj.SOAPExceptionImpl: Error sending message to com.sun.xml.internal.messaging.saaj.client.p2p.HttpSOAPConnection.call (HttpSOAPConnection.java:157) when

Also, if I use the same code for http, it works fine. Web services are deployed to the weblogic server. Can someone help me in solving the problem.

Relations Gurleen.

+6
source share
1 answer

An exception means that the message cannot be sent. This is a firewall issue, for example for the same question: http://www.coderanch.com/t/223309/Web-Services/java/Sending-Soap-requests-thru-Https

0
source

Source: https://habr.com/ru/post/897652/


All Articles