Expand my Community achievements bar.

Error in Importing webservice via ActionScript

Avatar

Level 1

Hi All

This is regarding the Webservice via ActionScript (Import->Web Service) for Flex 3

I am using the same method to import the webservice. The proxy classes are getting generated. I am using the following code for accessing the method:


   var myVar:Welcome = new Welcome();
   myVar.name = "shilpa";

    var myService:WelcomeNoteService = new WelcomeNoteService();
    myService.addwelcomeEventListener(handleResult);
    myServ.addWelcomeNoteServiceFaultEventListener(handleFault);

    myService.welcome(myVar);


Here Welcome is the function name in webservice (for which proxy class is generated) and WelcomeNoteService is the webservice name (for which proxy classes is also generated).

When I try to access 
public function handleResult(event:WelcomeResultEvent):void{
Alert.show(event.result.toString());
}
event.result is coming as null.

I have tried to debug also , but not able to find the error.

0 Replies