Hi everyone,
this topic has already been discussed a while, but none of the solutions presented worked for me.
I want to open an https connection for SOAP messages from my Domino 6.5 Server and am getting a MalformedURLException, the relevant part of the Stack Trace is:
java.net.MalformedURLException: unknown protocol: https
at java.net.URL.(URL.java:508)
at java.net.URL.(URL.java:404)
at java.net.URL.(URL.java:358)
my code up to this point looks like this:
System.setProperty(“javax.net.ssl.trustStore”,“C:\Programme\jakarta-tomcat-4.1\Keystore\server.keystore”);
System.setProperty(“java.protocol.handler.pkgs”,“com.sun.net.ssl.internal.www.protocol”);
this.url = new URL(serviceURL);<<–this is the line I get the error in
I added the provider in the java.security file in the folder [domino]\jvm\lib\security in the following way:
security.provider.3=com.sun.net.ssl.internal.ssl.Provider
I also copied the three jsse files to the jvm\lib\ext folder and added the following line to java.policy:
permission java.util.PropertyPermission “java.protocol.handler.pkgs”, “write”;
I still get the MalformedURLException.
If anyone knows how to solve this problem, he’d make me a happy man