php-Android客户端:Web服务-我应该使用什么正确的SOAP_ACTION,METHOD_NAME,NAMESPACE和URL?

如果我想使用以下Web服务(help.be只是一个例子,假设它确实存在):http://www.help.be/webservice/webservice_help.php(它是用PHP =客户端选择而不是.NET编写的),并带有以下WSDL:

<?xml version="1.0" encoding="UTF-8"?>
<deFinitions xmlns="http://schemas.xmlsoap.org/wsdl/" name="webservice_help" targetNamespace="http://www.help.be/webservice/webservice_help.PHP" xmlns:tns="http://www.help.be/webservice/webservice_help.PHP" xmlns:impl="http://www.help.be/webservice/webservice_help.PHP" xmlns:xsd1="http://www.help.be/webservice/webservice_help.PHP" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
  <portType name="webservice_helpPortType">
    <operation name="webservice_help">
        <input message="tns:Webservice_helpRequest"/>
    </operation>
    <operation name="getLocation" parameterOrder="input">
        <input message="tns:GetLocationRequest"/>
        <output message="tns:GetLocationResponse"/>
    </operation>


<?xml version="1.0" encoding="UTF-8"?>
<deFinitions xmlns="http://schemas.xmlsoap.org/wsdl/" name="webservice_help" targetNamespace="http://www.help.be/webservice/webservice_help.PHP" xmlns:tns="http://www.help.be/webservice/webservice_help.PHP" xmlns:impl="http://www.help.be/webservice/webservice_help.PHP" xmlns:xsd1="http://www.help.be/webservice/webservice_help.PHP" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
    <portType name="webservice_helpPortType">
        <operation name="webservice_help">
            <input message="tns:Webservice_helpRequest"/>
        </operation>
        <operation name="getLocation" parameterOrder="input">
            <input message="tns:GetLocationRequest"/>
            <output message="tns:GetLocationResponse"/>
        </operation>

        <operation name="getStationDetail" parameterOrder="input">
            <input message="tns:GetStationDetailRequest"/>
            <output message="tns:GetStationDetailResponse"/>
        </operation>
        <operation name="getStationList" parameterOrder="input">
            <input message="tns:GetStationListRequest"/>
            <output message="tns:GetStationListResponse"/>
        </operation>
    </portType>

    <binding name="webservice_helpBinding" type="tns:webservice_helpPortType">
        <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
        <operation name="webservice_help">
            <soap:operation soapAction="urn:webservice_help#webservice_helpServer#webservice_help"/>
            <input>
                <soap:body use="encoded" namespace="http://www.help.be/webservice/webservice_help.PHP" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
            </input>
        </operation>
        <operation name="getLocation">
            <soap:operation soapAction="urn:webservice_help#webservice_helpServer#getLocation"/>
            <input>
                <soap:body parts="input" use="encoded" namespace="http://www.help.be/webservice/webservice_help.PHP" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
            </input>
            <output>
                <soap:body parts="return" use="encoded" namespace="http://www.help.be/webservice/webservice_help.PHP" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
            </output>
        </operation>
        <operation name="getStationDetail">
            <soap:operation soapAction="urn:webservice_help#webservice_helpServer#getStationDetail"/>
            <input>
                <soap:body parts="input" use="encoded" namespace="http://www.help.be/webservice/webservice_help.PHP" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
            </input>
            <output>
                <soap:body parts="return" use="encoded" namespace="http://www.help.be/webservice/webservice_help.PHP" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
            </output>
        </operation>
        <operation name="getStationList">
            <soap:operation soapAction="urn:webservice_help#webservice_helpServer#getStationList"/>
            <input>
                <soap:body parts="input" use="encoded" namespace="http://www.help.be/webservice/webservice_help.PHP" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
            </input>
            <output>
                <soap:body parts="return" use="encoded" namespace="http://www.help.be/webservice/webservice_help.PHP" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
            </output>
        </operation>
    </binding>

    <message name="Webservice_helpRequest"/>
    <message name="GetLocationRequest">
        <part name="input" type="xsd:array"/>
    </message>
    <message name="GetLocationResponse">
        <part name="return" type="xsd:array"/>
    </message>
    <message name="GetStationDetailRequest">
        <part name="input" type="xsd:array"/>

    </message>
    <message name="GetStationDetailResponse">
        <part name="return" type="xsd:string"/>
    </message>
    <message name="GetStationListRequest">
        <part name="input" type="xsd:array"/>
    </message>
    <message name="GetStationListResponse">
        <part name="return" type="xsd:string"/>

    </message>
    <service name="webservice_helpService">
        <port name="webservice_helpPort" binding="tns:webservice_helpBinding">
            <soap:address location="http://www.help.be/webservice/webservice_help.PHP"/>
        </port>
    </service>
