我是Android的新手,我正在尝试从android访问wcf服务,它给出了空指针异常, 这是我的.net wcf服务IUserService
[ServiceContract]
public interface IUserService
{ [OperationContract]
[WebInvoke(Method="GET",ResponseFormat = WebMessageFormat.Json,UriTemplate = "GetName")]
string GetName();
}
这是我的UserService
public class UserService : IUserService
{
public string GetName()
{
return "Hello ! ";
}
}
这是我的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>
我正在使用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());
}
}
}
我正在使用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服务在浏览器上工作正常但是当我尝试从我的Android应用程序访问时它给出了空指针异常
给出空指针异常的行是
HttpResponse httpResponse = httpClient.execute(httpget);
请帮助我解决这个问题,我已经尝试了网上提供的所有东西,但仍然无法解决这个问题。
作为A.S.提到我更新了我的主要活动课程 这是我使用Async调用的主要活动,但Exception是 连接到网址拒绝
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();
}
}
}
任何帮助都会得到满足。 三江源。
答案 0 :(得分:1)
否则我可以给你以下建议:只需一个方法就不需要整个类(JSONParser)。只需将方法和变量添加到MainActivity即可。
编辑: 其实你使用的是Android设备还是模拟器?如果您使用的是模拟器,则可以使用10.0.2.2访问主机。您可以将您的网址更改为http://10.0.2.2.146:8888 / Lera.Template.Services.WCF / UserService / GetName