Justin,
I'm working on a concept where we would call a web service (ours) from Method. The web service would return a comma-separated list of values that would be specific to, say, for example, the Invoice table. I would like the returned value to be parsed as an array and then loop through each individual value... something like this:
Call web service https://www.domain.com/webservice.whatever?var1=x,var2=y and assign return value to action result webServiceResponse
Web service response = 1,2,3
Explode webServiceResponse to aray.
foreach (webServiceResponse as webServiceEach) {
do something with webServiceEach
}
Make sense?