Android搭載デバイスを.NET wcfサーバーに接続するプロジェクトに取り組んでいます。
私が抱えている問題は、SOAP エンベロープのレイアウトにあります。soapUI を使用してリクエストを送信すると、リクエストは適切に処理されます。ただし、Ksoap2 for Android を使用すると、SOAP リターン エンベロープ内で null 値が返されます。サーバーは、HTTP コード =200(OK) の要求があったことをログに記録します。
soapUI で使用されているものと同じ SOAP エンベロープを作成するように KSOAP2 をセットアップするにはどうすればよいですか?
これは、soapUI を使用した作業要求です。これがレイアウトの外観です。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
<soapenv:Header/>
<soapenv:Body>
<tem:GetPerson>
<tem:name>Roel</tem:name>
</tem:GetPerson>
</soapenv:Body>
</soapenv:Envelope>
そしてsoapUIで返す
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<GetPersonResponse xmlns="http://tempuri.org/">
<GetPersonResult xmlns:a="http://schemas.datacontract.org/2004/07/StageService1" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<a:Age>21</a:Age>
<a:Name>Roel</a:Name>
</GetPersonResult>
</GetPersonResponse>
</s:Body>
</s:Envelope>
石鹸封筒のダンプを作成しました。これは、Android アプリから送信すると、レイアウトがどのように見えるかです。
<v:Envelope xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:c="http://schemas.xmlsoap.org/soap/encoding/" xmlns:v="http://schemas.xmlsoap.org/soap/envelope/">
<v:Header />
<v:Body>
<GetPerson xmlns="http://tempuri.org/" id="o0" c:root="1">
<n0:name i:type="d:string" xmlns:n0="tem">Roel</n0:name>
</GetPerson>
</v:Body>
</v:Envelope>
そして、この依頼の返信用封筒
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<GetPersonResponse xmlns="http://tempuri.org/">
<GetPersonResult i:nil="true" xmlns:a="http://schemas.datacontract.org/2004/07/StageService1" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"/>
</GetPersonResponse>
</s:Body>
</s:Envelope>
出力レイアウトをsoapUIから送信したものと同じにする方法を誰か説明できますか?
完全なアプリケーションからの私のコード:
private static final String SOAP_ACTION = "http://tempuri.org/IService1/GetPerson";
private static final String METHOD_NAME = "GetPerson";
private static final String NAMESPACE = "http://tempuri.org/";
private static final String URL = "http://192.168.4.231/TestWebservice/Service1.svc?wsdl";
try {
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
Log.e("debug","Creating new soap object");
PropertyInfo pi = new PropertyInfo();
pi.setNamespace("tem");
pi.setName("name");
pi.setValue("Roel");
request.addProperty(pi);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
Log.e("debug","Creating new soap envelope");
envelope.dotNet=true;
envelope.setOutputSoapObject(request);
Log.e("debug","setoutput soap object");
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("192.168.13.8", 8080));
HttpTransportSE androidHttpTransport = new HttpTransportSE(proxy, URL);
Log.e("debug","new http transport init");
androidHttpTransport.debug = true;
androidHttpTransport.call(SOAP_ACTION, envelope);
Log.e("debug","http transport call");
System.out.println(androidHttpTransport.requestDump);
System.out.println(androidHttpTransport.responseDump);
SoapObject result = (SoapObject)envelope.getResponse();
Log.e("debug","get response");
tv.setText( ""+result);
} catch (Exception e) {
tv.setText(e.getMessage());
Log.e("error","somthing went wrong!!");
e.toString();
System.out.println(e);
}
前もって感謝します、
ファビアン