.NET Web サービスを使用するために SOAP 要求を作成する簡単な方法を探していますが、この件に関するドキュメントはほとんどまたはまったく見つかりませんでした。デフォルトのライブラリ 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>