2017-11-21 18 views
0
<soapenv:Header> 
<auth:Authentication xmlns:auth="https://memorynotfound.com/security"> 
    <auth:username>username</auth:username> 
    <auth:password>password</auth:password> 
    </auth:Authentication> 
</soapenv:Header> 

私のエンドポイントメソッドで要求ヘッダーを処理すると機能しませんでした。しかし、認証で小文字の「a」を設定すると動作します。続き は、エンドポイントの抜粋です:スプリングソープエンドポイントでソープヘッダーが解析されない

@RequestPayload GetStudentRequest request, @SoapHeader("{" + Authentication.AUTH_NS + "}authentication") SoapHeaderElement auth

答えて

0

ちょうどヘッダークラ​​スの最上部に次のスニペット@annotation値を追加します。希望があれば

@XmlRootElement(namespace = "http://www.gooogle.com", name = "Authentication") 
public class Authentication{ 
..... 
} 
関連する問題