I have a web service that allows the program to call a function with a URL Encoded Sql statement that will return the results in xml format. So far I have been unable to accomplish this using HTTPUtils2 I then need to parse the xml into a table that I've already created. The get statement I would issue is http://MyServer/Service/Service1.asmx?op=GetSQL&strSQL=SELECT UNO, BRKRNO, EFL FROM EmpTbl Where UNO = 'itx2'" (The select statement would need to be URL Encoded) and the results I get which also matches the table structure. Please help as I'm fairly new to B4a
<?xml version="1.0" encoding="UTF-8"?>
<string xmlns="My Server/Serice"><NewDataSet> <Table> <UNO>itx2</UNO> <BRKRNO>BOISE</BRKRNO> <EFL>Loise TX 2</EFL> </Table> </NewDataSet></string>
<?xml version="1.0" encoding="UTF-8"?>
<string xmlns="My Server/Serice"><NewDataSet> <Table> <UNO>itx2</UNO> <BRKRNO>BOISE</BRKRNO> <EFL>Loise TX 2</EFL> </Table> </NewDataSet></string>