CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th

Similar documents
Locate your Advanced Tools and Applications

Connecting VirtueMart To PayPal (Live)

Author - Ashfaque Ahmed

A WARM WELCOME TO OUR BRAX B2B PORTAL!

CS 453 Electronic Commerce Technologies. Homework # 4 PHP-based E-Store

Help Guide Service Readiness Management

15-415: Database Applications Project 2. CMUQFlix - CMUQ s Movie Recommendation System

Guide on how to use the macademy.

Guidebook ONLINE ORDERING MADE EASY!

AP Onestop Request Official Transcript

Table of Contents. 2 P a g e

Locate your Advanced Tools and Applications

AppSpider Enterprise. Getting Started Guide

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central

CMS and e-commerce Solutions. version 1.0. Please, visit us at: or contact directly by

B2B Portal User Guide

Table of Contents. I) Project Planning. User Analysis. III) Tasks Analysis. IV) Storyboard. V) Function Design. VI) Scenario Design.

Accessing Test Web Portal of the CTBTO

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.1.0

ecommerce USER GUIDE

The Electronic Voting System - EVS


Home Page. Select Server Software

Creating Your Parent Account

Request for Quote (RFQ)

1 Register 2 Take Course 3 Take Test 4 Get Certificate

Customer Care Portal User Guide

Introduction to OpSuite

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

Instructions for installing the Print to PrintShop printer on a Mac

User Guide. The Tufts University Transfer Agreement Form. September Step 1 Go to

MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0

How to Register and Manage Buyer Accounts for a Customer Organization on Version 5 April 2007

USER MANUAL. SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 2.0

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link.

IP Talk Hosted VoIP Solutions Call Detail Record Reporting User Guide

CENTRAL SUSQUEHANNA INTERMEDIATE UNIT Application: Bidding. Vendor Portal Instructions Central Susquehanna Intermediate Unit, USA

Online Ordering Instructions

Event Manager Instructor Start-Up Guide

aveo.com.au/residents

Marketing Portal User s Guide. Buy A List Orders

Internet Technologies. Lab Introduction

FedEx Office Print Online Corporate

GUJARAT TECHNOLOGICAL UNIVERSITY

Imagine Customer Support:

User Training Guide Version 2.0 December

ONLINE BULK SEED SALE CERTIFICATE INSTRUCTIONS. Welcome to Seed Hub! (SM)

The Workwear Group Online Ordering Manual. Ozcare employees

OLLI Online Registration Training

Western Water Online User Guide

Affinity Provider Portal Training Manual

TUTORIAL FOR SPARE PARTS ONLINE Catalogue

SEGPAY WooCommerce Plugin SETUP

UNIVERSITY OF MUMBAI. OCTOBER 2014 ADVANCED JAVA Seat No. : Max. Marks: 50

USER MANUAL. SuiteCRM / SugarCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.1

Customer Care - How to Order Replacement Parts Using RPP

StreamOne Cloud Marketplace. Order and Management Guide

BUSINESS CARDS. WHEN ORDERING, REFERENCE BID # on your requisition. Example: Qty of Business Cards for John Runnels

First-time users select Register here

About the Authors. Who Should Read This Book. How This Book Is Organized

AVAYA LEARNING CENTER END USER GUIDE. Avaya Learning License Registration Guideline

Standard User Site Registration Account Options Customer Hot List Creation & Utilization.

WhatsUp Gold 2016 Mobile Access

The project is conducted individually The objective is to develop your dynamic, database supported, web site:

Haines Online (HOL) User Manual

PATRON PORTAL LOG-IN GUIDE

Forms & Surveys. Blackboard Web Community Manager

parts.cat.com In 5 minutes.

MD Helicopters, Inc. On-line Publications Ordering Applications Guide

How to Use HangerOneSource.Com. MARKETING MATERIALS ORDERING (to charge Avante ONLY)

USING THE CLOVIS ONCOLOGY IME/IIT PORTAL: FREQUENTLY ASKED QUESTIONS FAQ. Version 1.0

NQF ONLINE MEASURE SUBMISSION FORM USERS GUIDE

NATE Testing Portal. Guide to using the mynate website

How to log a Sitefinity Support case

USER MANUAL. SugarPort - SugarCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0

Brolly Sheets Wholesale Login

Spectrum Plus 9.2. Actuals Drilldown Report Training Guide. July 2015 Version 1

How to use CPCS-ON System: LOGGING IN & MANAGING USERS

Design Gallery User Guide

Master Calendar Integrated Authentication Configuration Instructions. Dean Evans & Associates, Inc.

Distributor Extranet User Manual. Contact Us:

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0

Business Card Ordering Instructions

daa isupplier User Guide

Andowson Chang

1 Setting Up Your Auto Login Link in Windows

Oracle isupplier. Supplier User Guide

School Specialty New Release Manual

User Manual Online Book Store. Phase-III. Vamsi Krishna Mummaneni

Qvidian Proposal Automation Enable New Users

Test Generator is. TG Web Elements. TG Web Benefits. TG Web Services TG Web Technical TG Web Accounts. TG Web Support TG Web Sales

ReCPro TM User Manual Version 1.15

Quick Start Manual for Mechanical TA

