自分で構築した REST WS を呼び出そうとしています。以下は、クライアント側の私のコードです。サーバー側では、この呼び出しは正常に完了し、デバッガーで確認したい引数を確認できます。メソッドは POST で、XML 引数を持ち、JSON を返します。私はJavaとJerseyを使用しています。
このバージョンの Jersey を使用しています: jersey-client-1.0.3.jar jersey-core-1.0.3.jar jersey-json-1.0.3.jar jersey-server-1.0.3.jar
私はそれを簡単にアップグレードすることはできません。それは私次第ではありません。
package com.company.module.test;
import java.net.URI;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.UriBuilder;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.api.client.config.ClientConfig;
import com.sun.jersey.api.client.config.DefaultClientConfig;
import com.company.common.DateUtil;
import com.company.module.input.AssetOperation;
import com.company.module.input.AssetOperationData;
public class MainProg002 {
public static void main(String[] args) throws Exception {
ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
WebResource service = client.resource(getBaseURI());
AssetOperationData data = new AssetOperationData();
AssetOperation op1 = new AssetOperation();
op1.setAssetID("1234");
op1.setDate(DateUtil.getDate(2013, 12, 22));
op1.setOperation("pause");
AssetOperation op2 = new AssetOperation();
op2.setAssetID("5050");
op2.setDate(DateUtil.getDate(2013, 12, 5));
op2.setOperation("resume");
data.getAssetOperations().add(op1);
data.getAssetOperations().add(op2);
service.path("Asset").entity(data, MediaType.APPLICATION_XML).post(AssetOperationData.class, data);
}
private static URI getBaseURI() {
return UriBuilder.fromUri("http://localhost:8080/module/service").build();
}
}
問題は、クライアントがクライアント側で一部のオブジェクトを適切に非整列化できないことです。以下は私が得る例外です。XSDの要素の名前空間と関係があると思いますか?! クライアントに特定の XSD を使用するように指示する方法がわかりません。また、この場合は RESTful サービスが JSON を返すため、それがまったく必要かどうかもわかりません。また、戻り値からではなく、引数からの要素である「入力」が例外に言及されているという事実に戸惑っていますか?!
Exception in thread "main" javax.ws.rs.WebApplicationException: javax.xml.bind.UnmarshalException
- with linked exception:
[javax.xml.bind.UnmarshalException: unexpected element (uri:"", local:"input"). Expected elements are <{http://company.com/module/input}input>]
at com.sun.jersey.core.provider.jaxb.AbstractRootElementProvider.readFrom(AbstractRootElementProvider.java:99)
at com.sun.jersey.api.client.ClientResponse.getEntity(ClientResponse.java:259)
at com.sun.jersey.api.client.ClientResponse.getEntity(ClientResponse.java:220)
at com.sun.jersey.api.client.WebResource.handle(WebResource.java:561)
at com.sun.jersey.api.client.WebResource.access$300(WebResource.java:69)
at com.sun.jersey.api.client.WebResource$Builder.post(WebResource.java:499)
at com.company.module.test.MainProg002.main(MainProg002.java:36)
Caused by: javax.xml.bind.UnmarshalException
- with linked exception:
[javax.xml.bind.UnmarshalException: unexpected element (uri:"", local:"input"). Expected elements are <{http://company.com/module/input}input>]
at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.handleStreamException(UnmarshallerImpl.java:435)
at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:372)
at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:342)
at com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider.readFrom(JSONRootElementProvider.java:110)
at com.sun.jersey.core.provider.jaxb.AbstractRootElementProvider.readFrom(AbstractRootElementProvider.java:97)
... 6 more
Caused by: javax.xml.bind.UnmarshalException: unexpected element (uri:"", local:"input"). Expected elements are <{http://company.com/module/input}input>
at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallingContext.handleEvent(UnmarshallingContext.java:662)
at com.sun.xml.bind.v2.runtime.unmarshaller.Loader.reportError(Loader.java:258)
at com.sun.xml.bind.v2.runtime.unmarshaller.Loader.reportError(Loader.java:253)
at com.sun.xml.bind.v2.runtime.unmarshaller.Loader.reportUnexpectedChildElement(Loader.java:120)
at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallingContext$DefaultRootLoader.childElement(UnmarshallingContext.java:1063)
at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallingContext._startElement(UnmarshallingContext.java:498)
at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallingContext.startElement(UnmarshallingContext.java:480)
at com.sun.xml.bind.v2.runtime.unmarshaller.InterningXmlVisitor.startElement(InterningXmlVisitor.java:75)
at com.sun.xml.bind.v2.runtime.unmarshaller.StAXStreamConnector.handleStartElement(StAXStreamConnector.java:246)
at com.sun.xml.bind.v2.runtime.unmarshaller.StAXStreamConnector.bridge(StAXStreamConnector.java:180)
at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:370)
... 9 more
Caused by: javax.xml.bind.UnmarshalException: unexpected element (uri:"", local:"input"). Expected elements are <{http://company.com/module/input}input>
... 20 more
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
どんな助けにもとても感謝しています。
クライアント側:
1 * Out-bound request
1 > POST http://localhost:8080/module/service/Asset
1 > Content-Type: application/xml
1 >
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><input xmlns="http://company.com/module/input"><item><assetID>1234</assetID><date>2014-01-22-05:00</date><operation>pause</operation></item><item><assetID>5050</assetID><date>2014-01-05-05:00</date><operation>resume</operation></item></input>
1 < 200
1 < Transfer-Encoding: chunked
1 < Content-Type: application/json
1 < Server: Apache-Coyote/1.1
1 < Date: Sat, 09 Nov 2013 20:23:22 GMT
1 <
{"error":"","id":"10"}
1 * In-bound response
これは私の方法がどのように見えるかです。
@POST
@Consumes(MediaType.APPLICATION_XML)
@Produces(MediaType.APPLICATION_JSON)
public AssetResult manageAssets(AssetOperationData data) {
LogProvider.logInfo(this, "BEGIN");
LogProvider.logInfo(this, "Found POST data = " + data);
AssetResult result = new AssetResult();
result.setId(10);
LogProvider.logInfo(this, "END");
return result;
}