2012-05-01 61 views
0

我正在使用Flex Builder 3和Visual Studio 2010 我已經創建了webService.asmx和default.aspx。 我想在default.aspx中使用這個swf文件。 我想動態地將Web服務URL傳遞給我的SWF文件。 我MXML包含此代碼使用Asp.net將Web Service Url傳遞給Flex 3

<mx:WebService id="webService" 
    wsdl="" 
    useProxy="true" 
    fault="Alert.show(event.fault.faultString), 'Error'"> 
     <mx:operation name="addData" 
      resultFormat="object"     
      result="AddRecord();" 
      /> 
</mx:WebService> 

我想通過WSDL動態 即http://localhost:12345/flexProject/WebService.asmx?wsdl<mx:WebService wsdl="">

我怎樣才能做到這一點?

回答