Adobe
Products
Acrobat
Creative Cloud
Creative Suite
Digital Marketing Suite
Digital Publishing Suite
Elements
Photoshop
Touch Apps
Student and Teacher Editions
More products
Solutions
Creative tools for business
Digital marketing
Digital media
Education
Financial services
Government
Web Experience Management
More solutions
Learning Help Downloads Company
Buy
Home use for personal and home office
Education for students, educators, and staff
Business for small and medium businesses
Licensing programs for businesses, schools, and government
Special offers
Search
 
Info Sign in
Welcome,
My cart
My orders My Adobe
My Adobe
My orders
My information
My preferences
My products and services
Sign out
Why sign in? Sign in to manage your account and access trial downloads, product extensions, community areas, and more.
Adobe
Products Sections Buy   Search  
Solutions Company
Help Learning
Sign in Sign out My orders My Adobe
Preorder Estimated Availability Date. Your credit card will not be charged until the product is shipped. Estimated availability date is subject to change. Preorder Estimated Availability Date. Your credit card will not be charged until the product is ready to download. Estimated availability date is subject to change.
Qty:
Purchase requires verification of academic eligibility
Subtotal
Review and Checkout
Adobe Developer Connection / Flex Developer Center /

Exercise 3.4: Passing data to the server with the WebService class

by Trilemetry

Trilemetry
  • Trilemetry, Inc.

Content

  • Create the WebService instance
  • Initialize the data transfer
  • Use the Network Monitor to view the result data
  • Handling the result event

Modified

2 May 2011

Page tools

Share on Facebook
Share on Twitter
Share on LinkedIn
Bookmark
Print
Flash Builder 4.5 for PHP St... Flex RIA

Requirements

Prerequisite knowledge

  • Exercise 1.1: Setting up Flash Builder and your project files
  • Exercise 2.5: Retrieving and handling data with WebService
  • Exercise 3.3: Dispatching a value object from the custom component

User level

All

Required products

  • Flash Builder 4.5 Premium (Download trial)

Exercise files

  • ex3_04_web_starter.zip
  • ex3_04_web_solution.zip

In this exercise, you will use the WebService component to send data to a server to insert it into the database. You will also handle the confirmation message from the server to display in an alert dialog box (see Figure 1).

Remember that, in a previous exercise, you consolidated the form data in a value object and dispatched it from a custom component using a custom event.

Preview the application.
Figure 1. Preview the application.

In this exercise, you will learn how to:

  • Create the WebService instance
  • Initialize the data transfer
  • Use the Network Monitor to view the result data
  • Handling the result event

Create the WebService instance

In this section you will create a WebService instance that will be used to send information to the server.

  1. Download the ex3_04_web_starter.zip file if you haven't already and extract the ex3_04_ web_starter.fxp to your computer.
  2. Open Flash Builder.
  3. Import the ex3_04_ web_starter.fxp project file.
  4. From the Package Explorer view, open the ex3_04_web_starter.mxml file.
  5. Within the Declarations block, below the WebService instance, type Web and press Ctrl+Space to show the code templates with the content assist tool and create another WebService instance.    
<s:WebService id="employeeService" wsdl="http://www.adobetes.com/f45iaw100/remoteData/EmployeeData.cfc?wsdl" result="employeeService_resultHandler(event)" fault="employeeService_faultHandler(event)"/> <s:WebService id="service" wsdl="wsdl" useProxy="false" showBusyCursor="true" result="onResult(event)" fault="onFault(event)"/> </s:WebService> </fx:Declarations>
  1. Modify the inserted code so that the WebService instance is one tag and not a tag block.
  2. To the new WebService object, modify the id property so it has a value of vehicleService and the wsdl property so it has a value of http://www.adobetes.com/f45iaw100/remoteData/vehicleRequestData.cfc?wsdl.
  3. Remove the useProxy, showBusyCursor, result, and fault properties from the WebService instance.
<s:WebService id="vehicleService" wsdl="http://www.adobetes.com/f45iaw100/remoteData/vehicleRequestData.cfc?wsdl"/>

    Note: This example generates the XML using an Adobe ColdFusion server, but you can use any server to generate the XML file. Refer to the Flex and ColdFusion, PHP, Java, or .NET integration pages for more information.

  1. Save the file.

Initialize the data transfer

