java - 无法通过 Android ksoap2 从 Web 服务接收数据

标签 java android ksoap2

我正在尝试将字符串发送到网络服务并从中获取重播。

我使用 android studio 为 android 开发 java

和 visual-studio 2010,用于对 C# 网络服务进行编程。

我在安卓上有这段代码

 private static final String SOAP_ACTION = "http://tempuri.org/HELO";

    private static final String OPERATION_NAME = "HELO";// your webservice web method name

    private static final String WSDL_TARGET_NAMESPACE = "http://tempuri.org/";

    private static final String SOAP_ADDRESS = "http://10.0.0.2/WS_TEST/Service1.asmx";



            SoapObject request = new SoapObject(WSDL_TARGET_NAMESPACE, OPERATION_NAME);
            PropertyInfo info= new PropertyInfo();
            info = new PropertyInfo();
            //Set Name
            info.setName("HELO");
            //Set Value
            info.setValue("New User");
            //Set dataType
            info.setType(String.class);
            //Add the property to request object
            request.addProperty(info);

            SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
            envelope.dotNet = true;

            envelope.setOutputSoapObject(request);
            HttpTransportSE httpTransport = new HttpTransportSE(SOAP_ADDRESS);
            try {
                httpTransport.call(SOAP_ACTION, envelope);
                Object response = envelope.getResponse();
                tvData1.setText(response.toString());
            } catch (Exception exception) {
                tvData1.setText(exception.toString());
            }

and this my C# WebService

     [WebService(Namespace = "http://tempuri.org/")]
        [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
        [System.ComponentModel.ToolboxItem(false)]
        // 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 Service1 : System.Web.Services.WebService
        {

            [WebMethod]
            public string HELO(string Name)
            {
                return "Hello : " + Name;
            }

        }

我只有 Helo: 而没有我发送的字符串 而不是Helo:新用户

最佳答案

尝试改变这个:

//Set Name
            info.setName("HELO");

为此:

//Set Name
            info.setName("Name");

关于java - 无法通过 Android ksoap2 从 Web 服务接收数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34911258/

相关文章:

java - JMS。在 WildFly 12 中向 ActiveMQ 中的主题发送简单的主题消息失败

java - RestAssuredRestDocumentationConfigurer 导致 NullPointerException

android - 在 ksoap2 android 中找不到类型错误的解串器

Java GC 和内存使用跟踪

Android - 生成 PKCS#10 请求

javascript - 在 Phonegap 应用程序中打开 Google Play/Rate 应用程序

Android Nougat PhoneStateListener 未触发

android - 使用 kSOAP2 发送带有 int 数组的对象

android - KSoap soapEnvelope bodyIn 和 getResponse() 问题

java - 如何知道闹钟还剩多少时间