UJI-ESURVEY SERVICE TESING MANUAL

Magento Survey Extension User Guide

CS 1110, LAB 1: EXPRESSIONS AND ASSIGNMENTS First Name: Last Name: NetID:

Enrollment. My Class Schedule / Weekly Schedule

Admin Guide Hosted Applications

CS 361S - Network Security and Privacy Spring Project #1

CMS Client Non Standard User Guide

Transcription:

CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th Note: This project is done by two people team or individual. This project must be completed using MVC pattern. Otherwise, you will lose lots of points. You are to create a web-application that consists of the following pages: Main, Inventory, Shopping, Login, and Report. All will be JSPs and all will be called using the MVC pattern where one of two servlets uses the RequestDispatcher to call the appropriate JSP. This uses server-side forwarding and not redirection. You will need to create a database (MySQL or Oracle) containing user information, inventory items, and logging information. These are detailed below under the database section. When a user surfs into your site, you should log statistics for your site. These stats will be keeping in a database and will be retrieved from the Reports page. If a user clicks on the Reports, Shopping Cart, or Login page they will be asked to login first. If they fail to log in they will be sent back to the main page after three attempts. You will need to log successful logins and unsuccessful attempts. I will talk about what exactly needs to be recorded in another section below. Once the user is logged in the navigation will have a Log out link instead of a Log in link. There should be a way (probably check box) for the user to remain logged in after a session is over. In other words, when a user logs in there should be a check box that allows the user to remain logged in for 30 days. Use cookies to make this happen. When a user comes back to the website, a welcome message will greet them on all pages; otherwise, no message will be shown. After a user has added items to their cart and they have not logged in, the cart contents will be stored as cookies. If the user adds items to their cart and they have logged in, the cart items are then stored in the database. When a user leaves the site and the browser has been killed, then the user returns in a different session, if they have an anonymous cart (cookie based) then that cart will be available as that anonymous user for 30 days. If the user has a cart that was stored in the database, then that cart will not be available unless the user logs in. When showing the inventory, if an item has a zero inventory count, do not show that item. A user can add an inventory item to the shopping cart but it should be treated in two ways, one as a validated user and one as an anonymous user. When the user adds an item to the shopping cart, that item(s) can be purchased but only by a legitimate user that has logged in. When clicking on the purchase button that is on the shopping cart page the cart is emptied and the user is forwarded to the main page and the inventory count should be updated.

There will be a single ad on the main page that is a GSU image. The image will be a link to GSU s home page but you will log the Total number of hits and redirect to GSU. Database Information User information o Username - String o Password - String o Admin or Client - boolean o Last login Date/Time LogItem o typelogitem String (Page name?) o hitcount int View o PageURL o UserID Transaction o User String o DateTimeStamp o SKU int o Purchase-boolean o TransactionID-int Inventory information o Sku number - int o Item description - String o Price to customer - double o Count - int Main Page (Non-portal JSP) GSU logo that links to http://www.gsu.edu Inventory Page (Non-portal JSP) List of all inventory Shopping Cart (Portal JSP) List contents of shopping cart Purchase Cart Login Page (Non-portal JSP) Username/Password fields Submit button Listing of all previous user purchases

Report Page (Portal JSP Admin user only) Links to show: anonymous o Total number of hits on all pages o Total unique hits on all pages ( what s difference between total number and unique hits) o Total number of hits per page o Total unique hits per page o Total number of hits on an Icon Ad (GSU images) o Number of login tries (per user? How do I know who want to login in) (Probably think each time user enter correct user name) getpagemgr (servlet) Displays all none-portal JSP pages portalpagemgr (servlet) Displays all portal pages Design Notes: Home.jsp, Inventory.jsp, Login.jsp may be called from getpagemgr servlet using MVC framework. ShoppingCart.jsp, Login.jsp and Reports.jsp may be called from portalpagemgr servlet. (you could call Login from either page you think is best) Hit and Page Logging is done using MySQL or Oracle database and includes all items listed under Report Page above. Each log item should include a data/time stamp, page (URL), user (if logged in or anonymous if not), and count. Navigation should display log out if the user is logged in The user should have to log in before being able to purchase items in the shopping cart and/or view the Reports. Some users (admin) have the rights to view reports and some don t Users are not allowed to create their own account All accounts are created using a SQL script System will allow user to remain logged in by using cookies Limit for logged in status using cookies is 30 days (use cookies to store login users) If a user returns, give a personal welcome message on all pages If a user is anonymous, do not show a welcome message Design and Implement your own database Deliverables: The link of this project All source code All database scripts (so I can rebuild your database) WAR file so I can publish your work to WebSphere or Tomcat Document stating details about what each person worked on

Starting point for a possible ER Diagram

Bonus Requirements (20% of the project 1) Create an administration page that satisfies the following requirements: The JSP page can be displayed by portalpagemgr (servlet) only. Only allow administrators to visit it. If not administrators or anonymous, forward the requests to login page. Left navigation. Administrators can create normal users accounts (not administrators) in the page. Administrators may insert new products into database, so they need to specify product sku, description, quantity, and price. Submission: Send your project with.zip or.rar format to email: gsucsc4370@gmail.com