Hi All, i am reading data from a webservice (creator - xml templater - httpCaller) and the data i receive back is not in the format i expected..... Do i need to play with encoding or something else here ?
i have truncated the xml to just a small section included below.
i receive:
- <DocumentElement>
- <Results_x0020_for_x0020__x0027_Index_x003D_survey_x0026_StreetName_x003D_KASHMIR_x0020_RD_x0026_StreetNo_x003D_31_x0027_>
- <Global_x0020_Council_x0020_ID>20060926T154516_3_Rodney</Global_x0020_Council_x0020_ID>
- <Asset_x0020_No.>36848</Asset_x0020_No.>
- <Contract_x0020_No.>3853</Contract_x0020_No.>
- <Contractor>Project Max</Contractor>
- <Date_x0020_Inspected>26/09/2006</Date_x0020_Inspected>
- <Completion_x0020_Status>IC</Completion_x0020_Status>
i was expecting more like this below , ie without the "_x0020_" etc values
- DocumentElement>
- …
- <Resultsfor'Index=survey&StreetName;=KASHMIR RD&StreetNo;=31’>
- <Global Council ID>20060926T154516_3_Rodney</Global Council ID>
- <Asset No.>36848</Asset No.>
- <Contract No.>3853</Contract No.>
- <Contractor>Project Max</Contractor>
- <Date Inspected>26/09/2006</Date Inspected>
- <Completion Status>IC</Completion Status>
Any hints or suggestions on how to remedy this ?
Thanks Steve