Hi everyone,

I have the following code which calls a PHP webservice. The code
connects to the service, but the paramters are not passed well.
Because I've noticed that I have problems passing the parameters, I
had modified the method to return the parameters, and for the next
code it returnes "m m"(basicly it returns the first letter of the
first parameter twice).

    String SOAP_ACTION = "urn:server#userAuth";
    String METHOD_NAME = "userAuth";

    SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

//        I've tried this too but with no results
//        request .addProperty("usr",  "[email protected]");
//        request .addProperty("pass", "xxxxxxxxxxxxxxxxxxxxxx");

    PropertyInfo p1 = new PropertyInfo();
    p1.type = PropertyInfo.STRING_CLASS;
    p1.setName("usr");
    p1.setValue("myuser");
    p1.setNamespace(NAMESPACE);
    request.addProperty(p1);

    PropertyInfo p2 = new PropertyInfo();
    p2.type = PropertyInfo.STRING_CLASS;
    p2.setName("pass");
    p2.setValue("xxxxxxxxxxx");
    p2.setNamespace(NAMESPACE);
    request.addProperty(p2);

    SoapSerializationEnvelope envelope = new
SoapSerializationEnvelope(SoapEnvelope.VER11);

    envelope.setOutputSoapObject(request);
    HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
    androidHttpTransport.call(SOAP_ACTION, envelope);

    Object result = (Object)envelope.getResponse();
    return result.toString();


To make an ideea, here is the php code...

$server = new nusoap_server;
$server->configureWSDL('server', 'urn:server');
$server->wsdl->schemaTargetNamespace = 'urn:server';
$server->register('userAuth',
            array('usr' => 'xsd:string', 'pass' => 'xsd:string'),
            array('return' => 'xsd:string'),
            'urn:server',
            'urn:server#userAuth');

function userAuth($value){

    $a=$value['usr'].$value['pass'];

        return $a;
}

$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ?
$HTTP_RAW_POST_DATA : '';

$server->service($HTTP_RAW_POST_DATA);

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to