RE: Java books

2001-08-09 Thread Charles Arehart
I'll throw in Beginning Java Objects by Jacquie Barker, a new book on the scene, focused on teaching objects (using java) to newcomers, and getting good reviews at Amazon. And though they have a strong client-side bent (more than 30% of chapters devoted to client development), 2 more popular book

RE: Java books

2001-08-09 Thread Scott Stirling
For reference, there is absolutely nothing more comprehensive, easy to use, or cheaper than the JDK docs from Sun. They cover the tools, the APIs, and the features of the language. A great complement is a copy of the JDK source code, or unzip the API source code that ships in src.zip with the JD

RE: java.util.zip.ZipException

2001-08-09 Thread Scott Stirling
Usually this happens when you deleted or renamed a bean's jar file, but the bean's jar is still listed in deploy.properties or runtime.properties. Scott S. > -Original Message- > From: Robert Jacobs [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 09, 2001 4:00 PM > To: JRun-Talk > Su

RE: Java books

2001-08-09 Thread Dave Feltenberger
I have to go with "Thinking in Java" by Bruce Eckel for the learning Java book. Java in a Nutshell and Java Cookbook from O'Reilly are both good references. -Original Message- From: McDowell, Mark [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 8:56 PM To: JRun-Talk Subject:

RE: Java books

2001-08-09 Thread McDowell, Mark
For reference, "Java In A Nutshell" O'Reilly, ISBN 1-56592-487-8 For learning, "A Programmer's Guide to Java Certification", Addison-Wesley, ISBN 0-201-59614-8 -Original Message- From: Shawn Regan [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 5:07 PM To: JRun-Talk Subject: Ja

RE: Debugging JSP and Java Code with Jrun Studio

2001-08-09 Thread Haseltine, Celeste
Will, I have never been able to get JRUN Studio 3.01 to see Java code, only JSP code, and even then only sometimes. I "hook" an external IDE (Visual Cafe) to JRUN Studio, and debug my Java code in VC. If you do figure out how to debug Java code in JRUN Studio, please post that info here for th

RE: JSP using built-in custom tags

2001-08-09 Thread Mark Phelps
JSPs do not have a designated place except that they should not go under the web-inf directory anywhere. Files in the web-inf directory are not exposed to the outside world. You can place them in the root folder of your web application or you can make a JSP folder off of your web application roo

Java books

2001-08-09 Thread Shawn Regan
can anyone recommend a good java book. Maybe one to use for Reference and one to start learning with. Shawn Regan Applications Developer Pacific Technology Solutions ~~ Structure your ColdFusion code with Fusebox. Get the official book at http:/

RE: rmid - fail-safe mode

2001-08-09 Thread Mark Phelps
Look at the JRun logs. One of them may contain some kind of error message. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 1:08 PM To: JRun-Talk Subject: rmid - fail-safe mode hi! I'm trying to run my EJB app under fail-safe mode (

JRun DB2 connect string

2001-08-09 Thread Chris Evans
Hello, I'm pretty new to JRun and JDBC, and just joined this list. I am trying to get a JDBC connection to a DB2 database using the native driver supplied by IBM. I cannot seem to get the correct connect string, though. Does anybody have this working correctly that can tell me what driver an

RE: JRun 3.0 stops responding during heavy load

2001-08-09 Thread Will Berger
>Oh, then why is it not a problem with JRun 3.1 on the same OS if it is a >problem with the OS? I can't explain that. Will Jackie On Thursday, August 09, 2001 10:48 AM, Will Berger [SMTP:[EMAIL PROTECTED]] wrote: > I have run into something similar with Weblogic and the problem was not with >

RE: JRun 3.0 stops responding during heavy load

2001-08-09 Thread Will Berger
Yep Sun e420. -Original Message- From: Jackie Comeau [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 2:39 PM To: JRun-Talk Subject: RE: JRun 3.0 stops responding during heavy load Was your OS Solaris as well? Haven't run into this problem yet, but don't have that much of lo

Default Server Error

2001-08-09 Thread Derek Nerenberg
Please help. The default server on my test machine is hosed up with this in the default-err.log file: java.lang.StringIndexOutOfBoundsException: String index out of range: -1 at java.lang.String.charAt(String.java:507) at allaire.jrun.util.OrderedProperties.load2(../util/Ordere

JSP using built-in custom tags

2001-08-09 Thread Jackie Comeau
Newbie question, I'm sure. When playing with jsp to get familiar with it I was putting the jsp in my wwwroot directory of my IIS webserver. Now, I have a servlet, redirecting to a JSP which should send an email using the sendmail tag which are part of the jsptags library in 3.0. My question i

Debugging JSP and Java Code with Jrun Studio

2001-08-09 Thread Will Berger
Is anyone successfully using Jrun Studio to debug their JSP's and Java code. I seem to be able to debug JSP code, but when trying to step into our java objects, the debugger steps over the code. I tried setting break point in our classes and the compiler ignores them. I have compiled the code w

java.util.zip.ZipException

2001-08-09 Thread Robert Jacobs
When Deploying a session bean on JRun 3.1, I get the error message: Exception: [15:38:57] java.util.zip.ZipException: error in opening zip file Does anyone know what could be the cause of this. Thanks, Bob ~~ Structure your ColdFusion code w

rmid - fail-safe mode

2001-08-09 Thread kkonaka
hi! I'm trying to run my EJB app under fail-safe mode (rmid), doing things like this following the manual: java -Djava.security.policy=lib/jrun.policy \ -classpath lib/ejipt_tools.jar allaire.ejipt.tools.Server -start this silently terminates without any errors/outputs. but then there seems

RE: JRun 3.0 stops responding during heavy load

2001-08-09 Thread Jackie Comeau
Was your OS Solaris as well? Haven't run into this problem yet, but don't have that much of load since we run small, internal applications. But as we add more, may run into this. Hopefully, I'll have my new server by then with JRun 3.1. Oh, then why is it not a problem with JRun 3.1 on the sam

RE: Access Violation In handleJrppRequest

2001-08-09 Thread Ravi Vedire
Contrary to my earlier subject line, we found that this bug is not just limited to ISAPI or IIS. Macromedia mentioned that, JRUN throws this exception sometimes when it tries to parse header tags. They suggested removing these meta tags and provided sample jsp code for implementing these header

RE: JRun 3.0 stops responding during heavy load

2001-08-09 Thread Will Berger
I have run into something similar with Weblogic and the problem was not with the app server, but the OS was configured to handle max of 128 file descriptors. We bumped it up to 1024 and things improved signficantly. Just a thought. Will -Original Message- From: Johansen, Roar [mailto:[

JRun 3.0 stops responding during heavy load

2001-08-09 Thread Johansen, Roar
Our production site stops responding from time to time. It runs JRun 3.02a on Solaris 2.7 and Sun JDK 1.3, and behind a NES (Netscape-Enterprise/3.6 SP3) server. When the stops occur, it has to be restarted manually. Whe think we have found a reason, so we want to run this by someone other than ou