I'm trying to figure out how to send a complex object through javascript to my C# webservice.
Here xml string:
<?xml version="1.0" encoding=utf-8?><soap:Envelope xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body>
<SaveResponse xmlns="http://tempuri.org/">
<RL>
<response_entries>
<ResponseEntry>
<response_id>string</response_id>
<account_id>string</account_id>
<organization_id>string</organization_id>
<form_header_id>string</form_header_id>
<status>string</status>
<field0>string</field0>
<field1>string</field1>
<field99>string</field99>
</ResponseEntry>
<ResponseEntry>
<response_id>string</response_id>
<account_id>string</account_id>
<organization_id>string</organization_id>
<form_header_id>string</form_header_id>
<status>string</status>
<field0>string</field0>
<field1>string</field1>
<field99>string</field99>
</ResponseEntry>
</response_entries>
</RL>
</SaveResponse>
Example of what I'm trying to send:
