get the value that the web services send back. Is there a way to
fix this problem?
<mx:Script>
<![CDATA[
public function GetHelloWorld():void
{
CustomerServices.HelloWorld.send();
temp = CustomerServices.HelloWorld.result;
mx.controls.Alert.show(temp);
}
]]>
</mx:Script>
<mx:WebService
wsdl="http://localhost/Flex2T_WebServiceTest/Service1.asmx?wsdl"
id="CustomerServices"
fault="mx.controls.Alert.show(event.fault.faultstring)"
>
</mx:WebService>
<mx:Button click="this.GetHelloWorld();" label="Push Me"/ >
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
| Web site design development | Computer software development | Software design and development |
| Macromedia flex | Software development best practice |
YAHOO! GROUPS LINKS
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

