mohan kumar nie

Greenhorn
+ Follow
since Feb 05, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by mohan kumar nie

Hi,
I am using Weblogic6.1 server. It supports Servlets 2.3 Specification.
I am trying with the following Security specifications. When I try login page through browser(http://localhost:7001/login/logintest.jsp) it gave FORBIDDEN(403) Error. It is not redirecting to secured connection(https://localhost:7002/login/logintest.jsp)
If I give a request to (https://localhost:7002/login/logintest.jsp) it works fine.
What I want to do is, when client give a normal request, server has to redirect to Secured connection automatically.
Please help me to do it ?
<security-constraint>
<web-resource-collection>
<web-resource-name>LOGIN</web-resource-name>
<url-pattern>/login/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
Thanks in advance
mohan
Hi,
I want to protect my html code from users to view.
How to do that?
thanks in advance
mohan
22 years ago
If any one knows the link to Alx Dark notes, could you please give it.
Hi,
In servlets, there will be a only one instance of class. and each request handled by seperate thread.
How it happens in RMI?. How is the relationship between client and remote object? is it one-to-one or many-to-one.
Thanks in advance
bye
mohan
23 years ago
Hi everybody,
Do I need pass SCJP to take SCWCD.
thanks in advance.
bye
mohan
server to be notified when browser closes
when user closes the browser, I want server to be notified.
If I use <BODY onUnLoad="javascript:notifyServer()"> , this will be called everytime when user request for another page.
How to achieve above functionality in Microsoft Internet explorer.
23 years ago
JSP
when user closes the browser, I want server to be notified.
If I use <BODY onUnLoad="javascript:notifyServer()"> , this will be called everytime when user request for another page.
How to achieve above functionality in Microsoft Internet explorer.
23 years ago
Hi,
I am using Windows 2000 and MS SDK kit for java.
I want to kill the excecuting EXCEL.EXE process from JAVA application. Please help me in finding appropriate API to kill the process.
Thanx in advance
mohan
23 years ago
hi
Frank and Rahul,
Thanx u both
regds
mohan
24 years ago
hi
friends,
I have written code like this in JSP page

// lot of code is there
try{
/**
lot of code is there
*/
response.sendRedirect("_otherPage?name=value");
}
catch(Exception e)
{
System.out.println("error:" + e.getMessage());
}

I am running this code in Web Logic Server
At the point of
response.sendRedirect("_otherPage?name=value");
server giving error like this
error: response already committed
I am facing this problem since two days back. Before that it was working fine.
I restarted server also.

Any body could understand the problem?
Expecting responses from u.
thanks in advance
regds
mohan
24 years ago
hi,
friends,
where can I get JAVA mail API ?
I want both API and Tutorial about it.
Thanks in Advance
24 years ago