Hello,
I have a string which is xml data which is very nicely indented and well formed.
Dim xmlstring as string
I am trying to pass the above mentioned string to a Java Web Service but the input parameter datatype is string array. I am converting the string to string array as shown below
localws.receiveNotification("TestQueue", xmlstring.ToString().Split(CChar("")))
As the datatype for the input parameter in the above webservice is string() array for some reason my XML data is getting messed up and lot of elements are breaking and appearing in two lines and my xml data is no more well formed.
Thanks in advance