私は現在、SpringSOAPサーバープロジェクトに取り組んでいます。ここでSpringのスタートガイドから始めました http://spring.io/guides/gs/produce-web-service/ 基本的なSOAPサービス。
デフォルトのSOAPプロトコルはSOAP v1.1です。おそらく注釈を介してプロトコルをv1.2に設定する方法はありますか?
_@Endpoint
_クラスで@BindingType(javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING)
アノテーションを試しましたが、機能しないようです。
@Endpoint(value = SOAPBinding.SOAP12HTTP_BINDING)
も設定しようとしましたが、起動時のログに見られるように、これも機能しません
_INFO --- [nio-8080-exec-1] o.s.ws.soap.saaj.SaajSoapMessageFactory :
Creating SAAJ 1.3 MessageFactory with SOAP 1.1 Protocol
_
もちろん、SOAPリクエストをサーバーに投稿すると、次のエラーが発生します
_2015-01-19 15:50:17.610 ERROR 20172 --- [nio-8080-exec-1] c.Sun.xml.internal.messaging.saaj.soap : SAAJ0533: Cannot create message: incorrect content-type for SOAP version. Got application/soap+xml;
charset=utf-8, but expected text/xml
2015-01-19 15:50:17.611 ERROR 20172 --- [nio-8080-exec-1] c.Sun.xml.internal.messaging.saaj.soap :
SAAJ0535: Unable to internalize message
2015-01-19 15:50:17.617 ERROR 20172 --- [nio-8080-exec-1] a.c.c.C.[.[.[.[messageDispatcherServlet] :
Servlet.service() for servlet [messageDispatcherServlet] in context with path [] threw exception [R
equest processing failed; nested exception is org.springframework.ws.soap.SoapMessageCreationException: Could not create message from InputStream: Unable to internalize message; nested exception is com.Sun.xml.internal.messaging.saaj.SOAPExceptionImpl: Unable to internalize message] with root cause
com.Sun.xml.internal.messaging.saaj.soap.SOAPVersionMismatchException: Cannot create message: incorrect content-type for SOAP version. Got: application/soap+xml; charset=utf-8 Expected: text/xml
at com.Sun.xml.internal.messaging.saaj.soap.MessageImpl.init(Unknown Source)
at com.Sun.xml.internal.messaging.saaj.soap.MessageImpl.<init>(Unknown Source)
at com.Sun.xml.internal.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Unknown Source)
at com.Sun.xml.internal.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.createMessage(Unknown Source)
_
どんな助けでも大歓迎です。
ありがとう!
Spring-WSとJAX-WSのアノテーションを混在させています(パッケージjavax.xml.ws
)。それはうまくいきません。 SOAP 1.2を使用するようにSpring-WSを構成するには、次のBean定義を追加します。
@Bean
public SaajSoapMessageFactory messageFactory() {
SaajSoapMessageFactory messageFactory = new SaajSoapMessageFactory();
messageFactory.setSoapVersion(SoapVersion.SOAP_12);
return messageFactory;
}
MessageFactory Beanがシングルトンスコープでnotの場合、SaajSoapMessageFactoryのafterPropertiesSet()メソッド)Beanのインスタンス化では呼び出されません。
afterPropertiesSet()メソッドは、内部メッセージファクトリを設定します。したがって、messageFactory Beanに独自のスコープがある場合は、次のように内部メッセージファクトリを設定する必要があります。
@Bean
@Scope("custom-scope")
public SaajSoapMessageFactory messageFactory() {
SaajSoapMessageFactory messageFactory = new SaajSoapMessageFactory();
messageFactory.messageFactory = MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL);
return messageFactory;
}