T3 client with custom SSLSocketFactory
问题 I have my T3 client code like this: private InitialContext initContext() { Properties p = new Properties(); p.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory"); p.put(Context.PROVIDER_URL, context.providerURL); for (Map.Entry<String, String> entry : getEnvironmentProperties().entrySet()) { p.put(entry.getKey(), entry.getValue()); } InitialContext res = null; try { res = new InitialContext(p); } catch (NamingException e) { e.printStackTrace(); } return res; } My t3