1

メソッドで画像やその他の文字列データを受信する必要があるApache cxf RESTサービスがあります。そのために、このようなサービス定義を作成しました。

@Override
@POST
@Path("attach/{formId}/{instanceId}")
@Consumes("multipart/mixed")
@Produces("application/xml")
public UploadResult attach(@FormParam("username") @WebParam(name = "username") String user,
                           @FormParam("password") @WebParam(name = "password") String password,
                           @PathParam("formId") @WebParam(name = "formId") String formId,
                           @PathParam("instanceId") @WebParam(name = "instanceId") String instanceId,
                           @FormParam("group") @WebParam(name = "group") String group,
                           @FormParam("data") @WebParam(name = "data") byte[] data,
                           @FormParam("metadata") @WebParam(name = "metadata") byte[] metadata)
    throws PDProcessingException,
    PDSecurityException
{
    return svc.attach( user, password, formId, instanceId, group, data, metadata );
}

クライアントでこのメソッドを使用しようとしましたが、機能せず、サポートされていない 415 メディアタイプが返されます。Wiztools.org RestClient と、このようなメソッドを呼び出すテストクライアントコードで試しました

public static String attach(String username, String hashedpassword, String attachmentUri) {

    String retVal = "";
    HttpClient client = new DefaultHttpClient();
    HttpPost post = new HttpPost("http://192.168.101.27/pdxapi/service/rest/ClientApp/attach/DE_OJ_PDIX_TEST/SRSQS.0");
    try {
        String hashedPw = DigestFactory.calculatePasswordHash(hashedpassword);

        File file = new File(attachmentUri);
        if (file == null || !file.exists()){
            throw new RuntimeException("there is no file " + attachmentUri);
        }
        MultipartEntity entity = new MultipartEntity();
        entity.addPart("username", new StringBody(username));
        entity.addPart("password", new StringBody(hashedPw));
        FileBody fileBody = new FileBody(file,"image/jpeg");
        entity.addPart("data",fileBody);

        post.setEntity(entity);
        HttpResponse response = client.execute(post);
        if (response.getEntity() == null){

            retVal = "";                
        }
        else{
            BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
            StringBuffer sb = new StringBuffer();
            String line = "";
            while ((line = rd.readLine()) != null) {
                sb.append(line);
            }               
            retVal = sb.toString();             
        }

    } catch (IOException e) {
        System.out.print("exception " + e.getMessage());
    }
    return retVal;
}

アノテーション @Consumes("multipart/form-data") も試しましたが、結果は同じでした。何かアドバイス?

ありがとう

4

1 に答える 1