File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Servlets and the fly likes unable to send an email and update Database at a time Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "unable to send an email and update Database at a time" Watch "unable to send an email and update Database at a time" New topic
Author

unable to send an email and update Database at a time

Rakesh Keerthi
Ranch Hand

Joined: Jul 16, 2012
Posts: 102
Hi,

I've the below code in my servlet for updating database.




and the below for sending E-Mail





these servlets are working fine when i use them separately, but when i use them combined by putting the first one in post and the second one in get methods it is giving me output as "Err"(the one i defined for updating the data).

could you please help me how do i get these things work.

the jsp i used is as below.

Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16479
    
    2

The <form> element in your HTML sends a request to the server. That's "a" request -- one single request. This request should be directed to a servlet which validates and handles the form parameters, not to a JSP.

If the <form> element has type="post" then the doPost() method of the servlet will be called, and if it has type="get" then the doGet() method will be called. Your design should choose the type parameter appropriately.

So that means that the servlet which the <form> element requests should have code in either doPost() or doGet() to handle the request, but not in both of them.
Rakesh Keerthi
Ranch Hand

Joined: Jul 16, 2012
Posts: 102
Hi Paul,
thanks for the suggestion, based on it i've updated the code as below but now i'm getting some other error.

Jsp is:




The servlet is as below.




web.xml:





when i run this program i'm getting the below error.



Also could you please suggest me how to see how the servlet workflow goes. I use Netbeans IDE.
Thanks
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56150
    
  13

Rakesh Keerthi wrote:based on it i've updated the code as below but now i'm getting some other error.

Keeping the nature of the error a secret is not a good way to get help on it.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: unable to send an email and update Database at a time
 
Similar Threads
user authentication servlet problem
problem loading jsp from servlets
To show the Error message at the login.jsp page using servlet
validation and forward
error message from servlet to jsp