简体   繁体   English

访问.net wcf服务时出现空指针异常

[英]null pointer exception while accesing .net wcf services

I am new to Android and i am trying to access wcf service from android its giving null pointer exception, here is my .net wcf service IUserService 我是Android的新手,我正尝试从android访问wcf服务,它给出了空指针异常,这是我的.net wcf服务IUserService

[ServiceContract]
public interface IUserService
{       [OperationContract]
    [WebInvoke(Method="GET",ResponseFormat = WebMessageFormat.Json,UriTemplate =    "GetName")]
    string GetName();      
}

here is my UserService 这是我的UserService

public class UserService : IUserService
{
public string GetName()
    {
        return "Hello ! ";
    }
}

here is my xml 这是我的xml

 <service name="Lera.Template.Services.WCF.UserService">
    <endpoint address="" binding="webHttpBinding" contract="Lera.Template.Services.WCF.IUserService" 
              behaviorConfiguration="httpBehavior">
      <identity>
        <dns value="localhost" />
      </identity>
    </endpoint>
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
    <host>
      <baseAddresses>
        <add baseAddress="http://localhost:8888/Lera.Template.Services.WCF/UserService/" />
      </baseAddresses>
    </host>
  </service>    

I am using eclipse here is my main activity 我正在使用eclipse这是我的主要活动

public class MainActivity extends Activity {

 private String values ="";
Button btn;
  TextView tv;
  private static String url = "http://192.168.12.146:8888/Lera.Template.Services.WCF/UserService/GetName";
  private static final String StringVal = "StringValue";
 @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);       


        JSONParser jParser = new JSONParser();

        // getting JSON string from URL
        JSONObject json = jParser.getJSONFromUrl(url); 
        try {

           String temp = json.getString(StringVal);          
            Toast toast = Toast.makeText(this ,temp , Toast.LENGTH_SHORT);
            toast.show();        

        } 

        catch (JSONException e) {
            e.printStackTrace();
        }

        catch (Exception ex) {
            Log.e("final:", ex.toString());
        }

 }
}

I am using json parser class public class JSONParser { 我正在使用json解析器类公共类JSONParser {

static InputStream is = null;
static JSONObject jObj = null;
static String json = "";

// constructor
public JSONParser() {

}

public JSONObject getJSONFromUrl(String url) {

    // Making HTTP request
    try {
        // defaultHttpClient
        DefaultHttpClient httpClient = new DefaultHttpClient();
        HttpGet httpget = new HttpGet(url);

        HttpResponse httpResponse = httpClient.execute(httpget);
        HttpEntity httpEntity = httpResponse.getEntity();
        is = httpEntity.getContent();           

    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
        Log.e("connection" , e.toString());
    }

    try {
        BufferedReader reader = new BufferedReader(new InputStreamReader(is, "iso-8859-1"), 8);
        StringBuilder sb = new StringBuilder();
        String line = null;
        while ((line = reader.readLine()) != null) {
            sb.append(line + "\n");
        }
        is.close();
        json = sb.toString();//here json type is string 
    } catch (Exception e) {
        Log.e("Buffer Error", "Error converting result " + e.toString());
    }

    // try parse the string to a JSON object
    try {
        jObj = new JSONObject(json);
    } catch (JSONException e) {
        Log.e("JSON Parser", "Error parsing data " + e.toString());
    }

    // return JSON String
    return jObj;

}
}

Wcf Service is working fine on browser but when i try to access from my android application its giving null pointer exception WCF服务在浏览器上工作正常,但是当我尝试从我的Android应用程序访问时,它给出了空指针异常

the line that is giving null pointer exception is 提供空指针异常的行是

HttpResponse httpResponse = httpClient.execute(httpget); 

Please help me in solving this, I have tried all the things which are available on net but still unable to overcome this. 请帮助我解决这个问题,我已经尝试了网上所有可用的方法,但仍然无法克服。

As AS mention I updated my main activity class here is my main activity with Async calls but the Exception is connection to url refused 正如我提到的那样,我更新了我的主要活动类,这是通过异步调用进行的主要活动,但例外是与网址的连接被拒绝

public class MainActivity extends Activity implements OnClickListener {

 private String values ="";
Button btn;
  TextView tv;
  String uri = "http://192.168.0.144:8888/Lera.Template.Services.WCF/UserService/GetName";

 @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        btn = (Button)this.findViewById(R.id.btnAccess);
        tv = (TextView)this.findViewById(R.id.tvAccess);
        btn.setOnClickListener(this);
    }

    @Override
    public void onClick(View arg0) {
        try
        {
        AsyncTaskExample task = new AsyncTaskExample(this);
        task.execute("");
        String  test = values;
        tv.setText(values);
        } catch(Exception e)
        {
           Log.e("Click Exception: ", e.getMessage());   
        }

    }

    public class AsyncTaskExample extends AsyncTask<String, Void,String>
    {
        private String Result="";
        //private final static String SERVICE_URI = "http://10.0.2.2:8889";
        private final static String SERVICE_URI = "http://192.168.12.146:8888/Lera.Template.Services.WCF/UserService";
        private MainActivity host;
        public AsyncTaskExample(MainActivity host)
        {
            this.host = host;
        }

        public String GetSEssion(String URL)
        {
          boolean isValid = true;
          if(isValid)
          {

              HttpClient client = new DefaultHttpClient();
              //http://192.168.0.144:8888/Lera.Template.Services.WCF/UserService/
             // HttpPost post = new HttpPost(uri);
              HttpGet httpget = new HttpGet(uri);
            httpget.setHeader("Accept", "application/json");
            httpget.setHeader("Content-type", "application/json; charset=utf-8");

              try
              {      
                HttpResponse response = client.execute(httpget) ;
                BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
                String line ="";
                while((line = rd.readLine()) != null)
                {
                    System.out.println(line);
                }
              }catch(Exception e)
              {
                  Log.e("Error:", e.getMessage());

              }
         }
          return Result;
        }

        @Override
        protected String doInBackground(String... arg0) {
            android.os.Debug.waitForDebugger();
            String t = GetSEssion(SERVICE_URI);
            return t;
        }

        @Override
        protected void onPostExecute(String result) {
        //  host.values = Result;
            super.onPostExecute(result);
        }
        @Override
        protected void onPreExecute() {
            // TODO Auto-generated method stub
            super.onPreExecute();
        }

        @Override
        protected void onCancelled() {
            // TODO Auto-generated method stub
            super.onCancelled();
        }
    }

}

Any help would be appriciated. 任何帮助将被申请。 Thankyou. 谢谢。

Otherwise i can give you the following advice : There's no need for a whole class (JSONParser) for just one method. 否则,我可以给您以下建议:只需一个方法就不需要整个类(JSONParser)。 Just add the method and variables to MainActivity. 只需将方法和变量添加到MainActivity。

EDIT: Actually are you using an android device or an emulator? 编辑:实际上您正在使用android设备或模拟器吗? If you're using an emulator you can access your host computer by using 10.0.2.2 . 如果您使用的是模拟器,则可以使用10.0.2.2访问主机。 You would change your url to http://10.0.2.2.146:8888/Lera.Template.Services.WCF/UserService/GetName 您可以将网址更改为http://10.0.2.2.146:8888 / Lera.Template.Services.WCF / UserService / GetName

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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