I would like to get the information of an Object.
I call a Webservice form a client, and get the response.
Object result = envelope.getResponse();
The Webservice returns an ArrayList<String>
How do I access the data ?
The Webservice fills the ArrayList like this, the information are parsed from a XML file.
tempDataStorage.add(getValue("ITEM_NAME", element));
tempDataStorage.add(getValue("VALUE", element));
tempDataStorage.add(getValue("CURRENCY", element));
tempDataStorage.add(getValue("DESCRIPTION", element));
return tempDataStorage;
To be more specific:
How can I get the ITEM_NAME, VALUE, CURRENCY, DESCRIPTION into a String variables, on the Client side?
Please tell me, if you need me to provide more information.
Thank you!
resulttoArrayList<String>?