0

我正在尝试在 Java (Tomcat) 中创建一个 web 服务,并且我正在使用 kSoap 从 Android 调用它。调用我的 webService 时的参数为空。我不知道为什么。

我的网络服务的数据

Punto Final  Información
Nombre de Servicio\:    {http://serv.trivial.com/}UsuariosWebServiceImplService
Nombre de Puerto\:  {http://serv.trivial.com/}UsuariosWebServiceImplPort
Dirección\: .../UsuariosWebService/usuarios
Clase de Implantación\: com.trivial.serv.UsuariosWebServiceImpl

我的代码是:

private void registroServidor(String usuario, String regId)
{
    //http://localhost:8080/UsuariosWebService/usuarios?wsdl
    final String NAMESPACE = "http://serv.trivial.com/"; //Buscar namespace en el wsdl
    final String URL="http://10.0.2.2:8080/UsuariosWebService/usuarios";
    final String METHOD_NAME = "createUser";
    //final String SOAP_ACTION = "http://serv.trivial.com/createUser";
    final String SOAP_ACTION = "";

    SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

    request.addProperty("usuario", usuario); 
    request.addProperty("regGCM", regId);  

    SoapSerializationEnvelope envelope = 
            new SoapSerializationEnvelope(SoapEnvelope.VER11);

    //envelope.doNet = true; 

    envelope.setOutputSoapObject(request);

    HttpTransportSE transporte = new HttpTransportSE(URL);

    try 
    {
        transporte.call(SOAP_ACTION, envelope);

        SoapPrimitive resultado_xml =(SoapPrimitive)envelope.getResponse();
        String res = resultado_xml.toString();

        if(res.equals("true"))
            Log.d("GCMTest", "Registro WS: OK.");
    } 
    catch (Exception e) 
    {
        System.out.println("EXCEPTION!!!!!!" + e);
        e.printStackTrace();
        Log.d("GCMTest", "Registro WS: NOK. " + e.getCause() + " || " + e.getMessage());
    } 
}

我的网络服务:

@Override
@WebMethod
public boolean createUser(@QueryParam("usuario") String  usuario,@QueryParam("regGCM") String regGCM) {
    System.out.println("2222");
    boolean result = false;
    UsuarioDTO dto = new UsuarioDTO();


//!!!!!! regGCM and usuario are null!!!!!!

    dto = new UsuarioDTO(regGCM, usuario);

    if (dao.findUserByUsuario(usuario) != null){    
        result = dao.update(dto);
    }else{
        result = dao.insert(dto);
    }

    System.out.println("New User info: " + dto.toString());

    return result;

}


@WebMethod
public abstract boolean createUser(@QueryParam("usuario") String  usuario,@QueryParam("regGCM") String regGCM);
4

1 回答 1

0

就我个人而言,我已经成功地使用 ksoap 连接到一个 .NET Web 服务,所以我不确定在使用 Tomcat 时你的参数名称应该是什么样子。但是我注意到您没有为参数指定数据类型 - 这可能是问题吗?这是一个例子:

// ## init request parameters
PropertyInfo pi = new PropertyInfo();
// ## usuario
pi.setName("usuario");
pi.setValue(usuario);
pi.setType(String.class);
request.addProperty(pi);
于 2013-06-11T07:14:39.023 回答