0
アンドロイドアプリで適切な応答を得る方法。私のAPI元の応答はSOAPUIソフトウェアsoap api with ksoap
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetSourcesResponse xmlns="...">
<GetSourcesResult>
<xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:MainDataTable="ITS" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="ITS">
<xs:complexType>
<xs:sequence>
<xs:element name="CM_CityID" type="xs:int" minOccurs="0"/>
<xs:element name="CM_CityName" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
<diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
<DocumentElement xmlns="">
<ITS diffgr:id="ITS1" msdata:rowOrder="0" diffgr:hasChanges="inserted">
<CM_CityID>645</CM_CityID>
<CM_CityName>Ahmednagar</CM_CityName>
</ITS>
<ITS diffgr:id="ITS2" msdata:rowOrder="1" diffgr:hasChanges="inserted">
<CM_CityID>2762</CM_CityID>
<CM_CityName>Airoli</CM_CityName>
</ITS>
</DocumentElement>
</diffgr:diffgram>
</GetSourcesResult>
</GetSourcesResponse>
の表示であり、私は適切な元の応答 はplzは私を助けてもらうためにどのように
getResponse
{
getResponseResult=anyType
{
schema=anyType
{
element=anyType
{
complexType=anyType
{
choice=anyType
{
element=anyType
{
complexType=anyType
{
sequence=anyType
{
element=anyType{};
element=anyType{};
};
};
};
};
};
};
};
diffgram=anyType{};
};
}
のような応答を取得するには、このAPIを呼び出します... ..おめでとうございます。
この問題はどのように解決されますか? – Rao
それは 'どのようにアンドロイドアプリで適切な応答を得るために'対処しています –