2012-07-10 211 views
2

我可以在SOAP UI中执行POST请求。但我不能从java做同样的事情,尝试了大约5-6个小时,并且找不到优胜组合。这里是我的文章中,我试图让工作XSD架构部分:构建http POST请求的问题

<method name="POST"> 
<request> 
<param name="username" style="query" type="xs:string"/> 
<param name="id" style="query" type="xs:long"/> 
<representation mediaType="multipart/form-data"/> 
</request> 

肥皂UI我只是C/P有效载荷:

<?xml version="1.0" encoding="UTF-8"?> 
<ImageList xmlns="http://someurl/1.0/image" > 
    <Image> 
    <Name>sampler.jpg</Name> 
    <Filename>C:\\sampler.jpg</Filename> 
    <Label> 
     <Value>Test image</Value> 
    </Label> 
    <ImageMetadata> 
     <Format>jpg</Format> 
     <Height>300</Height> 
     <Width>400</Width> 
    </ImageMetadata> 
    </Image> 
</ImageList> 

然后我在附件选项卡中添加附件。 NameContent-Type,等我得到有效的响应代码,但是我不设法用java做的一样,这里是我的了:

HttpRequestBase post = new HttpPost(); 
    HttpClient client = new DefaultHttpClient(); 
    try { 
     post.setURI(new URI(URL)); 
    } catch (URISyntaxException e1) { 
     // TODO Auto-generated catch block 
     e1.printStackTrace(); 
    } 
    // set number of retries 
    post.getParams().setParameter(HttpMethodParams.RETRY_HANDLER, new DefaultHttpMethodRetryHandler(1, false)); 
    HttpResponse response = null; 
    HttpPost post = (HttpPost) method; 
    try { 
    post.setURI(new URI(URL)); 
    } catch (URISyntaxException e1) { 
    // TODO Auto-generated catch block 
    e1.printStackTrace(); 
    } 

    FileBody uploadFilePart = new FileBody(new File("C:\\sampler.jpg")); 
    MultipartEntity reqEntity = new MultipartEntity(); 
    reqEntity.addPart("upload-file", uploadFilePart); 

    //payload 
    String requestBody = fileToString("src/main/resources/imageBodyPayload.xml"); 

    HttpParams parameters = new BasicHttpParams(); 
    parameters.setLongParameter("id", 951); 
    parameters.setParameter("username", "test"); 

    post.setParams(parameters); 
    post.setEntity(new StringEntity(requestBody, "multipart/form-data", HTTP.UTF_8)); 
    response = client.execute(post); 

所以我设定的有效载荷为字符串POST请求,但我不能同时添加文件附件。

这是肥皂UI原始请求的样子:

POST http://localhost:9080/imageUpload/?id=951&userame=test HTTP/1.1 
Accept-Encoding: gzip,deflate 
Content-Type: multipart/form-data; boundary="----=_Part_9_23652504.1341953390382" 
MIME-Version: 1.0 

无法复制同样的行为

+1

也许值得与任何HTTP框架,这是标记? – davidfrancis 2012-07-10 22:06:47

回答

1

你而不安装MultipartEntity在您的示例HttpPost的要求,这是为什么该文件未上传。也许尝试是这样的:

HttpClient httpclient = new DefaultHttpClient(); 
HttpPost httppost = new HttpPost(url); 

MultipartEntity reqEntity = new MultipartEntity(); 

String requestBody = fileToString("src/main/resources/imageBodyPayload.xml"); 
reqEntity.addPart("request-body", new StringBody(requestBody)); 

FileBody fileBody = new FileBody(new File("C:\\sampler.jpg")); 
reqEntity.addPart("upload-file", fileBody); 

HttpParams parameters = new BasicHttpParams(); 
parameters.setLongParameter("id", 951); 
parameters.setParameter("username", "test"); 

httppost.setParams(parameters); 
httppost.setEntity(reqEntity); 

HttpResponse response = httpclient.execute(httppost); 

我不知道“请求体”的价值将是你的情况是什么,但一个多/表单数据请求的每个部分都需要有一个名字,所以如果您尝试在单个请求中发送文件和一些XML,则需要同时提供文件部分和XML部分名称。

“multipart/form-data”消息包含一系列部分,每个部分代表一个成功的控件。 每个零件都应包含一个名称属性,用于指定相应控件的控件名称。

http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.2