Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: sdbI get a peer authentication error when I use an http node to GET a file from a URL to Sharepoint.
To investigate I ran the same on the linux server command line using wget, and it turns out there is an Entrust certificate required for the server to retrieve the file, unless I use the "no-check-certificate" switch, in which case the absence of the certificate is ignored. I can then download the file using my credentials for Sharepoint.
How can I get the http node to behave the same way and ignore the fact that the server has no certificate?
The precise error is
peer not authenticated
Stack Trace:
sun.security.ssl.SSLSessionImpl.getPeerCertificate s(SSLSessionImpl.java@407))
org.apache.http.conn.ssl.AbstractVerifier.verify(A bstractVerifier.java@126))
org.apache.http.conn.ssl.SSLSocketFactory.connectS ocket(SSLSocketFactory.java@437))
org.apache.http.impl.conn.DefaultClientConnectionO perator.openConnection(DefaultClientConnectionOper ator.java@180))
org.apache.http.impl.conn.ManagedClientConnectionI mpl.open(ManagedClientConnectionImpl.java@294))
org.apache.http.impl.client.DefaultRequestDirector .tryConnect(DefaultRequestDirector.java@643))
org.apache.http.impl.client.DefaultRequestDirector .execute(DefaultRequestDirector.java@479))
org.apache.http.impl.client.AbstractHttpClient.exe cute(AbstractHttpClient.java@906))
org.apache.http.impl.client.AbstractHttpClient.exe cute(AbstractHttpClient.java@805))
com.lavastorm.brain.node.http.HttpNode.executeRequ est(HttpNode.java@443))
com.lavastorm.brain.node.http.HttpNode.processAll( HttpNode.java@660))
com.lavastorm.brain.execution.java.node.NodeWrappe r.nodeProcess(NodeWrapper.java@527))
com.lavastorm.brain.execution.java.node.NodeWrappe r.run(NodeWrapper.java@769))
com.lavastorm.brain.execution.java.node.NodeWrappe r.main(NodeWrapper.java@1466))
Simon