Android で ksoap を介して WCF サービスにカスタム オブジェクトを送信しようとしています。以下のコードがあります。
String METHOD_NAME = "MyMethod";
String INTERFACE = "IMyInterface";
String NAMESPACE = "http://tempuri.org/";
String SOAP_ACTION = NAMESPACE + INTERFACE + "/" + METHOD_NAME;
request = new SoapObject(NAMESPACE, METHOD_NAME);
request.addProperty("APIKey", API_KEY);
request.addProperty("AuthToken", AuthToken);
request.addProperty("UserID", 1);
SoapObject test1 = new SoapObject(DATA_NAMESPACE, "MyCustomObject");
test1.addProperty("ID", 1);
test1.addProperty("UserID", 1);
test1.addProperty("Name", "Test");
request.addSoapObject(test1);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.addMapping(DATA_NAMESPACE, "MyCustomObject", new MyCustomObject().getClass());
envelope.setOutputSoapObject(request);
HttpTransportSE httpTransport = new HttpTransportSE(URL);
httpTransport.debug = true;
int id = 0;
try {
httpTransport.call(SOAP_ACTION, envelope);
SoapPrimitive result = (SoapPrimitive)envelope.getResponse();
id = Integer.parseInt(result.toString());
} catch (Exception e) {
String requestDump = httpTransport.requestDump;
String responseDump = httpTransport.responseDump;
throw e;
}
呼び出しが実際に Web サーバーに対して行われていることはわかっています。APIKey、AuthToken、および UserID からの値はすべて、そこに正常に到達します。ただし、MyCustomObject
どの値もそこに到達しません。オブジェクトはそうしますが、値が取り除かれています。
調べてrequestDump
みたところ、以下のことがわかりました。
<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>
<MyMethod xmlns="http://tempuri.org/" id="o0" c:root="1">
<APIKey i:type="d:string">MyAPIKey</APIKey>
<AuthToken i:type="d:string">MyAuthToken</AuthToken>
<UserID i:type="d:int">1</UserID>
<MyCustomObject i:type="n0:MyCustomObject" xmlns:n0="http://schemas.datacontract.org/2004/07/MyDataNamespace.Data">
<ID i:type="d:int">1</ID>
<UserID i:type="d:int">1</UserID>
<Name i:type="d:string">Test</Name>
</MyCustomObject>
</MyMethod>
</v:Body>
</v:Envelope>
次に、簡単な小さな .net コンソール クライアントを作成し、まったく同じアクションを実行しました。しかし、.net クライアントからの requestDump を分析したところ、次の結果が得られました。
{<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://tempuri.org/IMyInterface/MyMethod</Action>
</s:Header>
<s:Body>
<MyMethod xmlns="http://tempuri.org/">
<APIKey>MyAPIKey</APIKey>
<AuthToken>MyAuthToken</AuthToken>
<UserID>1</UserID>
<MyCustomObject xmlns:d4p1="http://schemas.datacontract.org/2004/07/MyDataNamespace.Data" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<d4p1:Name>Test</d4p1:Name>
<d4p1:ID>1</d4p1:ID>
<d4p1:UserID>1</d4p1:UserID>
</MyCustomObject>
</MyMethod>
</s:Body>
</s:Envelope>}
これらの部分と XML を比較した結果、MyCustomObject のプロパティに名前空間プレフィックス d4p1 が付けられていることに気付きました。Java クライアントでは、本来あるべきように、プロパティの前に n0 が付きません。これは、これが切断であり、オブジェクトのプロパティが削除されている理由を教えてくれます。問題は、その名前空間プレフィックスをドキュメントに追加するように ksoap に指示するにはどうすればよいですか??
編集
また、これは KVMSerializable を実装する私のクラスです。
public class MyCustomObject implements KvmSerializable {
public int ID;
public int UserID;
public String Name;
public MyCustomObject() { }
public String getName() { return Name; }
public int getID() { return ID; }
public int getUserID() { return UserID; }
public void setName(String name) { Name = name; }
public void setID(int ID) { ID = ID; }
public void setUserID(int userID) { UserID = userID; }
public Object getProperty(int index) {
switch (index) {
case 0: return ID;
case 1: return UserID;
case 2: return Name;
}
return null;
}
public void setProperty(int index, Object value) {
switch (index) {
case 0: ID = Integer.parseInt(value.toString()); break;
case 1: UserID = Integer.parseInt(value.toString()); break;
case 2: Name = value.toString(); break;
}
}
public int getPropertyCount() { return 3; }
public void getPropertyInfo(int index, Hashtable arg1, PropertyInfo info) {
switch (index) {
case 0:
info.type = PropertyInfo.INTEGER_CLASS;
info.name = "ID";
break;
case 1:
info.type = PropertyInfo.INTEGER_CLASS;
info.name = "UserID";
break;
case 2:
info.type = PropertyInfo.STRING_CLASS;
info.name = "Name";
break;
}
}
}
編集1
私の2番目の問題では、問題はプロパティの順序でした。提案どおりに SoapUI を使用すると、サーバーが期待するプロパティのレイアウトが表示されました。上記の代わりにこれを行う必要があります。
test1.addProperty("Name", "Test");
test1.addProperty("ID", 1);
test1.addProperty("UserID", 1);