duanbaque4230 2012-04-18 12:59
浏览 98
已采纳

Android KSOAP2请求PHP SOAP服务器

I am trying to create a SOAP client in my android app. I have already tested the server with php SOAP client, and it has been working. But in my android app I am still getting exceptions. Can anyone help me whats wrong and how to fix it? Thanks

PHP

<?php
class service
{      
public function service()
{   }

public function login($nickname, $password)
{   

    $sql = "select nick from user 
    where 
    nick =\"$nick\"
    and
    pass = \"$password\"";

    if (($result = $this->db->query($sql)) && ($result->num_rows == 1))
        return true;
    else
        return false;
}  
}

$server = new SoapServer(null, array(
'uri' => "urn://www.domain.cz",
'soap_version' => SOAP_1_2)
);              
$server->setClass("service");     
$server->handle(); 
?>

Android

private static String SOAP_ACTION = "http://www.domain.cz/server/server.php";
    private static String NAMESPACE = "urn://www.domain.cz";
    //need fix namespace to work, final solution
    // private static String NAMESPACE = "http://www.domain.cz/server/";
    private static String METHOD_NAME = "login";
    private static String URL = "http://www.domain.cz";

public void Connect()
{
    //Initialize soap request + add parameters
    SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

    //Use this to add parameters
    request.addProperty("nick","peter");
    request.addProperty("password","somepassword");

    //Declare the version of the SOAP request
    SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER12);
    envelope.setOutputSoapObject(request);

    //Needed to make the internet call
    HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
    try {
            //this is the actual part that will call the webservice
            androidHttpTransport.call(SOAP_ACTION, envelope);//HERE is xmlpullparserexception after a while
    } catch (Exception e) {
            e.printStackTrace();
    }

    // Get the SoapResult from the envelope body.
    SoapObject result = (SoapObject)envelope.bodyIn;

    if(result != null){
            TextView t = (TextView)this.findViewById(R.id.resultbox);

            //Get the first property and change the label text
            t.setText("SOAP response:

" + result.getProperty(0).toString());
    }

}
  • 写回答

2条回答

  • douyun1950 2012-04-18 18:41
    关注

    Your URL should be the soap endpoint, i.e. http://www.domain.cz/server/server.php

    Your SOAP_ACTION should contain the method name, i.e. http://www.domain.cz/server/server.php/login

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥30 python代码,帮调试,帮帮忙吧