2 May 2011
All
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.
In this exercise, you will learn how to:
In this section you will create a WebService instance that will be used to send information to the server.
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>
WebService instance is one tag and not a tag block.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.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.
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.
component:VehicleRequestForm instance below the Declarations block.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.
Script block, locate the vehiclerequestform1_vehicleRequestEventHandler() function.Alert.show() method.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);
}
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.
vehicleService WebService object, use the content assist tool to generate the result event (see Figure 2).
Script block, locate the vehicleService_resultHandler() function and delete the generated code stub.You should see an error (see Figure 4).
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."
You should see the Response data. Notice the first line tells you that you have experienced the 500 Internal Server Error.
Next, you will add a fault handler to show an Alert message when the Mobile Phone field is left blank.
vehicleService WebService object, add a fault property and, using the content assist tool, generate the fault handler.vehicleService_faultHandler() method in the Script block and delete the generated code stub.Alert.show() method to display the event.fault.faultString value as the text in the Alert pop-up.protected function vehicleService_faultHandler(event:FaultEvent):void
{
Alert.show(event.fault.faultString,"Fault Information");
}
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.
vehicleService_resultHandler() function.if statement.if statement to evaluate if the event.result.id value.protected function vehicleService_resultHandler(event:ResultEvent):void
{
if(event.result.id)
{
}
{
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.id)
{
Alert.show("The request was submitted. The record id is " + event.result.id);
}
}
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).
In this exercise, you learned how to use the WebService component to send data to a server. You also learned how to handle the confirmation message from the server to display in an alert dialog box.