公に公開されたサービスのクライアントを作成しようとしています。生の XMLを (Java 文字列として)渡し、生の応答を表示するだけです。バインディングは必要ありません。
サービスはここで公開されています: http://www.webservicex.net/periodictable
次のリクエスト XMLが正しく機能することを確認しました(Soap UI 経由)。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://www.webserviceX.NET">
<soapenv:Header/>
<soapenv:Body>
<web:GetAtomicWeight>
<!--Optional:-->
<web:ElementName>Aluminium</web:ElementName>
</web:GetAtomicWeight>
</soapenv:Body>
</soapenv:Envelope>
ここでは、WS 用の Spring のテンプレート、Maven の依存関係を使用しています。
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
<version>2.1.3.RELEASE</version>
</dependency>
さて、これが私の単純な「メイン」アプリケーションです。XML 文字列を Spring に委任するだけWebServiceTemplate
で、System.out
.
package sk.xorty.ws;
import org.springframework.ws.client.core.WebServiceTemplate;
import org.springframework.ws.soap.client.core.SoapActionCallback;
import org.springframework.ws.soap.saaj.SaajSoapMessageFactory;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.SOAPConstants;
import javax.xml.soap.SOAPException;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import java.io.StringReader;
public class WsTest {
private static final String REQUEST_PERIODIC =
"<soap:Envelope xmlns:soap=\"http://www.w3.org/2003/05/soap-envelope\" xmlns:web=\"http://www.webserviceX.NET\">\n" +
" <soap:Header/>\n" +
" <soap:Body>\n" +
" <web:GetAtomicWeight>\n" +
" <web:ElementName>Aluminium</web:ElementName>\n" +
" </web:GetAtomicWeight>\n" +
" </soap:Body>\n" +
"</soap:Envelope>\n";
private static final String URL_PERIODIC = "http://www.webservicex.net/periodictable";
private final WebServiceTemplate webServiceTemplate = new WebServiceTemplate();
// send to an explicit URI
public void customSendAndReceive() throws SOAPException {
MessageFactory messageFactory = MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL);
SaajSoapMessageFactory newSoapMessageFactory = new SaajSoapMessageFactory(messageFactory);
webServiceTemplate.setMessageFactory(newSoapMessageFactory);
StreamSource source = new StreamSource(new StringReader(REQUEST_PERIODIC));
StreamResult result = new StreamResult(System.out);
webServiceTemplate.sendSourceAndReceiveToResult(URL_PERIODIC, source,
new SoapActionCallback("GetAtomicWeight"), result);
}
public static void main(String[] args) throws SOAPException {
new WsTest().customSendAndReceive();
}
}
例は実行可能です (クラスパスの上記の依存関係のみが必要です)。次のエラーがスローされます。
INFO: Creating SAAJ 1.3 MessageFactory with SOAP 1.1 Protocol
Exception in thread "main" org.springframework.ws.client.WebServiceTransportException: Not Found [404]
at org.springframework.ws.client.core.WebServiceTemplate.handleError(WebServiceTemplate.java:663)
at org.springframework.ws.client.core.WebServiceTemplate.doSendAndReceive(WebServiceTemplate.java:587)
at org.springframework.ws.client.core.WebServiceTemplate.sendAndReceive(WebServiceTemplate.java:537)
at org.springframework.ws.client.core.WebServiceTemplate.doSendAndReceive(WebServiceTemplate.java:492)
at org.springframework.ws.client.core.WebServiceTemplate.sendSourceAndReceiveToResult(WebServiceTemplate.java:436)
at sk.xorty.ws.WsTest.customSendAndReceive(WsTest.java:38)
at sk.xorty.ws.WsTest.main(WsTest.java:43)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)
編集: リクエストの正しい値は次のとおりです。
private static final String REQUEST_PERIODIC = "<web:GetAtomicWeight xmlns:web=\"http://www.webserviceX.NET\">\n" +
" <!--Optional:-->\n" +
" <web:ElementName>Aluminium</web:ElementName>\n" +
" </web:GetAtomicWeight>";