Hello,

I am experimenting with flash mx 2004 pro.

Here is what I have done so far

I have a .NET (C#) web service that has two functions Test1 and Test2

Test1 return type is void and takes one "out" parameter.
Test2 return type is also void but takes two "out" parameters.

When I call the Test1 function the WebServiceConnector.results member comes
back as "string" and has the value returned from the function Test1.

The problem is with the second function. When I trace out the
WebServiceConector's result member like

on(result)
{
trace ("results =" + this.results);
}

I only get trace out put as
results = [object object]

How can I extract the values returned from function Test2 ?

When I look at the Webservices panel in Flash, It looks like, flash creates
results as structure with the two out parameters as structure members, how can
I extract these values ?

--Aalok