seetharama sarma

Greenhorn
+ Follow
since Oct 23, 2002
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 seetharama sarma

Dear friends,
I need to know how can get the path where my webserver is installed in bean. If i am in JSP i can get with application.getRealPath(). But how to get that path in a javabean.
Thnaks in advance.
[ May 23, 2003: Message edited by: seetharam sarma ]
20 years ago
JSP
Dear all,
I am having One COM object developed in VB , which can give me some data. Please let me know how my JSP page can send the request to COM object and How I can get the result.
I am using Apache tomcat 4.2. To use COM in java , Is it that i have to use Web logic server.

Thanks in advance
-sarma
21 years ago
JSP
Before sendind the data in to the database , you can escape the data with javascript escape function. while you are getting form the database just use unescape.
Ex:
<script language="javascript>
function onLoad()
{
doucment.frameName.title.value= unescape(<%= title %> ;
}
function go()
{
doucment.frameName.title.value = escape(doucment.frameName.title.value);
doucment.frameName.action="";
doucment.frameName.submit();
</script>
................
Use Go to send to next form...
use OnLoad while loading the page.
I think this will slove your problem.....
[ October 30, 2002: Message edited by: seetharam sarma ]
21 years ago
JSP
I think that code is available with java web server documentation... I remember once I saw that example in that documentation not sure.
21 years ago
JSP
Hello Friends,
I am not calling any invalidate function in my code. I need to know when exactly a session will be closed or expaired. Is it that If the client closes his browser , the session will be expaired ?
I need this very urgently.
21 years ago
JSP