2

マルチパートメッセージで POST メソッドを受け取る残りの Web サービスがあります。

@Path("transferFile")     
 @POST  
@Consumes(MediaType.MULTIPART_FORM_DATA)  
@Produces(MediaType.APPLICATION_XML)  
public String multipartTest(com.sun.jersey.multipart.MultiPart data) {  
try {  
// get first body part (index 0)          
BodyPart bp = multiPart.getBodyParts().get(0);  
etc..  

今、私はそのための Java クライアントを作成しようとしています。シンプルなジャージー クライアントから始めました。

    MultiPart multiPart = new MultiPart();  
    multiPart.bodyPart( new BodyPart(wavestream,MediaType.APPLICATION_OCTET_STREAM_TYPE));  

    Client c = Client.create();  
    WebResource r = c.resource("http://127.0.0.1:8080/webapp:);
response=r.path("transferFile").type(MediaType.MULTIPART_FORM_DATA).accept(MediaType.APPLICATION_XML).post(String.class, multiPart);  

これはうまく機能します-すべて問題ありません。ただし、このクライアントが Android で動作する必要があり、そのプラットフォームで jersey を使用するのに問題があります。したがって、Androidでマルチパートメッセージを送信する通常の方法を使用しました:

    HttpClient client = new DefaultHttpClient();
 client.getParams().setParameter("http.socket.timeout", new Integer(90000)); // 90 second 

HttpPost httpPost = new HttpPost("http://127.0.0.1:8080/webapp/transferFile");
 httpPost.setHeader("Content-Type", MediaType.MULTIPART_FORM_DATA );

//tried with and without base64
 byte [] encodedWavestream = Base64.encodeBytesToBytes(wavestream);
 InputStream ins = new ByteArrayInputStream(encodedWavestream);
 InputStreamBody body = new InputStreamBody(ins, "test" );
 int send = ins.available(); 

MultipartEntity requestContent = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE ); 
requestContent.addPart("stream", body);

httpPost.setEntity(requestContent); 
HttpResponse Response = client.execute(httpPost);

これにより、サーバーから迷惑な応答が返されます。

HTTP Status 400 - Bad Request  
The request sent by the client was syntactically incorrect (Bad Request).   

サーバーのログ ファイルを確認しましたが、何もありません。したがって、このエラーの原因はわかりません。投稿式と 'multipart/form-data' content-type を使用して単純な html ページを作成しましたが、これも機能します。soapUI からの自動生成されたリクエストも機能します。クライアントが機能しないのはなぜですか? 誰でも助けることができますか?

4

1 に答える 1

1

ジャージーにはバグがあります。チャンク エンコーディングの問題を参照してください。

この問題は、一部のクライアント (iOS、Android) でのみ発生します。

Content-Type を application/octet-stream に設定すると、application/octet-stream の Jersey MessageWriter は Content-Length を設定し、チャンク トランスポート メソッドとして送信しません。

Jersey Clientの解決策があります:

ClientConfig config = new DefaultClientConfig();
config.getProperties().put(ClientConfig.PROPERTY_CHUNKED_ENCODING_SIZE, 32 * 1024);

ただし、 iOS または Android のクライアントでは機能しません。そこで、Apache File Upload をテストしました。「ストリームが予期せず終了しました」という別のバグがありました。

Oreilly アップロードのみが、すべてのクライアントに対して正しいファイルをアップロードできます。これは私のコードです:

public Object[] getParametersAndFiles(HttpServletRequest request) throws IOException {
    log.debug("OreillyUpload");
    Properties params = new Properties();
    LinkedHashMap files = new LinkedHashMap();

    File tempDirectory = new File(System.getProperty("java.io.tmpdir")); 

    MultipartParser mp = new MultipartParser(request, 1*1024*1024); // 10MB
    Part part;
    while ((part = mp.readNextPart()) != null) {
        String name = part.getName();
        if (part.isParam()) {
            // it's a parameter part
            ParamPart paramPart = (ParamPart) part;
            String value = paramPart.getStringValue();
            params.put(name, value);

            log.debug("param; name=" + name + ", value=" + value);
        }
        else if (part.isFile()) {
            // it's a file part
            FilePart filePart = (FilePart) part;
            String fileName = filePart.getFileName();
            if (fileName != null) {
                // the part actually contained a file
                File file = new File(tempDirectory,fileName);
                long size = filePart.writeTo(file);
                files.put(name, file);

                log.debug("file; name=" + name + "; filename=" + fileName +
                        ", filePath=" + filePart.getFilePath() +
                        ", content type=" + filePart.getContentType() +
                        ", size=" + size);

            }
            else {
                // the field did not contain a file
                log.debug("file; name=" + name + "; EMPTY");
            }
        }
    }

    return new Object[] {params, files};
}

そして、これはジャージー サーバー コードです (すべてのジャージー アップロード注釈 ("@FormDataParam" など) を削除する必要があることを警告します):

@POST
@Path("uploadMarkup")
@Produces(MediaType.APPLICATION_JSON)
//    @Consumes(MediaType.MULTIPART_FORM_DATA)
////    public void uploadMarkup(
//    public JSONWithPadding uploadMarkup(
//            @FormDataParam("markupFile") InputStream markupFile,
//            @FormDataParam("markupFile") FormDataContentDisposition details,
//            @FormDataParam("slideNum") int slideNum) {
public JSONWithPadding uploadMarkup(@Context HttpServletRequest request) {
    Object[] data = uploadService.getParametersAndFiles(request);
    ...
}
于 2012-03-15T08:41:22.650 に答える