0

私は Android アプリケーションを開発し、クラス オブジェクトを Web サービス メソッドに送信します。応答として配列を受け取るはずですが、anyType{} が返されます。

これが私のコードの一部です。

            Customer C = new Customer();
            C.setProperty(0,"30000001");

            PropertyInfo pi =new PropertyInfo();
            pi.setName("customer");        
            pi.setValue(C);            
            pi.setType(C.getClass());  
            request.addProperty(pi);   



            try{
            androidHttpTransport.call(SOAP_ACTION1, envelope);

            SoapObject response = (SoapObject) envelope.bodyIn;

                String[] denemeList;

                denemeList = new String[response.getPropertyCount()];

                for(int i=0; i<response.getPropertyCount(); i++)
                { 

                   denemeList[i] = response.getPropertyAsString(i).toString();
                   Log.d("This is the response",denemeList[i]);

                } 
                }catch (Exception e) {
                     TextView01.setText("EXCEPTION");
                     e.printStackTrace();
                }

これ以外のコードをいくつか見つけましたが、どれも機能しません。誰が私が何をすべきか知っていますか?

ありがとう。

4

1 に答える 1

0

注:ここに私のクラスがあります。このクラスをプロジェクトにそのまま投稿するだけで役立つと思います 2.変数を適宜置き換えます

public class WebServiceCaller {

    private final String NAMESPACE = "http://tempuri.org/";
    private final String URL = "http://www.MYSERVICE/Service.asmx";
    private final String SOAP_ACTION = "http://tempuri.org/RASHTRWADI_State";
    private final String METHOD_NAME = "RASHTRWADI_State";



    public boolean getDistrictDetials() {
        boolean result = false;
        SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
        PropertyInfo propInfo1 = new PropertyInfo();
        propInfo1.setName("State_Code");
        propInfo1.setValue(1);
        propInfo1.setType(int.class);
        request.addProperty(propInfo1);
        SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
                SoapEnvelope.VER11);
        envelope.dotNet = true; // put this only if the web service is .NET one
        envelope.setOutputSoapObject(request);
        HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
        try {
            androidHttpTransport.call(SOAP_ACTION, envelope);
            // SoapPrimitive response = (SoapPrimitive)envelope.getResponse();
            Object response1 = envelope.getResponse();
            SoapObject response = (SoapObject) response1;

            Log.i("myApp", response1.toString());

        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;
    }

}
于 2013-07-24T12:03:54.840 に答える