1
동적 클라이언트의 https URL에서 WSDL을로드하기 전에 모든 SSL 오류가 발생하지 않도록 HttpConduit에 적절한 구성을 설정해야합니다. docs에 따르면 우리는 도관을 하드 코드 할 수 있지만 프로그래밍 방식으로 수행 할 수는 없습니다. DynamicClientFactory
에 Client
개체를 만들기 전에 HttpConduit을 확보 할 수있는 방법이 있습니까?CXF Dynamic Client에서 WSDL을로드하기 전에 HttpConduit에 액세스
JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance();
//Need to get HttpConduit here before the client is created, how?
Client client = dcf.createClient(wsdlUri);
// Can access http conduit only after client is created
HTTPConduit conduit = (HTTPConduit) client.getConduit();
'''HttpConduit'''을 설정할 때 상관 없습니다. 클라이언트가 사용될 때 사용됩니다. 그래서 클라이언트 생성 후에도 설정할 수 있습니다. –