Problem when calling .net webservice?
i created a sample android app i.e. calling simple .net webservice and displaying in TextView, below are the code prospects:
web service code:
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
[System.Web.Script.Services.ScriptService]
public class Service : System.Web.Services.WebService
{
public Service () {
//Uncomment the following line if using designed components
//InitializeComponent();
}
[WebMethod]
public string MobileApp(string acNum)
{
return "Account number is"+acNum;
}
}
android app code:
import java.io.IOException;
import android.app.TabActivity;
import android.content.Intent;
import android.content.res.Resources;
import android.os.Bundle;
import android.view.View;
import android.widget.TabHost;
import android.widget.TextView;
import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;
import org.xmlpull.v1.XmlPullParserException;
public class AccountDetails extends TabActivity {
/** Called when the activity is first created. */
private static final String SOAP_ACTION = "http://tempuri.org/MobileApp";
private static final String METHOD_NAME = "MobileApp";
private static final String NAMESPACE = "http://tempuri.org/";
private static final String URL = "http://localhost:58817/MobService/Service.asmx";
private TextView tv;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.accountdet);
tv=(TextView)findViewById(R.id.tView);
ServiceCall();
}
public void ServiceCall()
{
try{
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
HttpTransportSE androidH开发者_Python百科ttpTransport = new HttpTransportSE(URL);
request.addProperty("acNum", "123456");
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet=true;
envelope.setOutputSoapObject(request);
androidHttpTransport.call(SOAP_ACTION, envelope);
SoapObject result = (SoapObject)envelope.getResponse();
tv.setText(result.toString());
}
catch (final IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final XmlPullParserException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final Exception e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
Also i added below lines to the manifest file:
<uses-permission android:name="android.permission.INTERNET" ></uses-permission>
<uses-sdk android:minSdkVersion="7" />
But i didn't get the result in TextView, so any one plz help me.
@nagaraju.
First check whether your service is running-- for that try in the browser with your link,link,then create dummy site , in there call your method MobileApp
, If its return then your service is working prefect.
SoapSerializationEnvelope envelopes = new SoapSerializationEnvelope(SoapEnvelope.VER11); // put all required data into a soap//// envelope
envelopes.dotNet = true;
envelopes.setOutputSoapObject(requestData);
AndroidHttpTransport httpTransport = new AndroidHttpTransport(APPURL);
httpTransport.debug = true;
try {
httpTransport.call(SOAP_ACTION1, envelopes);
responsesData = (SoapPrimitive) envelopes.getResponse();
} catch (SocketException ex) {
ex.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
Try This one..
I found my bug, it is simple, As i put user permission lines in manifest file in the application tag but actually, I've to put outside of the application tag so that's why i'm getting the response.
Thanks one n all for replying me, your replies also help me to learn stuff :)
精彩评论