我寻找一个简单的方法来构建肥皂请求,以便消费.NET网络服务,但我发现几乎没有关于这个主题的文件。默认的图书馆 javax.xml.soap 在如何构建该请求方面非常模糊。
是否有图书馆可以让我的生活更加轻松?
我找到这个代码的某处, 我现在不知道它是如何使用的, 或者它来自什么图书馆, 但我非常喜欢类似的东西, 而不是用 DOM 手动构建整个 xml 信息, 或者类似的东西(因为它把简单从 SOAP 中带走)
SoapRequestBuilder s = new SoapRequestBuilder();
s.Server = "127.0.0.1"; // server ip address or name
s.MethodName = "ConcatWithSpace";
s.XmlNamespace = "http://tempuri.org/";
s.WebServicePath = "/SimpleService/Service1.asmx";
s.SoapAction = s.XmlNamespace+s.MethodName;
s.AddParameter("one", "David");
s.AddParameter("two", "Hobbs");
String response = s.sendRequest();
这是我必须发送的信息表格:
POST /webservice/TimrService.asmx HTTP/1.1
Host: not.important.host
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/GetTimetableForBachelorYear"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetTimetableForBachelorYear xmlns="http://tempuri.org/">
<year>I1</year>
<halfYear>A</halfYear>
</GetTimetableForBachelorYear>
</soap:Body>
</soap:Envelope>