Hi All,
I am developing application on SUP and I connected WebService as a data source for my MBO. I have used the following WSDL
http://www.webservicex.net/airport.asmx?WSDL
This webservice contains no of methods, I am using the method GetAirportInformationByAirportCode, which takes airport code and returns back the airport information. Now I created a blackberry application using the DAD, after execution of the method I am capturing the result a editbox and also tried for listdetail. When I run this app on BB Simulator, the output is coming as **TRUNCATED** <NewDataSet> .... When I test execute this method the output is in the form
<NewDataSet> <Table> <AirportCode>MAA</AirportCode> <CityOrAirportName>MADRAS MENMBARKAM</CityOrAirportName> <Country>India</Country> <CountryAbbrviation>IN</CountryAbbrviation> <CountryCode>733</CountryCode> <GMTOffset>-5.5</GMTOffset> <RunwayLengthFeet>10050</RunwayLengthFeet> <RunwayElevationFeet>50</RunwayElevationFeet> <LatitudeDegree>13</LatitudeDegree> <LatitudeMinute>5</LatitudeMinute> <LatitudeSecond>0</LatitudeSecond> <LatitudeNpeerS>N</LatitudeNpeerS> <LongitudeDegree>80</LongitudeDegree> <LongitudeMinute>17</LongitudeMinute> <LongitudeSeconds>0</LongitudeSeconds> <LongitudeEperW>E</LongitudeEperW> </Table> <Table> <AirportCode>MAA</AirportCode> <CityOrAirportName>MADRAS MENMBARKAM</CityOrAirportName> <Country>India</Country> <CountryAbbrviation>IN</CountryAbbrviation> <CountryCode>733</CountryCode> <GMTOffset>-5.5</GMTOffset> <RunwayLengthFeet>10050</RunwayLengthFeet> <RunwayElevationFeet>50</RunwayElevationFeet> <LatitudeDegree>13</LatitudeDegree> <LatitudeMinute>5</LatitudeMinute> <LatitudeSecond>0</LatitudeSecond> <LatitudeNpeerS>N</LatitudeNpeerS> <LongitudeDegree>80</LongitudeDegree> <LongitudeMinute>17</LongitudeMinute> <LongitudeSeconds>0</LongitudeSeconds> <LongitudeEperW>E</LongitudeEperW> </Table></NewDataSet>
The output is not a single element but contains no of nodes, I need to know how to process this result and bring it on to format where I can pick the values and display in ui elements, like how we can do when we parse an XML and display results.
Thanks
Regards,
Priya