我目前正在使用来自Java客户端的POST请求来访问使用WSDL文件的SOAP Web服务。
我确实从网络服务中得到答案,说我的XML存在问题。我相信目前没有发送任何XML。我的问题是我必须将什么POST键设置为我的XML,我希望将web服务用作输入?
这是我的代码片段:
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("Content", input));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
HttpResponse resp = httpclient.execute(httppost);