web-dev-qa-db-ja.com

Axis1.4を使用してカスタムSOAPヘッダーを設定

Axisを使用して.NET2.0Webサービスを利用しようとしています。 Eclipse WSTプラグインを使用してWebサービスクライアントを生成しましたが、これまでのところ問題はないようです。

ここで期待されるSOAPヘッダー:

<soap:Header>
<Authentication xmlns="http://mc1.com.br/">
    <User>string</User>
    <Password>string</Password>
</Authentication>
</soap:Header>

Axisクライアントからこのヘッダーを構成する方法に関するドキュメントは見つかりませんでした。 Visual Studio C#Express 2008を使用してクライアントを生成すると、2つの文字列属性(AuthenticationUser)を持つPasswordという名前のクラスが生成され、すべてのクライアントメソッドがオブジェクトを受け取りますこのクラスの最初のパラメーターとして使用されますが、AxisWSクライアントでは発生しませんでした。

クライアント呼び出しでこのヘッダーを設定するにはどうすればよいですか?

13
razenha

多分あなたはorg.Apache.axis.client.Stub.setHeaderメソッドを使うことができますか?このようなもの:

MyServiceLocator wsLocator = new MyServiceLocator();
MyServiceSoap ws = wsLocator.getMyServiceSoap(new URL("http://localhost/MyService.asmx"));

//add SOAP header for authentication
SOAPHeaderElement authentication = new SOAPHeaderElement("http://mc1.com.br/","Authentication");
SOAPHeaderElement user = new SOAPHeaderElement("http://mc1.com.br/","User", "string");
SOAPHeaderElement password = new SOAPHeaderElement("http://mc1.com.br/","Password", "string");
authentication.addChild(user);
authentication.addChild(password);
((Stub)ws).setHeader(authentication);

//now you can use ws to invoke web services...
30
martsraits

AuthenticationコンテナをユーザーIDとパスワードで表すオブジェクトがある場合は、次のように実行できます。

import org.Apache.axis.client.Stub;

//...

MyAuthObj authObj = new MyAuthObj("userid","password");
((Stub) yourServiceObject).setHeader("urn://your/name/space/here", "partName", authObj);
3

私は同じ問題を抱えており、以下の断片によって解決されました:

ServiceSoapStub clientStub = (ServiceSoapStub)new ServiceLocator().getServiceSoap(url);
org.Apache.axis.message.SOAPHeaderElement header = new org.Apache.axis.message.SOAPHeaderElement("http://www.abc.com/SSsample/","AuthHeader");
SOAPElement node = header.addChildElement("Username");
node.addTextNode("aat");
SOAPElement node2 = header.addChildElement("Password");
node2.addTextNode("sd6890");

((ServiceSoapStub) clientStub).setHeader(header);
1
ammu