ProductReview Example: Difference between revisions
mNo edit summary |
|||
Line 1: | Line 1: | ||
== Functionality == | == Functionality == | ||
The overall goal is to be able to see what users think about a particular item . As an added benefit - users can also share information about where to buy the particular items. | The overall goal is to be able to see what users think about a particular item . As an added benefit - users can also share information about where to buy the particular items. | ||
To accomplish this, then users should be able to: | To accomplish this, then users should be able to: | ||
Line 14: | Line 15: | ||
The system should be implemented as a web application, [[Using the AJAX Library]] . | The system should be implemented as a web application, [[Using the AJAX Library]] . | ||
== | == Data model == | ||
=== Table layout === | === Table layout === | ||
Line 30: | Line 31: | ||
== Creating the webapp [[Using the AJAX Library]] == | |||
==== Webservice ==== | ==== Webservice ==== | ||
Create a AJAX WebService to call from the clientside VDF Ajax lib. This webservice will be responsible for handling the serverside calls. | Create a AJAX WebService to call from the clientside VDF Ajax lib. This webservice will be responsible for handling the serverside calls. | ||
this is the point of entry on the serverside (where information will be extracted from) | |||
==== Session management ==== | ==== Session management ==== |
Revision as of 10:30, 14 September 2007
Functionality
The overall goal is to be able to see what users think about a particular item . As an added benefit - users can also share information about where to buy the particular items.
To accomplish this, then users should be able to:
- login
- create a user account
- choose an item from a list
- enter information about a known item
- supply a rating of an item
- supply information about the place where an item was bought.
The system should be implemented as a web application, Using the AJAX Library .
Data model
Table layout
We want to store information about users, places, purchases and known items. A user should be either a normal user or an administrator. The other tables should hold sufficient information about the items purchased and how the users liked them.
Create these tables in the database builder and create the associated data dictionaries (by Using DataDictionaries )
The following data dictionaries should now be available:
- Item_DataDictionary
- Place_DataDictionary
- Purchase_DataDictionary
- Rating_DataDictionary
- UserInfo_DataDictionary
Creating the webapp Using the AJAX Library
Webservice
Create a AJAX WebService to call from the clientside VDF Ajax lib. This webservice will be responsible for handling the serverside calls.
this is the point of entry on the serverside (where information will be extracted from)
Session management
- UserLogin: checking if the supplied password is correct. Use UserInfo_DD
- HasRights: does the logged in user have the rights to perform the chosen function. Use UserInfo_DD
Creating the Web Objects
- item.wo : handling information about items.
- userinfo.wo : handling information about users
- place.wo: handling info about places
- purchase.wo: handle information about places
- rating.wo: handle information about ratings
The Web Object should use the corresponding data dictionaries
Creating the web markup
- Item.asp: a list to choose items from
- Ratings.asp: a list of items with detailed ratings. show details about related users and items.
- Place.asp: information about a place where items can be bought.
- RateItem.asp: a form to supply rating information about a particular item.
- Purchase.asp: information about what items users has bought at what place