我已经按照spring上的教程使用了wsdl: here
我可以正常工作,但是当我尝试发送请求时,我得到了答复:
Invalid Content-Type. Could be an error message instead of a SOAP message
Invalid Content-Type:text/html
服务器期望使用text/xml
,该如何更改?我正在使用这样的东西:
AddDeliveryResponse response = (AddDeliveryResponse) getWebServiceTemplate()
.marshalSendAndReceive("http://tempuri.org/",delivery,
new SoapActionCallback(
"http://tempuri.org/Service/AddDelivery"));