0

好吧,我正在建立一个连接...带有 Web 服务的 sql server,带有 j2me 的 Web 服务,但现在我正在做一个 helloworld ...我可以,但现在我想做一个“hello world”+ nombre .. . 参数未在 Web 服务中接收,此处为 Web 服务

[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// Para permitir que se llame a este servicio web desde un script, usando ASP.NET AJAX, quite la marca de comentario de la línea siguiente. 
// [System.Web.Script.Services.ScriptService]
public class Service : System.Web.Services.WebService
{

    public Service () {


    }

    [WebMethod]
    public string HelloWorld(String nombre)
    {
        return "Que onda " + nombre;
    }

}

这是用 ksoap 调用它的代码...

String nombremetodo="HelloWorld";
String url="http://localhost:49175/WebSite1/Service.asmx";
String namespace="http://tempuri.org/";
String SOAP_ACTION=namespace+nombremetodo;

public void traer()
{
SoapObject busqueda =new SoapObject(namespace,nombremetodo);
HttpTransport transportacion = new HttpTransport(url);
busqueda.addProperty(new String("nombre"),new String("Angel"));
System.out.println("parametro agregado");

//busqueda.addProperty(PropertyInfo.OBJECT_TYPE, "Angel");

SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);

transportacion.debug=true;

envelope.bodyOut=busqueda;
System.out.println("todo ok");
try{
    System.out.println("comenzando transportacion");

transportacion.call(SOAP_ACTION, envelope);
System.out.println("transportacion ok");

respuesta = envelope.getResponse().toString();
System.out.println("respuesta ok");

}
catch(Exception e)
{
texto.setString("fallo");
System.out.println("falla en el try");

System.out.println(e);

}


}

我得到它返回带有空格的“que onda”,因为所以我把它放在网络服务中,但从不返回“que onda”+nombre ...它是j2me的应用程序而不是android,我看android它是苏...

PropertyInfo p1 = new PropertyInfo();
p1.setName("nombre");
p11.setValue("Angel");
busqueda.addProperty(p1);

但是 j2me 的 ksoap 没有这些方法.. "setName, setValue"; 我已经下载了这个库,但是我遇到了一个丑陋的错误并且应用程序无法运行......我看到添加了参数所以......

 busqueda.addProperty("nombre","Angel");

但这不起作用......它确实运行它没有任何错误,但网络服务永远不会收到参数......

谢谢STACKOVERFLOW的人我的英语不太好抱歉

4

1 回答 1

0

我解决了,这是必要的写

envelope.dotNet=true;
于 2011-03-27T19:22:10.107 回答