prashant sreenivasan

Greenhorn
+ Follow
since Nov 19, 2000
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 prashant sreenivasan

Thank you all for your replies.. What you all say is correct.. but is there any way of redirecting the user without him requesting another page..
Prashant
22 years ago
I have designed a website using servlets which enables them to shop and chat. i have an administrator account for this site which allows me to get disable a user account.. Supose this user is online at the moment. I want him to be redirected immediately to an error message. For this When they login i am storing their response object into a static vector. Now i am able to get hold of this response object but am unable to redirect the user to the error page. I am not getting any errors though.
please help me out
- Prashant
22 years ago
make the classpath variable include the file JAVA_HOME\lib\tools.jar
This should solve the problem
Prashant
22 years ago
Use the Code
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection("jdbc dbc:your_dsn");

This will solve ur problem
Prashant
[This message has been edited by prashant sreenivasan (edited April 24, 2001).]
22 years ago
edit the file startserver.bat
add the lines
set JAVA_HOME=C:\jdk1.3 or JDK1.2 whatever you use
also add
set classpath=C:\jdk1.3\lib\tools.jar;C:\jswdk-1.0.1\lib\servlet.jar;
On running the server you should get only three lines of output
JSWDK Webserver.......
Loaded conf.......
endpoint created..........
as for the memory problem it occurs due to the OS
Go to the properties of the command prompt amd mke the initial environment to 2816 leave the remaining as auto and then run the startserver.bat file directly from the commamnd prompt
This will solve the problem
[This message has been edited by prashant sreenivasan (edited April 24, 2001).]
22 years ago
How can you send an object from one applet to one that is to be opened from the first?
My requirement is to to do session tracking of a particular customer on a shopping site which uses a middle layer server written in java and a Microsoft sql database.
Please respond
23 years ago