我想知道是否可以使用Spring Web Services從WSDL文件創建Web服務客戶端。是否可以使用Spring-WS從WSDL文件創建WS-client? (好像不是)
我的意思是從非常WSDL,我暫時沒有任何XSD。
但我讀過Josh Long的「Spring Recipes A Problem-Solution Approach」,Hamidreza Sattari的「Spring Web Services 2 Cookbook」和教程本身(6. Using Spring Web Services on the Client),並且沒有提及此功能。
我也讀過其他帖子,如Webservice-Client: Common approach with Spring WS, JAXB and just one WSDL file?或Spring-ws client from WSDL(這裏在stackoverflow),但沒有任何進一步的結果。
我甚至要求在春季論壇的問題,但超過60後沒有任何反應寫着:Is it possible to create a WS-client from WSDL file using SWS? (It seems not)
也許這是不可能的。
謝謝。
當你說「創建一個WS客戶端」時,你是什麼意思?因爲您可以使用WebServiceTemplate類在SOAP消息中包裝任何您想要的東西。我懷疑你真的在考慮創建客戶端可以使用的POJO類。如果你在WSDL中有'type'部分,那麼你可以通過XJC編譯器運行這個WSDL,並讓你的類離開。 – kdgregory
¿沒有更多結果?你在這個過程中發現了什麼錯誤?你有什麼嘗試?請顯示一些代碼。 – Alfabravo
謝謝@kdgregory,我的意思是我想[發送和接收POJO:編組和解組](http://static.springsource.org/spring-ws/sites/2.0/reference/html/client.html #d5e1811),所以XJC就是我所需要的。 感謝Alfabravo,對我的問題表現出興趣。我唯一的問題是如kdgregory所說的那樣產生POJO。我可以[發送帶有WebServiceTemplate的WebServiceMessage](http://static.springsource.org/spring-ws/sites/2.0/reference/html/client.html#d5e1787),但是可以使用靜態String消息(用於創建使用StreamSource一個StringReader)不是我想要的。 – jbbarquero