vote up 0 vote down star

hi guys,

im trying to return a string value from a method inside my script tag however it always returns an object and i cant get at the string value.

Here is the code:

i retrieve the object returned from a webservice call;;

    private function getNameResults(e:ResultEvent):String{
     var name:Array = new Array(e.result);
     var site:String = site_names[0].toString();
     Alert.show("site - " +site);
     return site;
}

the alert prints out the name fine, however when i try use the value in my next method (which calls the web service which calls getNameResults) i get the object tag

private function getInfo(roomName:String):String{
    var site:String =userRequest.getRoomZoneInfo(roomName);
    return site;
}

however the value returned here is [object AsyncToken]

any ideas?

flag

4 Answers

vote up 2 vote down check

you are setting the result of getRoomZoneInfo() to the variable site, but you are casting it as a String. getRoomZoneInfo is returning an object, and because the variable you are sticking it in is a string it is like calling .toString() on the object, which yeilds the [object AsyncToken]. Basically if getRoomZoneInfo is a webservice call, you cannot get the information you are looking for here, you have to wait until the result comes back and get the string you are looking for there. Make sense?

link|flag
vote up 1 vote down

Your getInfo() method isn't calling getNameResults(). It's calling getRoomZoneInfo(). I don't know what that method does, but I'm guessing it's returning an Object, not a String.

link|flag
vote up 0 vote down

yeah thats the webservice call, when the result comes in it calls getNameResults

link|flag
You need to expand the code you are showing then. At the moment, it just looks like you are calling the wrong method. We'd need to see the code that calls getNameResults() – David Arno Jan 22 at 16:17
vote up 0 vote down

ok cool, i see what our saying,will try it out

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.