Define name space for WebService : WebService « Data Model « Flex






Define name space for WebService

Define name space for WebService
          
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*"
  pageTitle="Test">
  <mx:Script>
    
    import mx.controls.Alert;
    public var myNamespace:Namespace=new Namespace("http://server.com/");
  </mx:Script>
  <mx:WebService id="WS" 
                 wsdl="http://server.com/service?wsdl"
               fault="Alert.show(event.fault.faultString),'Error'">
    <mx:operation name="GetQuote" resultFormat="e4x">
      <mx:request>
        <symbol>para</symbol>
      </mx:request>
    </mx:operation>
  </mx:WebService>
  <mx:HBox>
    <mx:Button label="Get Quote" click="WS.GetQuote.send()"/>
    <mx:Text text="{WS.GetQuote.lastResult.myNamespace::GetQuoteResult.StockQuote.Price}"/>
  </mx:HBox>
</mx:Application>

   
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Feed returning value from WebService to a DataGridFeed returning value from WebService to a DataGrid
2.A load event for WebServiceA load event for WebService
3.A fault event for WebServiceA fault event for WebService
4.Call service with WebService
5.Call web service wsdl with WebService and operation in MXML
6.Call WebService with ActionScript
7.Call WebService with operation names
8.Explicit parameter passing with RemoteObject and WebService componentsExplicit parameter passing with RemoteObject and WebService components
9.WebService error eventWebService error event
10.Get result for WebService callGet result for WebService call
11.Convert returning value from WebService to ArrayCollectionConvert returning value from WebService to ArrayCollection
12.Call a web service
13.Use a web service to process form input dataUse a web service to process form input data
14.Call a web service and assign returning value to form controlsCall a web service and assign returning value to form controls
15.Call web service with operation defined
16.Call a web service that queries a SQL database and returns data to Flex
17.Web Service Fault EventWeb Service Fault Event
18.Web Service Multiple OperationsWeb Service Multiple Operations
19.Web Service OperationWeb Service Operation
20.Web Service Result Event
21.Web Service With Bindings
22.Web Service Bounded ParamsWeb Service Bounded Params
23.Get DataSet from ASP.net web service
24.Call Asp.net asmx web service
25.Call Asp.net web service and pass parameters
26.Use Web service to validate inputUse Web service to validate input
27.Adding a web service to process form input data.
28.Call WSDL serviceCall WSDL service
29.Call method in WSDL file
30.Create a namespace object for soap:BodyCreate a namespace object for soap:Body