David Li

Ranch Hand
+ Follow
since Aug 12, 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 David Li

Thanks Seb a lot for great help
18 years ago
I got the same error with Eclipse 3.1.0 + weblogicplugin 1.1.0
Does someone have solution for this error?
I got the same error with Eclipse 3.1.0 + weblogicplugin 1.1.0
Does someone have solution for this error?
18 years ago
Hi,

I encounter some configuration problem of iPlanet 6.1 WebServer:
As you know, if we need to bind the 80 port in Solaris machine, the root access is mandatory.

My question is:
Is there any alternative method to bind the 80 port without root user?

For example, if root user grant some permission to my user id, then my user id can bind 80 port. Is this possible?

Any response will be appreciated.
Thanks in advance!

David
19 years ago

Originally posted by Vince Cheung:
[QB]...



...QB]




Hi Vince,
The above code is absolutely wrong.
Please try the following code:



Please read the document of java.util.Random class:


An instance of this class is used to generate a stream of pseudorandom numbers.

Please!

It will be highly appreciated if any response!
19 years ago
As we know, we can modify the magnus.conf (load wl-init and wl-proxy modules) and obj.conf (specify the Weblogic server's IP and port) of iPlanet6.0 Webserver to configure the Weblogic proxy.

But in our project, the iPlanet is installed by root user.
The admin does not want to give us the root privelege.
So we can only use admin website to configure the weblogic proxy.

It will be highly appreciated if you can give the solution.
Thanks.
19 years ago
Could someone tells me how to configure the iPlanet 6.0 Webserver in Solaris to auto startup after the Solaris server is restarted?
19 years ago
I have installed Oracle 9i in Solaris 6.5 machine.
But everytime after the Solaris restarts, I have to startup the Oracle service manually.

Could you tell me how to startup Oracle service automatically after the Solaris server is restarted?
19 years ago
It's very exciting for me because I found so many similar errors as mine.
My error also happens intermittently and only happens in production mode.

Thanks Duncan!
With your great help, I found it is a bug of webcontainer.

For WebSphere, you can download the following patch:
IBM PQ76884
http://www-1.ibm.com/support/docview.wss?&uid=swg24005684
IBM PQ76013
http://www-1.ibm.com/support/docview.wss?uid=swg24005688

For Weblogic6.1 + iPlanet4.0 (This is my environment), you should update iPlanet4.0 to iPlanet6.0SP2.
BEA CR085169
http://e-docs.bea.com/wls/docs70/notes/issues.html

For other AppServer, I think you can find the solution if you search the word "post" in your AppServer's support website.


Thank you all!
This is really the most wonderful forum in the world!
19 years ago
JSP
Thanks.

I found the solutions:
Add a ErrorPage parameter.

Service method="(GET|HEAD|POST|PUT)" type="magnus-internal/jsp"
fn="wl_proxy" WebLogicHost="127.0.0.1" WebLogicPort="7001"
KeepAliveEnabled="false" Debug="ON" ErrorPage="/error.htm"
19 years ago
As we know, in iPlanet 6.0 Webserver, we can establish Weblogic proxy by modifing the magnus.conf and obj.conf files.
Thus iPlanet will forward all the JSP requests to Weblogic AppServer.
But when Weblogic AppServer is shutdown, a NSAPI error will be printed in the browser: No backend system.

My question is:
I want to create a HTML page.
When Weblogic server is shutdown, the browser will display this HTML page instead of the NSAPI error message.
But if Weblogic server is available, Weblogic server will provide service for all the JSP files regarding as the above HTML page does not exist.

How to setup?
Any response will be appreciated.

Thanks,
David
19 years ago
Can anyone gives some advice?
Thank you in advance.
I have also asked this question in jGuru:
http://www.jguru.com/forums/view.jsp?EID=1154341
20 years ago
JSP
Hi Ramana Kumar Atmakuru,
As you can see in the above message I just posted, I use POST method.
And yes, I know that GET method can only has less than 2K parameters in IE but my project use POST method instead.
Hope for your other answers!

And sorry for the delays to all!
I can only access internet in office.
BTW, this is the greatest forum in the world!
I have posted this message in many other forums, only this forum has response.
20 years ago
JSP
Hi Nick,
//pd1.jsp
<form action="pd2.jsp" method="post">
<input type="hidden" name="nic" value="hello">
<input type="text" name="sex" value="male">
<input type="submit">
</form>
After user click submit button, this is the process jsp:
//pd2.jsp
<%
System.out.println(request.getHeader("Referer"));
System.out.println(request.getParameter("nic"));
System.out.println(request.getParameter("sex"));
%>
The log message is:
/pd.jsp?nic=hello&sex=male
null
null
20 years ago
JSP