我正在寻找一种简单的方法来构建一个SOAP请求以便使用.NET Web服务,但我发现很少甚至没有关于这个主题的文档。默认库javax.xml.soap在构造请求方面不明确。
是否有可用的图书馆让我的生活更轻松?
我在某个地方发现了这段代码,我现在不知道它是如何使用的,或者是它来自哪个库,但我非常喜欢类似的东西,而不是使用DOM或类似的东西手动构建整个xml消息(因为它需要Simple out of 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>
答案 0 :(得分:3)
我自己是.NET开发人员,但是我们与使用我们服务之一的Java开发人员团队进行了第三方集成,我听到他们经常会参考名为wsdl2java
的代码生成工具以及一个名为SOAPUI
的测试界面。我认为它可能是这样的:http://cxf.apache.org/docs/wsdl-to-java.html。如果我理解正确,它有点像在.NET中添加Web服务引用,通过生成自动处理所有SOAP调用的类。您只需调用正确的方法并传入参数。
答案 1 :(得分:1)
查看http://docs.oracle.com/javaee/1.4/tutorial/doc/SAAJ4.html以获得一个好的SAAJ示例。