Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

From the point of view of the user interface, most web applications can be thought of simply as CRUD (Create, Retrieve, Update & Delete) operations on documents. In the diagram below, the form is being used to initially display a Customer and Order and then to update them. If you think in REST terms, the form is a View Resource that composes multiple Entity Resources (in this case a Customer Resource and an Order Resource), displays their current state and allows you to update them.

Image RemovedImage Added

frevvo provides a very flexible and powerful mechanism for interacting with documents (and the web in general). You can [http://www.frevvo.com/bucket/restlet/RestletCustomerExample.zip download source code and forms] for the discussion below. We strongly recommend that you download the example, [[#Customer_Example|study it]] and use it as a template for integrating with your own web applications.====

Document URIs

==== For each [[V4_Designing_Forms#From_Schema|Document Type]] that you add to your form, frevvo permits you to assign *

  • a document [http://bitworking.org/projects/URI-Templates/ URI Template] resolved either using query parameters or form fields.

...

  • a Read method and

...

  • a Write method.

This is best described using several examples. Consider the example above. Here are the interactions a Customer Resource supports: <table cellpadding="3" cellspacing="0" border="1"> <tr> <th>Resource</th> <th>Method</th> <th>Description</th> <th>Returns</th> </tr> <tr> <td>Customer List</td> <td>GET</td> <td>List

ResourceMethodDescriptionReturns
Customer ListGETList of customers (may be criteria based

...

XML list of customers
Customer ListPOSTCreate new customerURI of newly created customer
CustomerGETGet customer dataXML representation of customer
CustomerPUTUpdate customer 
CustomerDELETERemove customer 

Updating a document

Consider the case where a form is used to update a particular customer. To create the form: <ol> <li>Upload  

  1. Upload your customer schema to the designer, add the customer element to the document types for the form and add the customer to the form (which automatically generates controls). See the section on [[V4_Designing_Forms#From_Schema|Adding Controls from Schema]] for further details.

...

  1. Drag/

...

  1. drop, change labels etc. directly in the

...

  1. browser
  2. Specify URI template .../customers/{customer}, choose Read Method GET and Write Method

...

  1. PUT
  2. Specify a Form Action URI if desired (we'll get to this later).

...

That's it. As usual, you [[V4_Using_Forms#Sharing_Forms |access the form using its URI]]. When the form is used (instantiated), you may specify one or more query parameters along with the URI. For this example, we might use a URI and query parameter: .../form/1234?customer=02. frevvo will resolve the URI template above to: .../customers/02, GET the customer, and display the initialized form. When the form is submitted, frevvo will automatically PUT the customer document to the same URI thereby updating the customer. The diagram below shows the interactions. [[Image:Update_Customer.jpg]]

Image Added] Here's [http://www.frevvo.com/frevvo/web/user/gallery/app/_73zHwep_EduZgK0BUzi1Ug/formtype/__AKE4PgqEdusGKt5_HoCDw?_method=POST&embed=true&customer=02 an example form] that uses the Customer entity described above. In the example: <ol> <li>We

  1. We instantiate the form with a parameter customer=02. This causes the form to resolve the URI template and GET the customer data from: http://[server]/customers/02. The resulting XML document provides the initial state of the Customer and is used to initialize the form.

...

  1. Modify a value and click Submit. The form will automatically PUT to the correct resource and update the customer information.

...

  1. Finally, frevvo will store the generated document set and assign it a unique URI. The document set and the documents therein can be [[V4_Using_Forms#Documents|accessed at this URI]].

...

'''Creating a new document'''

Consider the case where a form is used to create a new customer. Follow the same steps above, except use the appropriate URI template .../customers and change the Read method to POST. That's it. As usual, you [[V4_Using_Forms#Sharing_Forms | access the form using its URI]]. When the form is used (instantiated), frevvo will perform the POST and create the customer. It will then follow the server redirect (to the URI of the newly customer) and display the form. When the user enters customer information and submits the form, frevvo will automatically PUT the resulting XML document to the URI of the newly created customer resource thereby updating it. The diagram below shows the interactions:

[[Image:Create_Customer.jpg]]Image Added

Here is [http://www.frevvo.com/frevvo/web/user/gallery/app/_73zHwep_EduZgK0BUzi1Ug/formtype/_1zmI4PsCEduLxOM9M8PJlQ?_method=POST&embed=true an example form] that creates a new customer using this method.'''

Dynamic documents'''

A document URI template can also be linked to a form control. To do this, use the [[V4_Designing_Forms#Name |Control Name]]. Consider the [[#Updating_a_document|Updating a document]] example above and the [http://www.frevvo.com/frevvo/web/user/gallery/app/_73zHwep_EduZgK0BUzi1Ug/formtype/__AKE4PgqEdusGKt5_HoCDw?_method=POST&embed=true&customer=02 sample form] therein.

The form has a Customer document and we have specified URI template .../customers/{customer} and Read method GET. In this form, there is a control which has Type ID 'customer' as shown in the figure below.

[[Image:docUri_typeId.png]]Image Added

If you enter a value in this control, frevvo will automatically resolve the URI template using the new value and attempt to GET a new document. If it succeeds, the form will be initialized with the new document and all relevant control values will automatically update. In the example above, try changing the value to 03 or 04. Notice how the customer information fields change to reflect the new document that is being edited by the form.

...