0

主にSQLを実行します。ブレークポイントをダウンロードします。おそらく文中if (envelope.getResponse() != null)では null オブジェクトを取得しているので、null の値を返してから終了します。SQLで監視したところ、次のようなSQL文が実行されていないことがわかりましht.call("http://toeye.net/" + MothodName, envelope);た。Webサービスでも実行されませんでした。

public static String sSQL(String SQL)
{
    String MothodName = "ExecSQL";
    HttpTransportSE ht = new HttpTransportSE("http://192.168.1.80/YFService.asmx?WSDL");
    ht.debug = true;
    // use SOAP1.1 creat Envelop object
    SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
        SoapEnvelope.VER12);
    // instantiate SoapObject
    SoapObject soapObject = new SoapObject("http://toeye.net/", MothodName);
    soapObject.addProperty("SQLString", SQL);
    envelope.bodyOut = soapObject;
    // set the Web Service which applied by .Net and keep the compatibility
    envelope.dotNet = true;
    try
    {
        // call Web Service
        ht.call("http://toeye.net/" + MothodName, envelope);
        if (envelope.getResponse() != null)
        {
            // Access server response and return SOAP message
            SoapObject result = (SoapObject) envelope.bodyIn;
            SoapObject detail = (SoapObject) result.getProperty(MothodName
                + "Result");
            // Analytic server response SOAP message
            return detail.toString();
        }
    }
    catch (IOException e)
    {
        e.printStackTrace();
    }
    catch (XmlPullParserException e)
    {
        e.printStackTrace();
    }
    return null;
}
4

0 に答える 0