Fixed URL handle with com.sun
This commit is contained in:
parent
7518881a75
commit
e20e6ce3d8
|
@ -250,7 +250,8 @@ public class DefaultAuthorizationProxy implements AuthorizationProxy {
|
|||
|
||||
StringBuilder callUrl = new StringBuilder(getInternalEnpoint(infrastructureHash)).append(methodPath);
|
||||
|
||||
URL url = new URL(callUrl.toString());
|
||||
URL url = new URL(null, callUrl.toString(), new sun.net.www.protocol.https.Handler());
|
||||
|
||||
HttpURLConnection connection = makeRequest(url, "PUT", false);
|
||||
connection.setDoOutput(true);
|
||||
connection.setDoInput(true);
|
||||
|
|
Loading…
Reference in New Issue