Pradyumna needs help with Flex. Can some geeks flex this out ? ---------- Forwarded message ---------- Date: 18 May 2009 13:01:25 -0000 From: Pradyumna Subject: Consuming .NET Web Service in Flex 3
hi, i am trying to integrate a .net web service with flex 3.the pieces of information i found on the net helped me write the following piece of code in flex 3 buillder.the problem is neither an error nor a success is being resulted in.the web service is functioning correctly when called from a .net web application.here's the flex code help would be greatly appreciated. <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" > <mx:webservice id="Myservice1" wsdl="http://localhost//webservice//Myservice//Service.asmx?WSDL"> </mx:webservice> <mx:Button click="Myservice1.HelloWorld.send()"></mx:Buton> <mx::Label text="{Myservice1.HelloWorld.result"}></mx:Label> </mx:Application>

