0

で記述された Web サービスと通信するために SOAP を使用してい.Netます。ソースコードは次のとおりです。

public class SlipperyAsSoap extends Activity {

Button sendMsg;
TextView resultText;
EditText query;

final String NAMESPACE = "http://tempuri.org/";
final String SOAP_ACTION = "http://tempuri.org/IIOService/SendMessage";
final String METHOD_NAME = "SupportedMessageTypes";
final String URL = "http://biovnap.no.netserver/Bio/IOService.svc?wsdl";

// private static String SOAP_ACTION1 =
// "http://tempuri.org/FahrenheitToCelsius";
// private static String SOAP_ACTION2 =
// "http://tempuri.org/CelsiusToFahrenheit";
// private static String NAMESPACE = "http://tempuri.org/";
// private static String METHOD_NAME1 = "FahrenheitToCelsius";
// private static String METHOD_NAME2 = "CelsiusToFahrenheit";
// private static String URL =
// "http://www.w3schools.com/webservices/tempconvert.asmx?WSDL";

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    sendMsg = (Button) findViewById(R.id.button1);
    resultText = (TextView) findViewById(R.id.textView1);
    query = (EditText) findViewById(R.id.editText1);
    StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder()
            .permitAll().build();
    StrictMode.setThreadPolicy(policy);

    sendMsg.setOnClickListener(new OnClickListener() {

        public void onClick(View arg0) {

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

            // Use this to add parameters
            // request.addProperty("Fahrenheit",
            // query.getText().toString());

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

            envelope.setOutputSoapObject(request);
            envelope.dotNet = true;

            try {
                HttpTransportSE androidHttpTransport = new HttpTransportSE(
                        URL);
                androidHttpTransport.debug = true;
                // this is the actual part that will call the webservice

                androidHttpTransport.call(SOAP_ACTION, envelope);

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

                if (result != null) {
                    // Get the first property and change the label text
                    resultText.setText(result.getProperty(0).toString());
                } else {
                    Toast.makeText(getApplicationContext(), "No Response",
                            Toast.LENGTH_LONG).show();
                }
            } catch (IOException e) {
                e.printStackTrace();
            } catch (XmlPullParserException e) {
                Log.e("XMLPullParser: ", e.getMessage());
            }
        }

    });
}
}

ご覧のとおり、テスト目的で、W3Schools から Web サービスに接続してみました。これは完全に機能しますが、電話と同じネットワークで到達可能な Web サービスに接続しようとすると、LogCat から次のエラーしか表示されません。

10-11 10:11:21.435: E/XMLPullParser:(1043): unexpected type (position:END_DOCUMENT null@1:1 in java.io.InputStreamReader@41a790d8) 

私が到達しようとしている方法は次のとおりです。

wsdl:operation name="SupportedMessageTypes">
<wsdl:input wsaw:Action="http://tempuri.org/IIOService/SupportedMessageTypes" message="tns:IIOService_SupportedMessageTypes_InputMessage"/>
<wsdl:output wsaw:Action="http://tempuri.org/IIOService/SupportedMessageTypesResponse" message="tns:IIOService_SupportedMessageTypes_OutputMessage"/>
</wsdl:operation>

このエラーは、androidHttpTransport.call(SOAP_ACTION, envelope);これを AsyncTask に配置する必要があることを知っています。すべてのネットワーク操作はそのように構築する必要があるため、文句を言わないでください。

WCF テスト クライアントからの要求 XML は次のとおりです。

 <s:Envelope xmlns:a="http://www.w3.org/2005/08/addressing" xmlns:s="http://www.w3.org/2003/05/soap-envelope">
  <s:Header>
    <a:Action s:mustUnderstand="1">http://tempuri.org/IIOService/SupportedMessageTypes</a:Action>
    <a:MessageID>urn:uuid:5c3f721a-f0d6-4be9-9699-10b48a2ee146</a:MessageID>
    <a:ReplyTo>
      <a:Address>http://www.w3.org/2005/08/addressing/anonymous</a:Address>
    </a:ReplyTo>
  </s:Header>
  <s:Body>
    <SupportedMessageTypes xmlns="http://tempuri.org/" />
  </s:Body>
</s:Envelope>

および応答 XML

<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing">
  <s:Header>
    <a:Action s:mustUnderstand="1">http://tempuri.org/IIOService/SupportedMessageTypesResponse</a:Action>
    <a:RelatesTo>urn:uuid:85436e79-86bb-4370-843c-b1047975b864</a:RelatesTo>
  </s:Header>
  <s:Body>
    <SupportedMessageTypesResponse xmlns="http://tempuri.org/">
      <SupportedMessageTypesResult xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
        <b:string>EurodacTestReplyGenerator</b:string>
        <b:string>EurodacBlock</b:string>
      </SupportedMessageTypesResult>
    </SupportedMessageTypesResponse>
  </s:Body>
</s:Envelope>

このエラー メッセージに関するヒントを教えてください。

前もって感謝します!

4

1 に答える 1

1

SOAP_ACTIONNAMESPACE + METHOD

だから、それはあなたがあなた自身のサービスを呼び出す際に間違っていると私が思うところです。

メソッドと名前空間の割り当てを修正したと仮定すると、次のように動作するはずです。

final String NAMESPACE = "http://tempuri.org/";
final String SOAP_ACTION = "http://tempuri.org/IIOService/SupportedMessageTypes";
final String METHOD_NAME = "SupportedMessageTypes";
于 2012-10-11T10:35:41.563 に答える