简体   繁体   English

带有.Net Web服务的Android KSOAP

[英]Android KSOAP with .Net Web Service

I have created web service using .Net C#. 我已经使用.Net C#创建了Web服务。 Now I am trying to access this from android app so I tried using KSOAP2. 现在,我尝试从android应用程序访问此文件,因此尝试使用KSOAP2。

This is my code. 这是我的代码。

final String NAMESPACE = "http://tempuri.org/";
final String METHOD_NAME = "HelloWorld";
final String SOAP_ACTION = "http://tempuri.org/HelloWorld";
final String URL = "http://localhost:61252/Service1.asmx"; 

new Thread() {

 public void run() {
                     SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
                     SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
                     SoapEnvelope.VER11);
                     envelope.dotNet=true;
                     envelope.setOutputSoapObject(request);
                     HttpTransportSE  httpTransport = new HttpTransportSE(URL);
                     httpTransport.debug = true;
                     try {
                      httpTransport.call(SOAP_ACTION, envelope);
                      SoapObject result = (SoapObject) envelope.bodyIn;

                     }
                     catch (Exception e) {
                         // TODO: handle exception
                    }}}.start();

But in this line 但是在这条线

httpTransport.call(SOAP_ACTION, envelope);

It is going into catch block and do not have any error message. 它正在进入catch块,并且没有任何错误消息。

I also found so many questions regarding this but as i am new to this not able to find where i am going wrong. 我也发现了很多与此有关的问题,但是由于我是新来的,所以找不到我要去哪里。

Am I doing correct or is there any other method which i can use? 我做对了还是有其他可以使用的方法?

    SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
// if required you can use addProperty to add properties in url
            request.addProperty("User", "abcd@gmail.com");
            request.addProperty("Password", "abcd");
            SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
                    SoapEnvelope.VER11);
            envelope.headerOut = new Element[1];
            envelope.headerOut[0] = buildAuthHeader();
            envelope.dotNet = true;
            envelope.setOutputSoapObject(request);

            // if you want to add any property you can add here.

            /*
             * PropertyInfo cityProp = new PropertyInfo();
             * 
             * cityProp.setType(String.class); request.addProperty(cityProp);
             */

            Log.e("value of request", request.toString());
            Log.e("Value of envolope ", envelope.toString());

            HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);

    // add try catch block.
            try {

                androidHttpTransport.call(SOAP_ACTION, envelope);
                Log.i("myAppEnvelope", envelope.toString());

                SoapObject response = (SoapObject) envelope.getResponse();
    // There are two types of Soap response (as per my knowledge or use )
    // SoapObject or SoapPrimitive  so check what is your response and use accordingly.

    SoapObject data = (SoapObject) response
                        .getProperty("field_name");

    // OR 

    SoapPrimitive data = (SoapPrimitive) data.getProperty("field_name");
 SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);        
     SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
     envelope.setOutputSoapObject(request);

     HttpTransportSE ht = new HttpTransportSE(URL);
     ht.call(SOAP_ACTION, envelope);
     final  SoapPrimitive response = (SoapPrimitive)envelope.getResponse();
     final String str = response.toString();

use this for your reference . 以此为参考 Hope this will help you. 希望这会帮助你。

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

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