I need to test a .Net method in a REST WCF Service, that require passing in a DataTable and also return a DataTable:
DataTable TryPostDataTable(DataTable dataTable);
In my Java test code, I used HtttClient to send a Post request to this service. It has the header:
"Content-Type", "text/xml; charset=utf-8"
and body:
<TryPostDataTable xmlns="http://tempuri.org/">
<dataTable>
<Person>
<name>A Name</name>
<age>An Age</age>
</Person>
</dataTable>
</TryPostDataTable>
But when the service receive the request, the dataTable variable always become an empty DataTable instance, with no rows and columns
If I change the dataTable's type to String, and change the Post body to :
<TryPostDataTable xmlns="http://tempuri.org/">
<datatable>
TestString
</datatable>
</TryPostDataTable>
Then it parses the request properly.
I can not figure out how to pass a DataTable object through HttpPost. What is wrong with the parsing process from XML to DataTable in the Rest service? Or my Post is not correct?
Any help will be really appreciated.
//Edit 1:
I tried to used this code to generate the xml content:
DataTable dtEmployee = new DataTable("Person");
dtEmployee.Columns.Add("Name", typeof(string));
dtEmployee.Columns.Add("Age", typeof(string));
dtEmployee.Rows.Add("A Name", "An Age");
dtEmployee.WriteXml(@"C:\Working\Employee.xml", XmlWriteMode.WriteSchema);
which will generate:
<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="Person" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Person">
<xs:complexType>
<xs:sequence>
<xs:element name="Name" type="xs:string" minOccurs="0" />
<xs:element name="Age" type="xs:string" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
<Person>
<Name>A Name</Name>
<Age>An Age</Age>
</Person>
Then I use httpPost to send this xml to the TryPostDataTable method.
The Service now successfully parse the schema and generate a "Person" table, with 2 columns "Name" - "Age", assigned to variable dataTable. But with no row - no data inside.