You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an application that modifies the java Security stack during runtime. This includes the SSL setup. Before this happens I use Jersey to make some http (not https) calls. This causes the SSLContext to initialize
The issue is the static final field here: org.glassfish.jersey.client.internal.HttpUrlConnector
Hi,
I have an application that modifies the java Security stack during runtime. This includes the SSL setup. Before this happens I use Jersey to make some http (not https) calls. This causes the SSLContext to initialize
The issue is the static final field here:
org.glassfish.jersey.client.internal.HttpUrlConnector
This initializes the SSLContext even if the client is only used for http.
So this is called:
The default context does not get created again after that even if i modify the Security settings.
This should only happen when SSL is actually used for the first time.
The text was updated successfully, but these errors were encountered: