Вызов веб-службы из приложения Android возвращает нулевой объект
Я пишу приложение для Android, которое взаимодействует с веб-сервисом с помощью KSOAP. Связь между веб-сервисом и приложением Android работает, так как я могу вызвать веб-сервис и получить возвращаемое значение (привет). Но если я пытаюсь присвоить имя из приложения веб-службе через.addProperty, веб-служба возвращает нулевой объект.
Вот мой код:
Основная деятельность:
private final String NAMESPACE_Local = "http://test.com/";
private final String URL_Local = "http://168.185.226.21:7001/myTest/myTestWebServiceService";
private final String SOAP_ACTION_Local = "Hello_Action_Extend";
private final String METHOD_NAME_Local = "hello_extend";
public void LocalServer(View view)
{
TextView text = (TextView) findViewById(R.id.update_text);
SoapObject request = new SoapObject(NAMESPACE_Local, METHOD_NAME_Local);
request.addProperty("name", "Christian");
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(URL_Local);
try {
androidHttpTransport.call(SOAP_ACTION_Local, envelope);
SoapPrimitive response = (SoapPrimitive)envelope.getResponse();
Log.i("myApp", response.toString());
text.setText(response.toString());
} catch (Exception e) {
e.printStackTrace();
Toast.makeText(this,"Device or service offline",Toast.LENGTH_LONG).show();
}
}
Веб сервер:
package com.test;
import javax.jws.*;
@WebService
public class myTestWebService {
@WebMethod(action="Hello_Action") //that method works
public String hello() {
return "hello";
}
@WebMethod(action="Hello_Action_Extend")
public String hello_extend(String name) //that works also, but it is giving back "hello null"
{
return "hello "+name;
}
}
Я надеюсь, что вы можете помочь мне!
1 ответ
Попробуйте заменить:
request.addProperty("name", "Christian");
за:
request.addProperty("name",ElementType.STRING_CLASS, "Christian");
и ответ для:
SoapObject reponse=(SoapObject)envelope.getResponse();
response.getProperty("name");