2
爲客戶創建Web服務的Apache CXF的客戶,如果他們使用JaxWsProxyFactoryBean,他們需要的端點地址和SEI代碼。關於提供端點地址沒有問題,但您如何提供SEI?你只需將一個界面輸出到一個罐子裏,然後把罐子交給客戶?每次更換SEI時,都必須與所有客戶聯繫並再次提供罐子?的Apache CXF - 提供SEI給客戶
我的意思是在下面的例子中IDataService接口:
public static void main(String[] args) throws SomeException { JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean(); factory.getInInterceptors().add(new LoggingInInterceptor()); factory.getOutInterceptors().add(new LoggingOutInterceptor()); factory.setServiceClass(IDataService.class); factory.setAddress("http://localhost:8080/WSTest/services/dataService"); IDataService client = (IDataService) factory.create(); }