如何从Android发布参数到Web服务?

时间:2012-07-10 16:37:21

标签: java android xml web-services

我可以使用HTTP post和response检索xml文件。但是,现在我需要发布String参数以及URL。以下代码告诉我HTTP状态代码不正常(即500),因此返回null然后我得到NullPointerException

package com.JobsWebService;
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.protocol.HTTP;
import org.apache.http.util.EntityUtils;
import org.simpleframework.xml.Serializer;
import org.simpleframework.xml.core.Persister;
import android.util.Log;

public class XmlConnection {

private static final String url =         "http://www.accuservlite.com/AccumobileWS/TestService.asmx/RyanMB_GetJobs";
private DefaultHttpClient client = new DefaultHttpClient();
String param= "Johnny";

public List<NewJob> RyanMB_GetJobs() {
    try {
        String xmlData = retrieve(url);
        Serializer serializer = new Persister();
        Reader reader = new StringReader(xmlData);
        ArrayOfNewJob testService = serializer.read(ArrayOfNewJob.class,
                reader, false);
        Log.i("gary", "Worked");
        return testService.NewJob;

    } catch (Exception e) {
        Log.i("gary", e.toString());
    }
    return null;
}

// method retrieve
public String retrieve(String url) throws UnsupportedEncodingException {

    List<NameValuePair> qparams = new ArrayList<NameValuePair>();
    qparams.add(new BasicNameValuePair("Johnny", "Johhny"));

    UrlEncodedFormEntity postEntity = new UrlEncodedFormEntity(qparams,
            HTTP.UTF_8);

    HttpPost getRequest = new HttpPost(url);

    getRequest.setEntity(postEntity);

    try {

        HttpResponse getResponse = client.execute(getRequest);

        final int statusCode = getResponse.getStatusLine().getStatusCode();

        if (statusCode != HttpStatus.SC_OK) {

            return null;
        }

        HttpEntity getResponseEntity = getResponse.getEntity();

        if (getResponseEntity != null) {
            return EntityUtils.toString(getResponseEntity);
        }

    } catch (IOException e) {
        Log.i("gary", "Error for URL " + url, e);
        getRequest.abort();
    }
    return null;
}

}

2 个答案:

答案 0 :(得分:0)

500是一个服务器错误,没有任何东西让我觉得这个代码显然是错误的。您是否针对发布请求测试了服务器?当您给它一个名称值对时服务器是否期望一个字符串?

您可以尝试使用Wfetch进行测试。

答案 1 :(得分:0)

要在你的HttpPost对象中添加POST参数,你将使用NameValuPair列表:

List<NameValuePair> parameters = new ArrayList<NameValuePair>();
parameters.add(new BasicNameValuePair("name_param1", "value_param1"));

并将此参数添加到您的HttpPost:

UrlEncodedFormEntity formEntity  = new UrlEncodedFormEntity(parameters);
httpPost.setEntity(formEntity);