Hello, I would like to see this latest JRun servlet engine work with Netscape Enterprise Server v3.51 using the now included Symantec JIT in JDK 1.1.6. Thanks...
213
Vincent Partington
Vincent.Partington@...
May 2, 1998 2:54 pm
Hi, I just tried using JRun 2.1.2 with Apache 1.3b6 on FreeBSD 2.1.5 and I'd like to share my experiences. - mod_jrun.c contained a number of C++ style...
214
John Wilson
tug@...
May 2, 1998 5:12 pm
I don't know how feasible this idea is.... JRun is rapidly becoming the Servlet runner of choice. You've done a fine job in supporting the major web servers....
215
Paul Colton
pc@...
May 2, 1998 8:03 pm
JRun does indeed have an API for adding servlet capability to any application or server. We will be publishing this API shortly, stay tuned. ... ...
216
tbillany@...
May 3, 1998 10:23 pm
There's a degree of silence about this version of JRun since beta 3. Will it go general release? Is it going to be supported long-term? How many people use it?...
217
Jim Killian
jkill@...
May 4, 1998 12:33 am
Hi, I'm using JRun 2.1.2 on Windows NT Server 4.0. I believe I've encountered another bug in the cookie api. I have a cookie established on the client called...
218
Alessandro De Stasio
a.destasio@...
May 4, 1998 8:38 am
Hi, everybody I'm trying to use JRun 2.1.2 with Linux 2.0.33 (Slackware), Apache 1.2.6, Linux-JDK.1.1.5.v6 (libc5). I get the following messages in...
219
Tauren Mills
tauren@...
May 4, 1998 10:20 am
I just installed an Apache 1.3beta6 server onto a Sparc Solaris 2.51 system. I compiled the JRun Mod with it. After some trouble I now have servlets working...
220
Escolar, Carlos, NPG ...
cescolar@...
May 4, 1998 1:49 pm
Are you using winZip to unpack the jar files? I have noticed that it seems to work, but sometimes you get 0 length files. The trick is to use the 'jar'...
221
mmatthew@...
May 4, 1998 2:24 pm
If you have Microsofts SDK 2.0 or greater for Java installed, then jar files work. You need to put them in the directories tab under the Tools->Customize or...
222
Dean Radcliffe
Dean@...
May 4, 1998 4:21 pm
... =========================================================================== To unsubscribe, send email to jrun-interest-request@... and...
223
Paul Colton
pc@...
May 4, 1998 4:23 pm
JRun 2.1.2 comes with jre1.1.6 which has the built-in jit. Otherwise, you can set JRun to use any jre/jdk. Also, you can set the jit to use in the Java tab of...
224
Paul Colton
pc@...
May 4, 1998 4:24 pm
These are not errors, but rather just incorrect log messages. That initial 'Could not establish conn...' is ok, it is there because when Apache starts, it ...
225
J Hall
joel@...
May 4, 1998 4:25 pm
I think there are more of us out there that are having the same problem you are. I haven't been able to make any progress with it. Please let me know if you...
226
Christopher Lakey
topher@...
May 4, 1998 4:28 pm
Has anyone installed JRun using NES 3.51 under IRIX 6.2? I am told there are problems, but I have yet to try it. Can anyone verify that it does or doesn't...
227
Paul Colton
pc@...
May 4, 1998 4:30 pm
JRun under apache sets up a handler to watch incoming requests. When one of those requests matches a JRun mapping, a handler is set to tell Apache to pass the...
228
synatureBrandon
*@...
May 4, 1998 5:02 pm
Is there any problem using the MS JVM with JRUN? How do I set it up to do that if I have JDK installed, just change the JAVA_HOME setting? Brandon C. Smith ...
229
Lee Crocker
LCrocker@...
May 4, 1998 7:17 pm
Works fine for me too. In fact, if the JARs you need to use are in the Classpath before you start J++ (I'm using 6.0 beta), then the IDE will even do things...
230
Darren Houle
Dhoule@...
May 4, 1998 7:33 pm
I am new to Java and Jrun but I have JDK 1.1 and Jrun installed on a sun es450. I am getting this meesage when I try to compile a servlet: ...
231
Michael Lauer
Michael.Lauer@...
May 4, 1998 7:40 pm
Read the documentation, of course. Compile with -deprecation as suggested to get the details. You will find that the newer call is getParameterValues (or...
232
Aaron Porter
aporter@...
May 4, 1998 7:44 pm
JavaWorld had an article on making J++ 1.1 work with Java 1.1. Here's the URL: http://www.javaworld.com/javaworld/jw-03-1998/jw-03-vjupgrade.html I've been...
233
Lee Crocker
LCrocker@...
May 4, 1998 7:47 pm
Actually, that particular API is the first and only one that Javasoft has officially _un_deprecated. In 1.2, it will no longer even generate the warning, so...
234
Paul Colton
pc@...
May 4, 1998 7:51 pm
Sun has "un-deprecated" that method, as the deprecation was made in haste. ... ____________________________________________________________ Paul Colton...
235
Aaron Porter
aporter@...
May 4, 1998 7:52 pm
getParameter() has been undeprecated at the request of many servlet developers (including myself). The warning shouldn't appear in the JDK 1.2 release. You can...
236
Paul Colton
pc@...
May 4, 1998 7:58 pm
I guess we all had the answer to that one. ;-) ... ____________________________________________________________ Paul Colton Live Software,...
237
J Hall
joel@...
May 4, 1998 9:23 pm
I'm running the latest JRun on IIS 3.0 and I have a servlet that creates a pool of say 10 DB connections for every instance of the servlet. With the new JRun,...
238
Paul Colton
pc@...
May 4, 1998 10:01 pm
Are you implementing SingleThreadModel in your servlet? What does you code look like? How are you managing your pool? ... ...
239
J Hall
joel@...
May 4, 1998 10:11 pm
This is syntactically correct but: class MyServlet extends HTTPServlet { // (BTW, DBPool is thread safe) DBPool db; // wrapper class that creates a pool of...
240
Paul Colton
pc@...
May 4, 1998 11:10 pm
Does db.doQuery() grow the pool if required? Does it release the connection when completed? ... ____________________________________________________________ ...
241
J Hall
joel@...
May 4, 1998 11:27 pm
The pool can grow if you set the constr. params to do so but I fix it to like (10,10) startcon/maxconn The object cleans up all of its connections. I've forced...