简体   繁体   中英

Unable to connect android to WCF Service

I was trying to connect the android application to the WCF service but it's not working. WCF is hosted on the IIS server. I don't know which one is wrong android application or WCF Service itself. WCF service is working fine when tested. Here is my WCF service code.

 [ServiceContract(Namespace = "http://services.example.com")]
public interface IEmployeeInfo
{
    [OperationContract]
    [WebInvoke(
        BodyStyle = WebMessageBodyStyle.Wrapped,
        Method="Get", 
        ResponseFormat = WebMessageFormat.Json,
        UriTemplate = "GetEmployee/?key={employeeId}" )]
    Employee GetEmployee(int employeeId);
}

Here is my android code in which I am accessing the WCF service

try {

        DefaultHttpClient client = new DefaultHttpClient();
        // http get request

        HttpGet request = new HttpGet(EMPLOYEE_SERVICE_URI + evEmployeeId.getText());
        Log.d("Connect","Connecting to Server 0");
        Log.d("Connect","Connecting to Server 1");
        // set the hedear to get the data in JSON formate
        request.setHeader("Accept", "application/json");
        request.setHeader("Content-type", "application/json");

        //get the response
        HttpResponse response = client.execute(request);

        HttpEntity entity = response.getEntity();

        //if entity contect lenght 0, means no employee exist in the system with these code
        if(entity.getContentLength() != 0) {
            // stream reader object
            Reader employeeReader = new InputStreamReader(response.getEntity().getContent());
            //create a buffer to fill if from reader
            char[] buffer = new char[(int) response.getEntity().getContentLength()];
            //fill the buffer by the help of reader
            employeeReader.read(buffer);
            //close the reader streams
            employeeReader.close();
            Log.d("Connect","Connecting to Server 2");
            //for the employee json object
            JSONObject employee =  new JSONObject(new String(buffer));

            //set the text of text view
            tvEmployeeCode.setText("Code: " + employee.getString("EmployeeId"));
            tvName.setText("Name: " + employee.getString("FirstName") + " " + employee.getString("LastName"));
            tvAddress.setText("Address: " + employee.getString("Address"));
            tvBloodGroup.setText("Blood Group: " + employee.getString("BloodGroup"));


        }
        else {

            text.setTextSize(R.string.text);

        }

    }
    catch (Exception e) {

     Log.d("Error",e.getMessage());
e.printStackTrace();
}

Any help is appreciated.

When I request the WCF service from android emulator applcation crashes. here the logchat.

11-17 22:56:55.566: W/dalvikvm(1174): threadid=1: thread exiting with uncaught exception (group=0x40a13300)
11-17 22:56:55.616: E/AndroidRuntime(1174): FATAL EXCEPTION: main
11-17 22:56:55.616: E/AndroidRuntime(1174): java.lang.NullPointerException: println needs a message
11-17 22:56:55.616: E/AndroidRuntime(1174):     at android.util.Log.println_native(Native Method)
11-17 22:56:55.616: E/AndroidRuntime(1174):     at android.util.Log.d(Log.java:138)
11-17 22:56:55.616: E/AndroidRuntime(1174):     at com.yyousuf.sample.EmployeeInfoActivity.onClick

There's an exception being thrown, but because you are catching all Exceptions, you don't have the details. For some reason the throwed Exception doesn't have a message set, and that's why you are getting the NullPointerException on this line

Log.d("Error",e.getMessage());

Please post more information about the real throwed exception.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM