I am trying to send an XML string to another web page via the query string in VB.Net. I have created the XML string from a data set using ds.GetXML and assigned it to a string variable (strTestXML = ds.GetXML). The strTestXML is passed in the query string.
Only the first XML tag is getting received (<NewDataSet>) and nothing more. The complete strTestXML string content is:
<NewDataSet>
<Customers>
<SESSIONID>12345678914</SESSIONID>
<CUSTOMERNAME>Liz White</CUSTOMERNAME>
<CUSTOMERID>1234567894</CUSTOMERID>
<DOB>03/03/2004</DOB>
<DUMMY>1</DUMMY>
</Customers>
<Customers>
<SESSIONID>12345678925</SESSIONID>
<CUSTOMERNAME>Marian White</CUSTOMERNAME>
<CUSTOMERID>1234567815</CUSTOMERID>
<DOB>02/03/2005</DOB>
<DUMMY>2</DUMMY>
</Customers>
</NewDataSet>
I have eliminated all line feeds (vblf) prior to sending it in the URL.
Any suggestions?
rickwat
Only the first XML tag is getting received (<NewDataSet>) and nothing more. The complete strTestXML string content is:
<NewDataSet>
<Customers>
<SESSIONID>12345678914</SESSIONID>
<CUSTOMERNAME>Liz White</CUSTOMERNAME>
<CUSTOMERID>1234567894</CUSTOMERID>
<DOB>03/03/2004</DOB>
<DUMMY>1</DUMMY>
</Customers>
<Customers>
<SESSIONID>12345678925</SESSIONID>
<CUSTOMERNAME>Marian White</CUSTOMERNAME>
<CUSTOMERID>1234567815</CUSTOMERID>
<DOB>02/03/2005</DOB>
<DUMMY>2</DUMMY>
</Customers>
</NewDataSet>
I have eliminated all line feeds (vblf) prior to sending it in the URL.
Any suggestions?
rickwat