Set the value of the format attribute of the tag to xml : XML data « Data Model « Flex






Set the value of the format attribute of the tag to xml

           
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" verticalGap="10">
  <mx:WebService id="ws"
                   wsdl="http://api.google.com/GoogleSearch.wsdl" useProxy="true">
    <mx:operation name="doGoogleSearch" resultFormat="xml">
      <mx:request format="xml">
        <ns1:doGoogleSearch xmlns:ns1="urn:GoogleSearch"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xmlns:xsd="http://www.w3.org/2001/XMLSchema">
          <key xsi:type="xsd:string">XYZ123</key>
          <q xsi:type="xsd:string">Balloons</q>
          <start xsi:type="xsd:int">0</start>
          <maxResults xsi:type="xsd:int">10</maxResults>
          <filter xsi:type="xsd:boolean">true</filter>
          <restrict xsi:type="xsd:string" />
          <safeSearch xsi:type="xsd:boolean">
            false
          </safeSearch>
          <lr xsi:type="xsd:string" />
          <ie xsi:type="xsd:string">latin1</ie>
          <oe xsi:type="xsd:string">latin1</oe>
        </ns1:doGoogleSearch>
      </mx:request>
    </mx:operation>
  </mx:WebService>
  <mx:Button label="Search" click="ws.doGoogleSearch()" />
</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Displaying hierarchical XML dataDisplaying hierarchical XML data
2.Declare XML variableDeclare XML variable
3.Using the XML component to embed XML
4.Using the XML class to embed XML
5.Using XML class's static propertiesUsing XML class's static properties
6.Using the source property to filter and bind to XML data
7.Populating XML by binding external dataPopulating XML by binding external data
8.XML used for E4X examples
9.Looping over an XML structure using its indexLooping over an XML structure using its index
10.Looping over an XML fragmentLooping over an XML fragment
11.Adding a child XML node at the endAdding a child XML node at the end
12.For each variable from xml dataFor each variable from xml data
13.Use XMListCollection removeItemAt() method to remove the itemUse XMListCollection removeItemAt() method to remove the item
14.Load Date range data from XMLLoad Date range data from XML
15.Use URLLoader to load XML data from server
16.Construct XML data from returning result from service call
17.Load XML data from server with URLLoader
18.Use reference XML data element and attributeUse reference XML data element and attribute
19.An data model with binding destinations in curly bracesAn <mx:XML> data model with binding destinations in curly braces
20.Define data Model structure with xml
21.Reference attribute value in XML modelReference attribute value in XML model
22.Model with a simple XML structure
23.XML data
24.Get value from XML data by using namespaceGet value from XML data by using namespace
25.Get XML from PhpGet XML from Php
26.Navigate an XML Document in E4X
27.Encode an ActionScript Data Object as XML
28.Populate a Component with Complex XML Data
29.Binding XML to ListBinding XML to List
30.Binding XML data to LabelBinding XML data to Label
31.External XML File
32.Bind to Properties on XML by Using E4XBind to Properties on XML by Using E4X
33.Use XPath to get data
34.Use Regular Expressions in E4X Queries
35.Looping over nodes as keysLooping over nodes as keys
36.Inserting a node after an existing one
37.Using || (or) notationUsing || (or) notation
38.Reference Repeated ComponentsReference Repeated Components
39.Referene Repeated Child ComponentsReferene Repeated Child Components
40.Reference Nested ComponentsReference Nested Components
41.Adding and removing leaf nodes at run timeAdding and removing leaf nodes at run time
42.namespace variablenamespace variable