如何将WCF与Android连接?

时间:2013-01-11 19:56:31

标签: android json wcf

在活动中,有两个编辑文本可以获取用户名和密码,还有一个按钮用于操作。这是监听器代码。

Button sendBtn = (Button) findViewById(R.id.sendBtn);
        sendBtn.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            EditText un = (EditText) findViewById(R.id.usernameEditText);

            EditText pas = (EditText) findViewById(R.id.passwordEditText);
            HttpResponse response = null;

            user_name = un.getText().toString();
            password = pas.getText().toString();
            path = p + user_name;
            my_map = createMap();
            JSONObject ob=null;


            try {
                ob = new JSONObject("{\"Username\":user_name,\"Password\":password}");
            } catch (JSONException e1) {
                e1.printStackTrace();
            }
            try {
                response = makeRequest(path, my_map,ob);
                BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "utf-8"));
                String json = reader.readLine();
                JSONTokener tokener = new JSONTokener(json);
                JSONArray finalResult = new JSONArray(tokener);
            } catch (Exception e) {
                Log.e("HTTP ERROR", e.toString());
            }
        }
    });

这是makeRequest函数:

public static HttpResponse makeRequest(String path, Map params,JSONObject obj) throws Exception 
    {   


        DefaultHttpClient httpclient = null;
        HttpPost httpost = null;
        ResponseHandler responseHandler = null;
        //instantiates httpclient to make request

            httpclient = new DefaultHttpClient();

            //url with the post data
            HttpGet httpget = new HttpGet(path);
            httpost = new HttpPost(path);

            //convert parameters into JSON object
            JSONObject holder = obj;


            //passes the results to a string builder/entity
            StringEntity se = new StringEntity(holder.toString(), HTTP.UTF_8);

            //sets the post request as the resulting string
            httpost.setEntity(se);
            //sets a request header so the page receving the request
            //will know what to do with it

            httpost.setHeader("Accept", "application/json");
            httpost.setHeader("Content-type", "application/json");
        try{
            //Handles what is returned from the page 
            responseHandler = new BasicResponseHandler();
        }catch(Exception e){
            Log.e("HTTP ERROR", e.toString());
        }
        return httpclient.execute(httpost, responseHandler);
    }

这里是WCF文件:

namespace MyWCFSolution
{

   [ServiceContract]
    public interface IService1
    {
       [OperationContract]
       [WebInvoke(Method = "GET",
           ResponseFormat = WebMessageFormat.Json,
           BodyStyle = WebMessageBodyStyle.Wrapped,
           UriTemplate = "Check")]
       String CheckSQL(string getJson);

    }
}

如何使用Json将wcf服务器连接到android。我想发送包含用户名和密码的Json对象以及包含用户名,密码,名称和姓氏的json对象的响应。但那时我遇到了麻烦。我无法连接主机,无法发布和获取json数据。有人能解释清楚吗? (示例代码,评论)

2 个答案:

答案 0 :(得分:1)

阅读这些文章,

http://www.vogella.com/articles/AndroidJSON/article.html

http://www.androidhive.info/2012/01/android-json-parsing-tutorial/

ObjectMapper mapper = new ObjectMapper();
ArrayList<RespuestaEncuesta> respuestas = new ArrayList<RespuestaEncuesta>(1);
RespuestaEncuesta r = new RespuestaEncuesta();
r.Comentarios = "ASD";
r.GrupoClienteID = UUID.fromString("00000000-0000-0000-0000-000000000000");
r.GrupoID = 1155;
r.Opcion = "2";
respuestas.add(r);

RespuestaWrapper data = new RespuestaWrapper();
data.Respuestas = respuestas;

mapper.configure(SerializationFeature.WRAP_ROOT_VALUE, true);
String respuestarJson = mapper.writeValueAsString(data);
String url = config[0] + "/GuardaEncuestas";

HttpPost httpPost = new HttpPost(url);
httpPost.setHeader("Accept", "application/json");
httpPost.setHeader("Content-type", "application/json");

StringEntity tmp = new StringEntity(respuestarJson);
httpPost.setEntity(tmp);

DefaultHttpClient httpClient = new DefaultHttpClient();
httpClient.execute(httpPost);

希望它会有所帮助

答案 1 :(得分:0)

我前段时间做过一些事情,几乎就像你需要的解决方案。

我不知道这是否是最好的解决方法,但它运作得很好

在你的方法上,首先,如果你想收到一个JSON,“GET”不是最好的选择,试试POST,因为URL QueryString有一个字符限制,如果你的JSON很大,它就不会输入有

其次,我在Net中声明了一个POCO对象,它与JSON结构完全匹配,然后我在方法上声明它必须接收该对象。

ITS重要的是,json上的键与POCO对象属性完全匹配,是关键敏感的

IIS自动解析从Android发布的JSON到网络中的那个POCO对象,所以它像魔术一样工作,无需解析,清理收到的对象。

当然检查你的URI模板是否正常,因为如果不正常,你永远不会在你的WCF服务器上收到请求。

其他事项:在您的Android APP中,您将JSON作为POST请求发送。在您的WCF中,您的方法正在等待GET请求。