In this section you will add the code to make the WebService request and transfer the Form container data, as a value object dispatched from a custom component using a custom event, to the server.

  1. Locate the component:VehicleRequestForm instance below the Declarations block.
  2. Note the vehicleRequestEvent property with a value of vehiclerequestform1_vehicleRequestEventHandler(event).

    The vehiclerequestform1_vehicleRequestEventHandler() function was created in Exercise 3.3 (Dispatching a value object from the custom component) to handle the vehicleRequestEvent custom event in the main application.

  3. Within the Script block, locate the vehiclerequestform1_vehicleRequestEventHandler() function.
  4. Within the function, delete the Alert.show() method.
  5. Use the vehicleService.addVehicleRequest() method to pass the event.vehicleRequestData value cast to the VehicleRequest class, to the server.
protected function vehiclerequestform1_vehicleRequestEventHandler(event:VehicleRequestEvent):void { vehicleService.addVehicleRequest(event.vehicleRequestData); }
  1. Save the file.

Use the Network Monitor to view the result data

Note: In order to complete this part of the exercise, you must have Flash Builder Premium Edition installed. If you have Flash Builder Standard Edition installed, skip this section and continue with the next section. If you want to download and install a trial version of Flash Builder Premium Edition, be sure to: 1) back up your existing workspace and projects; 2) uninstall Flash Builder Standard Edition; and then 3) install the trial version of Flash Builder Premium Edition. To compare the Standard Edition with the Premium Edition, check out the Upgrade Details page.

In this section you will use the Flash Builder Network Monitor to analyze the result of the vehicleService WebService object.

  1. For the vehicleService WebService object, use the content assist tool to generate the result event (see Figure 2).
Use the content assist tool to generate the result event.
Figure 2. Use the content assist tool to generate the result event.
  1. Use the content assist tool to generate a handler function for the result event (see Figure 3).
Generate a result handler function.
Figure 3. Generate a result handler function.
  1. Within the Script block, locate the vehicleService_resultHandler() function and delete the generated code stub.
  2. Save the file.
  3. Open the Network Monitor.
  4. Click the Enable Monitor button.
  5. Run the application.
  6. Select an employee, a pickup date and a return date, leave the Mobile Phone field empty and click Submit Request.

    You should see an error (see Figure 4).

Figure 4. An error is displayed when you submit the form.
Figure 4. An error is displayed when you submit the form.
  1. Return to Flash Builder.
  2. Double-click the Network Monitor tab to maximize it.
  3. Select the POST operation (see Figure 5).

    Note the red circle with an X in it, signifying an error has occurred.

    Note: If the workspace you are using has multiple projects open, you may not see the recording in the Network Monitor. Close all other projects and enable the monitor again for your current project and make sure the message in the Network Monitor view reads, "Enabled for project 'ex3_04_web_starter.'"

Figure 5. Select the POST operation.
Figure 5. Select the POST operation.
  1. Open the Response tab and switch to Raw View (see Figure 6).
Figure 6. Switch from Tree View to Raw View.
Figure 6. Switch from Tree View to Raw View.

    You should see the Response data. Notice the first line tells you that you have experienced the 500 Internal Server Error.

  1. Locate the message that reads: Field 'VEHICLEREQUESTS.MOBILEPHONE' cannot be a zero-length string (see Figure 7).
Figure 7. Locate the error message in the Response tab of the Network Monitor.
Figure 7. Locate the error message in the Response tab of the Network Monitor.

    Next, you will add a fault handler to show an Alert message when the Mobile Phone field is left blank.

  1. Double-click the Network Monitor tab to minimize the view.
  2. To the vehicleService WebService object, add a fault property and, using the content assist tool, generate the fault handler.
  3. Locate the vehicleService_faultHandler() method in the Script block and delete the generated code stub.
  4. Within the function add the Alert.show() method to display the event.fault.faultString value as the text in the Alert pop-up.
  5. Make the title of the alert message Fault Information.
protected function vehicleService_faultHandler(event:FaultEvent):void { Alert.show(event.fault.faultString,"Fault Information"); }
  1. Save the file.
  2. Run the application.
  3. Fill out everything except the Mobile Phone field in the form and click Submit Request.
  4. You should see the alert message displayed (see Figure 8).
Figure 8. View the alert message displaying the faultString value.
Figure 8. View the alert message displaying the faultString value.

Handling the result event

In this section you will use the WebService object's result event and the server to validate if the value object has been successfully written to the data table.

  1. Locate the vehicleService_resultHandler() function.
  2. Within the function, remove the generated code and use content assist to insert a code template for an if statement.
  3. Set the if statement to evaluate if the event.result.id value.