</deFinitions>

我应该在下面使用什么是正确的SOAP_ACTION,METHOD_NAME,NAMESPACE,URL?

我已经尝试过了

public class Main extends Activity {
    /** Called when the activity is first created. */

    private static final String SOAP_ACTION_GETLOCATION = "getLocation";
    private static final String METHOD_NAME_GETLOCATION = "getLocation";            
    private static final String NAMESPACE = "http://www.help.be/webservice/";
    private static final String URL = "http://www.help.be/webservice/webservice_help.PHP";

    TextView tv;

    @SuppressWarnings("unchecked")
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        tv = (TextView)findViewById(R.id.TextView01);

        // --------------------------------------------------------------------------------------
        SoapObject request_location = new SoapObject(NAMESPACE, METHOD_NAME_GETLOCATION);       
        request_location.addProperty("login", "login");         // -> string required 
        request_location.addProperty("password", "password");   // -> string required
        request_location.addProperty("serial", "serial");       // -> string required
        request_location.addProperty("language", "fr");         // -> string required (available « fr,nl,uk,de ») 
        request_location.addProperty("keyword", "Braine");      // -> string required

        // --------------------------------------------------------------------------------------

        SoapSerializationEnvelope soapEnvelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
        //soapEnvelope.dotNet = true;                           // don't forget it for .NET WebServices !
        soapEnvelope.setoutputSoapObject(request_location);


        AndroidHttpTransport aht = new AndroidHttpTransport(URL);

        try { 
            aht.call(SOAP_ACTION_GETLOCATION, soapEnvelope); 

            // Get the SAOP Envelope back and then extract the body 
            SoapObject resultsRequestSOAP = (SoapObject) soapEnvelope.bodyIn; 

            Vector XXXX = (Vector) resultsRequestSOAP.getProperty("GetLocationResponse"); 

            int vector_size = XXXX.size(); 
            Log.i("Hub", "testat="+vector_size);

            tv.setText("OK");  

        } catch(Exception E) { 
            tv.setText("ERROR:" + E.getClass().getName() + ": " + E.getMessage());
            Log.i("Hub", "Exception E");
            Log.i("Hub", "E.getClass().getName()="+E.getClass().getName()); 
            Log.i("Hub", "E.getMessage()="+E.getMessage()); 
        } 
        // --------------------------------------------------------------------------------------
    }
}

我不确定必须使用SOAP_ACTION,METHOD_NAME,NAMESPACE和URL吗?因为soapAction指向的是URN而不是传统的URL,它是PHP而不是.NET …

另外,我不确定是否必须使用request_location.addProperty(“ login”,“ login”);
request_location.addAttribute(“ login”,“ login”); ?

=>

<message name="GetLocationRequest">
<part name="input" type="xsd:array"/>

你打算说什么 ?

谢谢您的帮助.

H.

编辑:这是一些在PHP中工作的代码-我只是想拥有相同的代码,但在Android / JAVA中:

<?PHP
    ini_set("soap.wsdl_cache_enabled", "0"); // disabling WSDL cache 

    $request['login'] = 'login';
    $request['password'] = 'password';
    $request['serial'] = 'serial';
    $request['language'] = 'fr';

      $client= new SoapClient("http://www.test.be/webservice/webservice_test.wsdl");    

    print_r( $client->__getFunctions());

    ?><hr><h1>getLocation</h1>
    <h2>Input:</h2>
    <?
    $request['keyword'] = 'Bruxelles';
    print_r($request);
    ?><h2>Result</h2><?
     $result = $client->getLocation($request);
     print_r($result);   
?>

解决方法:

String SOAP_ACTION = "http://tempuri.org/Add"; 
        String METHOD_NAME = "Add"; 
        String NAMESPACE = "http://tempuri.org/"; 
        String URL = "http://www.html2xml.nl/Services/Calculator/Version1/Calculator.asmx"; 

以上示例的wsdl可以在以下位置找到:http://www.html2xml.nl/Services/Calculator/Version1/Calculator.asmx?WSDL

就你而言
METHOD_NAME =“ getStationDetail”或
METHOD_NAME =“ getStationList”或
METHOD_NAME =“ getLocation”

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...