1
從https URL爲我的動態客戶端加載WSDL之前,我需要在HttpConduit上設置適當的配置以避免所有SSL錯誤。根據docs,我們可以硬編碼管道,但不確定以編程方式執行。有沒有辦法在DynamicClientFactory
上創建Client
對象之前,我可以獲得HttpConduit?在CXF動態客戶端上加載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''時無關緊要當客戶端正在使用時,它將被使用。所以你也可以在創建客戶端之後進行設置。 –