Hi Pradeep,

>From: pradeep <[EMAIL PROTECTED]>
>Reply-To: "A mailing list for discussion about Sun Microsystem's Java
>        Servlet API Technology." <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Want some suggestions
>Date: Mon, 25 Oct 1999 20:48:40 +0900
>
>Hi experts,
>
>I want design suggestiions on the of the following project.
>
>I have to design a system which will forward the submitted forms to the
>site
>administrator via e-mail, at the same time it has to post the data into
>database.
For this functionality, as soon as the form is submitted, invoke a
servlet(same servlet which handles the form data) which inserts the data
into a database. When the update is succesful, the servlet can
email the data to a specific mail id. This you can achieve either using
JavaMail API or using sockets(java.net package) by directly talking to the
recievers SMTP server.

>It has to update a screen which can be accessed only by  an
>administrator, as soon as a new request is posted into the database.
>
>What kind of technology is needed in designing the system(especially at the
>administrator end so that he is updated with the requests from the users)

As far as administrators screen is concerned, write another servlet,
which when invoked accesses the database, collects the required data,
generates a html form, embeds the data from database into this form and
sends the form back to browser. This is if you want to give a browser based
interface to the administrator. You can have user name/password
authorisation for the administrator as the first thing in your servlet.
>I will be very thankful for any kind of help or suggestions in this.
>
>regards,
>-pradeep
>
>

Manoj___________________________________________________________________________
>To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
>of the message "signoff SERVLET-INTEREST".
>
>Archives: http://archives.java.sun.com/archives/servlet-interest.html
>Resources: http://java.sun.com/products/servlet/external-resources.html
>LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
>

______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to