protected function vehicleService_resultHandler(event:ResultEvent):void { if(event.result.id) { } {
  1. Within the if statement, use the Alert.show() method to display the text: The request was submitted. The record id is and add the event.result.id value.
protected function vehicleService_resultHandler(event:ResultEvent):void { if(event.result.addStatusid) { Alert.show("The request was submitted. The record id is " + event.result.id); } }
  1. Save the file.
  2. Run the application.
  3. From the DropDownList control, choose an employee.
  4. In the Mobile Phone field, type 555-555-5555.
  5. Choose a Pickup Date and a Return Date, then click the Submit Request button.

You should see the Alert window displaying the message, You should see the Alert window display the message that your request was submitted successfully and you should also see the record id (see Figure 9).

Figure 9. View the message in the Alert dialog box.
Figure 9. View the message in the Alert dialog box.

In this exercise you learned how to use the daily project files and exercise files for Flex in a week. You also learned how to create a new Flex project and switch workspaces.

More Like This

  • Exercise 5.2: Defining selector styles
  • Exercise 3.1: Creating an event and dispatching the event object
  • Exercise 4.5: Creating and using item renderers and item editors
  • Exercise 3.2: Extending the event class to pass data in the event object
  • Exercise 2.5: Retrieving and handling data with the RemoteObject object
  • Exercise 2.6: Separating the model, view, and controller
  • Exercise 2.7: Creating an ActionScript class and instances
  • Exercise 2.8: Creating an ArrayCollection of value objects
  • Exercise 2.9: Use the Data Services wizard to connect to a service
  • Exercise 4.3: Creating item renderers for Spark List components

Products

  • Acrobat
  • Creative Cloud
  • Creative Suite
  • Digital Marketing Suite
  • Digital Publishing Suite
  • Elements
  • Mobile Apps
  • Photoshop
  • Touch Apps
  • Student and Teacher Editions

Solutions

  • Digital marketing
  • Digital media
  • Web Experience Management

Industries

  • Education
  • Financial services
  • Government

Help

  • Product help centers
  • Orders and returns
  • Downloading and installing
  • My Adobe

Learning

  • Adobe Developer Connection
  • Adobe TV
  • Training and certification
  • Forums
  • Design Center

Ways to buy

  • For personal and home office
  • For students, educators, and staff
  • For small and medium businesses
  • For businesses, schools, and government
  • Special offers

Downloads

  • Adobe Reader
  • Adobe Flash Player
  • Adobe AIR
  • Adobe Shockwave Player

Company

  • News room
  • Partner programs
  • Corporate social responsibility
  • Career opportunities
  • Investor Relations
  • Events
  • Legal
  • Security
  • Contact Adobe
Choose your region United States (Change)
Choose your region Close

North America

Europe, Middle East and Africa

Asia Pacific

  • Canada - English
  • Canada - Français
  • Latinoamérica
  • México
  • United States

South America

  • Brasil
  • Africa - English
  • Österreich - Deutsch
  • Belgium - English
  • Belgique - Français
  • België - Nederlands
  • България
  • Hrvatska
  • Česká republika
  • Danmark
  • Eastern Europe - English
  • Eesti
  • Suomi
  • France
  • Deutschland
  • Magyarország
  • Ireland
  • Israel - English
  • ישראל - עברית
  • Italia
  • Latvija
  • Lietuva
  • Luxembourg - Deutsch
  • Luxembourg - English
  • Luxembourg - Français
  • الشرق الأوسط وشمال أفريقيا - اللغة العربية
  • Middle East and North Africa - English
  • Moyen-Orient et Afrique du Nord - Français
  • Nederland
  • Norge
  • Polska
  • Portugal
  • România
  • Россия
  • Srbija
  • Slovensko
  • Slovenija
  • España
  • Sverige
  • Schweiz - Deutsch
  • Suisse - Français
  • Svizzera - Italiano
  • Türkiye
  • Україна
  • United Kingdom
  • Australia
  • 中国
  • 中國香港特別行政區
  • Hong Kong S.A.R. of China
  • India - English
  • 日本
  • 한국
  • New Zealand
  • 台灣

Southeast Asia

  • Includes Indonesia, Malaysia, Philippines, Singapore, Thailand, and Vietnam - English

Copyright © 2012 Adobe Systems Incorporated. All rights reserved.

Terms of Use | Privacy Policy and Cookies (Updated)

Ad Choices

Reviewed by TRUSTe: site privacy statement