Sarath Mohan

Ranch Hand
+ Follow
since Mar 17, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Sarath Mohan

What is EJB session? Do you mean Session Bean? I think Servlet Session are purely managed Servlet Container which enable us to state of each HTTP Request .
17 years ago
I think for request from for different user would create a unique session ID which would help us to find out unique user
17 years ago
I think need to configure you SMTP server.
Or can put your sending process in a thread which would sleep for sometime after a batch has been sent
17 years ago
JSP
Create a form with out any buttons.
Submit this thru java script. You can easily use POST
17 years ago
JSP
web server may cache the content. You have to configure the web server to reset the cache. Through heades I think we can do this
17 years ago
JSP
First thing...you must have very good idea about Java Web Application Architecuture. How you can configure and use servlets, web.xml, web-app directory structure etc. Good serverlet Container is Apache Tomcat. If you don't know these, I think it is useless even if you get ready made code

Resources, Of course java.sun.com

Regards
17 years ago
Are you generating HTML Form dyanamically. When the you have large dataset check the html source and verify it is generated correctly
17 years ago
How do you set up Apache as Proxy server? If you set it up as a web server and you access this server from some other machine in the network, surely u will get remote IP
17 years ago
I think it is not possible.
How do you get a session while a servlet is being initialised?
17 years ago
I didn't get 'it is not working in client side'

May be it could not be able to locate mail servers.

Apache James is good starting point for dealing with Mailing applications. It provides a free SMTP, POP server and you can test stand alone mailing apps.
17 years ago
As you said your session is getting recreated. where exactly I couldn't figure out. try with .getSession() and see why is it becoming null...

You can opt for a better design where we can avoid db connection in Session.
17 years ago
We have Java performance tuning applications like JProfiler. Google it and you can find the session size after you access each page in your application

Cheers
17 years ago
Wish to add this.

By overriding the service method itself you are doing dyanamic polymorphism.
Of course, this is achieved by none other than polymorphism.

Learning the OOPs concepts thoroughly and analysing how it is implemented in different Java technology will help you a lot
17 years ago
jsp:forward is not used for submitting a form.

Use pure html Form for submitting and use use the jsp file name in the action attribute of form tag

Regards
18 years ago
JSP
Use Tomcat 5.5.x. This version is for JRE 5
18 years ago