RE: configuring 1 webapp with multiple form logon pages

2001-01-25 Thread Craig
vebly use the same computer, if the browser is left open, and use the pre-established cookie to re-enter. Good luck, Craig -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 25, 2001 7:49 AM To: [EMAIL PROTECTED] Subject: RE: configuring 1 webapp

RE: Which JVM for Tomcat?

2001-02-04 Thread Craig
you like. I am not using this version on my server but on a separate computer. Beware, it requires a fast computer for the rendering. Not quite ready for prime time. :0) Jdk 1.3 is faster then 1.2. IBM's 1.3 is said to be good as well. Regards, Craig -Original Message- From:

RE: loading oracle drivers from classes12.zip?

2001-02-09 Thread Craig
I have had no troubles with the zip files on Win2000 server and IIS5. Someone a while ago mentioned rejaring the contents. Oracle 8I enterprise has worked perfectly for me with tomcat using the thin driver with no modifications. Good luck, Craig -Original Message- From: John Coonrod

RE: Benchmarking

2001-01-23 Thread Craig
Hello, You can try http://www.opensta.org/ Microsoft also has a benchmarking product. Let us know what yuu find out. Thanks, Craig -Original Message- From: Oleg Timofeyev [mailto:[EMAIL PROTECTED]] Sent: Monday, January 22, 2001 6:29 PM To: [EMAIL PROTECTED] Subject: Benchmarking

Problem Binding Tomcat to Ports 80/443

2005-04-26 Thread Craig
modified for my installation as I do when I try to run tomcat as root! It's like something has mysterously taken over ports 80/443 and won't tell me about it or give them back! Any suggestions? - Craig "Ne te quaesiveris extra."

ROOT not reloadable?

2002-08-25 Thread Craig Longman
jacob has been kindly helping me understand the restrictions of contexts in tomcat, but one problem that came up and i would like some feedback from tomcat developers. this is with the 4.1.9-beta version. why is the ROOT context not reloadable? i'm using a framework that i've heavily modified

Re: trying to understand contexts

2002-08-25 Thread Craig Longman
On Sat, 2002-08-24 at 13:43, Jacob Kjome wrote: > [...snip...] > > Having the ROOT context reloadable would be the solution. You would then > have to get rid of all other defined/undefined contexts (meaning remove all > server.xml entries + remove all directories under webapps not named > ROOT

Successful Integration of Tomcat/Apache 2 on Win32?

2002-09-04 Thread craig franke
jk into my modules directory. I'd switch to an earlier version of apache, except my production server is already running Apache 2.0.39/PHP 4.2.2 and I'm wanting to integrate Tomcat into the existing server. Thanks, Craig -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>

RE: Successful Integration of Tomcat/Apache 2 on Win32?

2002-09-04 Thread craig franke
tomcat directories in the tree show up empty to me, not sure if that is something with the tree or a problem on my end. Craig >>> [EMAIL PROTECTED] 09/04/02 11:13AM >>> Where did you get your mod_jk.dll? As far as I know, the mod_jk.dll file for 2.0.39 is not the same as the m

Mod_Jk for Apache 2.0.39

2002-09-05 Thread craig franke
Does anyone out there have the mod_jk.dll for apache version 2.0.39? If so could they either provide a link or email it to me directly? Thanks, Craig -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

CoyoteConnector not respecting 'port' attribute

2002-09-09 Thread Craig Longman
hi. after many hours of frustration trying to get the fancy new admin tool working, i finally tracked it down to a problem with the CoyoteConnector not respecting the 'port' attribute in the Connector element in server.xml the full entry is: this works fine, except my workers.props needs to

Re: CoyoteConnector not respecting 'port' attribute

2002-09-09 Thread Craig Longman
On Mon, 2002-09-09 at 16:09, Remy Maucherat wrote: > You have to use the jk2.properties to configure the port for JK2. > > Some real documentation for JK 2 is coming soon. actually, i thought about that, then i noticed that the jk2.properties file had the line: # channelSocket.port=8019 which

Managing a Listener

2002-09-10 Thread Craig Longman
i have a need for some data that is needed by every page. Ideally, this would simply be a class that is shared by everything else in one webapp subdirectory, and available in the page context or session. the only way i can see to do this (based on the docs at least) is to configure a Listener t

RE: Managing a Listener

2002-09-10 Thread Craig Longman
On Tue, 2002-09-10 at 14:11, Srofe, Douglas (c) wrote: > Craig, > > [...snip...] > > If this is not enough to get you started, I would be happy to fill in some > more specifics. i see your point, and that makes good sense. in my particular case, i think that the sessio

RE: Managing a Listener

2002-09-10 Thread Craig Longman
here and be initialized with the value. i'm still trying to figure out how it does that, its not clear to me at all, it looks like a lot of custom code. then i still need to figure out how to get the default logger from a filter. whew. > > -Original Message- > > From: Craig Long

RE: Managing a Listener

2002-09-10 Thread Craig Longman
e out, i want it to be configured from the server.xml file as much as possible, hard-coding things always seems to cause problems at some point. > -Original Message----- > From: Craig Longman [mailto:[EMAIL PROTECTED]] > Sent: 10 September, 2002 11:56 AM > To: tomcat-user >

RE: Managing a Listener

2002-09-10 Thread Craig Longman
On Tue, 2002-09-10 at 14:58, Turner, John wrote: > > >From the 4.0 docs: > [...snip...] > Note that a Listener can have any number of additional properties that may > be configured from this element. Attribute names are matched to > corresponding JavaBean property names using the standard propert

RE: Managing a Listener

2002-09-10 Thread Craig Longman
On Tue, 2002-09-10 at 14:58, Turner, John wrote: > > >From the 4.0 docs: where did you find this? i'm trying to figure out how the listener can obtain basic site configuration info like loggers and directories now, but i can't seem to find anything that takes about listeners -- Craig

RE: Managing a Listener

2002-09-10 Thread Craig Longman
On Tue, 2002-09-10 at 15:48, Durham David Cntr 805CSS/SCBE wrote: > > Here's an example: > > > > package.Listener > > > > I think this is what you should do if you are just initializing > some objects. I'm using this on a project to initialize a cache of > "business" objects. ok,

RE: Managing a Listener

2002-09-10 Thread Craig Longman
On Tue, 2002-09-10 at 18:16, Milt Epstein wrote: > > Remember, you're talking about a context listener, not a servlet > listener. Their lifecycles are different. The servlet lifecycle is > pretty well known -- that is, it is possible that servlets can be > created and destroyed by the servlet co

RE: Managing a Listener

2002-09-10 Thread Craig Longman
On Tue, 2002-09-10 at 19:53, Milt Epstein wrote: > On 10 Sep 2002, Craig Longman wrote: > > > > well, i'm going to have to be very careful. i have no idea what context > > i'm receiving, but it doesn't appear to be the ActionServlet, there are > >

more configuration questions

2002-09-10 Thread Craig Longman
ok. now i've got another problem, related to using apache to proxy and the perceived hostname, with setting of session cookie names. to get around the restriction in tomcat of forcing applications in subdirectories on the url, i have the following setup: server.begeek.com -> proxies to serve

RE: Managing a Listener

2002-09-10 Thread Craig Longman
On Wed, 2002-09-11 at 02:08, Milt Epstein wrote: > On 11 Sep 2002, Craig Longman wrote: > Back to basics: A servlet container will have a bunch of contexts (aka > web applications), and each context will have a bunch of servlets/JSPs > (where "a bunch of" basically means &q

Re: more configuration questions

2002-09-10 Thread Craig Longman
On Wed, 2002-09-11 at 02:07, Craig Longman wrote: > > is there any other way to set this on the context level? that would be > ideal for my purposes. one would think that makes sense, right? i > mean, the getServerName() and getServerPort() are both in the > ServletContext, w

getting current page name from jsp tag

2002-09-11 Thread Craig Longman
i'm delving into the depths of tag writing, and the first thing i need to do was write a tag that could figure out what the name of the current page being processed is. the only way i could see to do this was to use the PageContext.getRequest().getRequestURL/I() methods. all of this is in tomca

Re: broken pipe and outof memory error

2002-09-12 Thread craig franke
I've had a similar problem with Novell Portal Services on a Win2k/Apache 2.0.40/Tomcat 4.1.10/JDK 1.4 box... memory usage kept climbing and eventually had to reboot system twice after memory usage got to 181M and tomcat spit back a outofmemory error. Tried adding -Xms64m to catalina.bat to see

referencing taglibs

2002-09-12 Thread Craig Longman
i'm using tomcat 4.1.10 i am trying to understand the referencing of taglibs from jsp pages. many samples on the 'net (including tutorials from sun) simply do the following: <%@ taglib prefix="c" uri="/jstl-c" %> and then have this in their web.xml files: /jstl-c /WEB-INF/tld/jstl-c.t

Re: broken pipe and outof memory error

2002-09-12 Thread craig franke
On a windows machine where apache is starting tomcat, where would I place the switch? I placed it as part of CATALINA_OPS by entering set CATALINA_OPTS="-Xms256m -Xmx512m" near the beginning of the catalina.bat startup file. Not sure if this was where to place it or not though. >>> [EMAIL

this is a bug, right?

2002-09-17 Thread Craig Longman
when i've done an import (either using the c:insert or tiles:insert) i find that many of the request.getXXX methods relating to the URL produce bogus results. here is what i get (from an included file): getRequestURI(): re getPathInfo(): null getPathTranslated(): null getRequestURL(): http://

Re: this is a bug, right?

2002-09-18 Thread Craig Longman
On Wed, 2002-09-18 at 02:43, Bill Barker wrote: > Not a bug. c:insert calls RequestDispacher.include, where section 8.3.1 of > the (2.3) servlet spec requires that getPathInfo, getPathTranslated, > getServletPath all reflect the values of the "included" servlet. yeah, although that part tripped

Apache 2.0.40 & Tomcat 4.0.3

2002-09-19 Thread Craig Deering
Here is a problem I've been trying to solve for about a week now... I was running Apache 2.0.35 with Tomcat 4.0.3. I decided my problem was with Apache so I upgraded to 2.0.40 and am still having the same issues. It appears that if you go to my website and put in the URL: http://www.somewhere.

Re: Shut down IIS and replace w/standalone Tomcat --consequences?

2002-09-19 Thread craig franke
You don't have to shut down IIS completely. I have IIS and Apache both running on my W2K domain controller. All I did was go to Internet Services Manager and Stop the Default Website and the Administration Website. Once you do that, port 80 is free and you can run tomcat on that port.

Re: web.xml & taglib

2002-09-23 Thread Craig Longman
On Mon, 2002-09-23 at 13:48, Maxime Colas des Francs wrote: > Error : > GRAVE: Parse Error at line 28 column 11: The content of element type > "web-app" must match > "(icon?,display-name?,description?,distributable?,context-param*, > filter*,filter-mapping*,listener*,servlet*,servlet-mapping*, > s

Tomcat 4.1.x and HTTP/1.0 persistant connections.

2002-09-24 Thread Byrne Craig
drop the connection for inactivity. In previous tomcat versions it worked fine, since persistant connections for HTTP/1.0 were ignored. I see now, in the Coyote documentation, that HTTP/1.0 persistant connection are now enabled. TIA, Craig. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTEC

Re: Tomcat 4.1.12 memory leak

2002-09-26 Thread craig franke
. The server still gobbed up memory and resources until it imploded and I had to reboot. Something as simple as holding down the refresh key for 3 minutes was enough to crash it. Not good for a production environment. Craig >>> [EMAIL PROTECTED] 09/26/02 08:41AM >>> Good expla

Re: Tomcat 4.1.12: access log corrupted

2002-09-27 Thread Craig Longman
On Thu, 2002-09-26 at 07:37, [EMAIL PROTECTED] wrote: > Now with 4.1.12 have a look to a sample of what i see into it. > (Sorry for the weird looking but it's full of control characters that when > imbedded into the mail do strange things) > I think i should open a bug. Do i? > > 6"> 172.20.52.27

RE: OutOfMemoryError after 88MB on Win2K / Tomcat 4.0.4

2002-10-03 Thread craig franke
I had a similar problem using Novell portal services on Tomcat 4.1.x and Apache 2.0.4x where after I a while I'd start getting out of memory problems. Windows 2000 with JDK 1.4.x seems to completely ignore the -X parameters when starting tomcat. I ended up switching the platform I was running

Re: Cannot unsubscribe???

2002-10-18 Thread craig franke
lol... Email filters help tremendously... Try using the word unsubscribe in the subject and see what happens... >>> [EMAIL PROTECTED] 10/17/02 11:29AM >>> Help, the listserv will not respond to my pleas for unsubscription. Using the address below. Drowning in piles of tomcat mail... > To unsubs

Re: Random DNS Error

2002-10-18 Thread craig franke
ire system >>> [EMAIL PROTECTED] 10/18/02 03:29PM >>> Thanks Craig, I think your right about IE. I am unable to reproduce the error using HTTPS and Opera 6.03. This would point to an IE browser bug (in the version I'm using anyway, 6.0.2600..xpclnt_qfe.010827-1803). Thanks ag

RE: How do I unsubscribe?

2002-11-19 Thread craig franke
if those still don't work you, depending on your email client you could just create a mail rule to automatically trash messages from the list [or auto file them in another folder] >>> [EMAIL PROTECTED] 11/19/02 09:36AM >>> You can do the following: - Describe what happened. (Did receive a feedba

Re: Antw: Re: Tomcat Newsgroup?

2002-11-20 Thread craig franke
A digest option would be nice for those who prefer getting emails in that format. I'd rather get several tomcat emails at a time I think as opposed to the several hundred that I get in a week. [And my network administrator would probably be less vocal on how many emails I receive a day :)] --

getAttributeNames doesn't return application level objects

2001-04-05 Thread Craig Weinstein
I am trying to get a list of all application level objects that where defined in jsps. I have a jsp that utilizes an application level object. In my Servlet, I try to access this object by ServletContext context = getServletContext(); Enumeration enumNames = context.getAttributeNames

RE: Caching Servlet Output in Browser

2001-04-10 Thread Craig Pfeifer
ense, no?). Check out the HTTP 1.1 cache-control header specs: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9 Craig Pfeifer Software Engineer Aether Systems, Software Products Division 703.847.3303 x2053 [EMAIL PROTECTED] > -Original Message- > From: Mathia

RE: Fed up to the back teeth with tomcat !!!

2001-04-11 Thread Craig Pfeifer
This sounds like a business plan for a little startup consulting company if I ever heard one. I know that Tomcat is the 'reference implementation,' but how do you know when your load/needs outgrow Tomcat? And when they do, what are the alternatives? Craig Pfeifer Software Engin

RE: Java Update on Linux

2001-04-12 Thread Craig O'Brien
Both are harmonious on the same system. As a side note, IBM's SDK 1.3 is said to be quick but use much more ram then the above mentioned SDKs and have poor debugging capabilities. (I do not have first hand knowledge of this) Sun's SDK works great on my Windows2000 systems. Regards, Craig -

RE: Servlet -- SingleThreadModel

2001-04-13 Thread Craig Pfeifer
ined by what your servlet does) Craig Pfeifer Software Engineer Aether Systems, Software Products Division 703.847.3303 x2053 [EMAIL PROTECTED] > -Original Message- > From: eric leung [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 12, 2001 7:03 PM > To: [EMAIL PROTE

servletoutputstream synchronization

2001-04-16 Thread Craig Pfeifer
at myself? What does the servlet spec say about this?   Thanks,   Craig Craig PfeiferSoftware EngineerAether Systems, Software Products Division(571) 633-5753[EMAIL PROTECTED]   

RE: servletoutputstream synchronization

2001-04-16 Thread Craig Pfeifer
< humble apologies for HTML mail > Craig Pfeifer Software Engineer Aether Systems, Software Products Division (571) 633-5753 [EMAIL PROTECTED] -Original Message- From: Mr.Y.SHIVAKANT [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 9:38 AM To: [EMAIL PROTECTED] Subje

RE: tomcat startup problem

2001-04-16 Thread Craig Pfeifer
re trying to use. So, chances are another instance of Tomcat is running on this machine already. Craig Pfeifer Software Engineer Aether Systems, Software Products Division 703.847.3303 x2053 [EMAIL PROTECTED] > -Original Message- > From: Chad Harrison [mailto:[EMAIL PROTECTED]]

RE: Weird Cookie Behavior

2001-04-16 Thread Craig Pfeifer
There's actually 2 cookie specs: the current one and an older netscape specification. I don't think that IE abides by the netscape spec (shocking!). You might have to detect the browser and act accordingly. That's the greatest thing about standards, there's so many to choose

subscribe cepfeifer@aethersystems.com

2001-04-17 Thread Craig Pfeifer
subscribe [EMAIL PROTECTED] Craig Pfeifer Software Engineer Aether Systems, Software Products Division (571) 633-5753 [EMAIL PROTECTED]

RE: Acrobat problem

2001-04-17 Thread Craig O'Brien
It is a java issue. Make sure to setContentType() Make sure to setContentLength() Regards, Craig -Original Message- From: Steve G [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 17, 2001 6:11 AM To: [EMAIL PROTECTED] Subject: Acrobat problem I don't know if this is a Tomc

RE: Acrobat question clarification

2001-04-17 Thread Craig O'Brien
mime-type mappings in the web.xml file. I cannot duplicate your problem. .pdf files are binary. What type of plain text are you getting? It should look like a bunch of strange characters with a text header, otherwise you may not have a valid .pdf file. Linux, tomcat-3.2.1 Good luck, Craig

RE: JDBC question

2001-04-17 Thread Craig O'Brien
drivers or URL. It looks like everything is there. Good Luck, Craig -Original Message- From: Bo Wang [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 17, 2001 8:15 PM To: [EMAIL PROTECTED] Subject: Re: JDBC question Thanks for your help, here attached my servlet. I'm using win98

RE: CSS Help

2001-04-18 Thread Craig O'Brien
am assuming that you do have a "<" at the beginning of !DOCTYPE and that you are accessing tomcat with port 8080 (or what ever you deliberately chose). Good luck, I liked that book as well. Craig -Original Message- From: Purcell, Scott [mailto:[EMAIL PROTECTED]] Sent: We

RE: Code Q.

2001-04-19 Thread Craig O'Brien
which is a very friendly place. :0) Make sure to read "how I taught my dog polymorphism" and visit the saloon regularly. Good luck, Craig Sun Certified Java Programmer -Original Message- From: Tim Coultas [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 5:47 AM To: [EMAIL

RE: Cleaning up servlets

2001-04-19 Thread Craig O'Brien
n try starting tomcat with the -verbose:gc Option and watch the garbage collector at work. (beware this is allot of information) I have been very impressed with the garbage collection with Sun JDK1.3x. I also use NT2000 but haven't monitored the situation as closely in that environment. Rega

RE: Editing tomcat.reg

2001-04-19 Thread Craig O'Brien
make. See "tomcat IIS how to." Regards, Craig -Original Message- From: Pinar Bicioglu [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 8:48 AM To: '[EMAIL PROTECTED]' Subject: Editing tomcat.reg Hi, I am a newbie to Tomcat. Could someoen please tell m

RE: freeBSD

2001-04-19 Thread Craig O'Brien
I use the 1.2.2 for IDE work compiling with the 1.3. My understanding is that there are allot of people using tomcat with freeBSD successfully. Regards, Craig -Original Message- From: Eric Mosley [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 9:12 AM To: [EMAIL PROTECTED] S

RE: Tomcat mod_jk very slow if used with apache

2001-04-20 Thread Craig O'Brien
VERY COOL guys!! What a nice letter to wake up to. I made the change mentioned and my server's performance went from 14.51 pages per second to 82 pages per second. Still if I access tomcat directly I get over 200 pages per second but that is much better. Any other ideas? Thanks,

RE: ISAPIredirect.dll under NT server

2001-04-20 Thread Craig O'Brien
. Good luck, Craig -Original Message- From: Paul Meaney [mailto:[EMAIL PROTECTED]] Sent: Friday, April 20, 2001 8:56 AM To: '[EMAIL PROTECTED]' Subject: ISAPIredirect.dll under NT server Hello everyone. I am currently trying a simple installation of tomca

RE: Tomcat mod_jk very slow if used with apache

2001-04-20 Thread Craig O'Brien
. That's it. Regards, Craig -Original Message- From: Hunter Hillegas [mailto:[EMAIL PROTECTED]] Sent: Friday, April 20, 2001 8:29 AM To: Tomcat User List Subject: Re: Tomcat mod_jk very slow if used with apache I somewhat "Tomcat Internals" ignorant. What change would I need

RE: Tomcat & Windows 2000

2001-04-22 Thread Craig O'Brien
t and follow it explicitly. (print out the documentation, use a pencil to mark your steps.) If you have problems relay the steps you have taken and what error messages you are getting. The more detail the better. Regards, Craig -Original Message- From: test test [mailto:[EMAIL PROTECTED]]

RE: Accessing HTML files in the apache root from servlets

2001-04-22 Thread Craig O'Brien
server for better performance. If your directory is a mess you are only looking for trouble. It WILL get worse over time. Regards, Craig -Original Message- From: Iain Lowe [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 22, 2001 5:52 PM To: [EMAIL PROTECTED] Subject: RE: Accessing HTML

RE: Tomcat & Windows NT & IIS

2001-04-22 Thread Craig O'Brien
e documents are worth getting familiar with as well. Good luck, Craig It's late here, I'm out for the night. -Original Message- From: test test [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 22, 2001 8:35 PM To: '[EMAIL PROTECTED]' Subject: RE: Tomcat & Windows NT &

RE: to many tomcat processes!! AAH!!

2001-04-23 Thread Craig O'Brien
multi-threading. You have a thread pool ready to respond without the overhead of creating new processes on demand. Good luck, Craig Let us know what you find out. -Original Message- From: Wolle [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 4:30 AM To: [EMAIL PROTECTED] Subject

RE: seems as though a servlet engine would have a little clearer documentation on getting servlets running

2001-04-23 Thread Craig O'Brien
e and call http://hostname:8080/servlet/yourservletname that will bypass mod_jk. If that isn't working your servlet is not placed correctly or you are missing the servlet.jar. Put your servlet in the same directory that you find snoopServlet. Regards, Craig -Original Message- Fro

RE: ArrayList vs. Vector

2001-04-23 Thread Craig O'Brien
programmer must provide their own synchronized methods should they be needed. Regards, Craig Sun Certified Java Programmer -Original Message- From: Hunter Hillegas [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 12:37 PM To: Tomcat User List Subject: ArrayList vs. Vector I use

RE: ArrayList vs. Vector

2001-04-23 Thread Craig O'Brien
a object is constant. If you are iterating through your data an array would certainly be faster. Usually simpler is better. I wonder how much overhead creating an iterator costs? Perhaps create an iterator pool. Just a few thoughts. Sounds like you aren't having any troubles. Best Regard

RE: Tomcat hangs under win 98

2001-04-23 Thread Craig O'Brien
your system messages appear there. errors etc. Good luck, Craig -Original Message- From: Michael Burke [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 6:28 PM To: '[EMAIL PROTECTED]' Subject: Tomcat hangs under win 98 When I start tmcat under win 98 it hangs afte

RE: ArrayList vs. Vector

2001-04-23 Thread Craig O'Brien
hundred milliseconds anyway. Good luck with your endeavors, Fraternally, Craig -Original Message- From: Jeff Kilbride [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 9:35 PM To: [EMAIL PROTECTED] Subject: Re: ArrayList vs. Vector Hi Craig, Thanks. I may re-investigate the neces

RE: Question on unsubscribe?

2001-04-24 Thread Craig O'Brien
Look at the header of the email that you receive. You are subscribed by the email address in the Delivered-To field. Unsubscribe using that email address. You are using: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) View options to see the header. Regards, Craig > -Origi

RE: Tomcat and IIS

2001-04-25 Thread Craig O'Brien
came bundled with Oracle.(if that's the case stop that server and try again) Good luck, Craig -Original Message- From: Nottebrok, Guido [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 25, 2001 7:48 AM To: [EMAIL PROTECTED] Subject: Tomcat and IIS Hallo, we have installed Tomcat Ve

RE: Newbie security question

2001-04-25 Thread Craig O'Brien
separated by a space. eg: DirectoryIndex index.html index.jsp index.php yourdesiredpage.whatever Apache will choose the first one it encounters so add yours to the end. This only takes effect if after you restart apache .../usr/sbin/apachectl restart Regards, Craig -Original Message

RE: Directory structure blocking

2001-04-27 Thread Craig O'Brien
. You have amazing control of your site, redirects, accesses, icons, etc. simply with apache. Regards, Craig -Original Message- From: Brahmanand Gannur [mailto:[EMAIL PROTECTED]] Sent: Friday, April 27, 2001 6:15 AM To: [EMAIL PROTECTED] Subject: Directory structure blocking Hi everone

RE: TOMCAT and APACHE

2001-04-27 Thread Craig O'Brien
Hello, I don't use mod_jserve but use mod_jk.so which is faster. However, Perhaps your new directory was created by root and the apache group needs to be given access explicitly. Just a thought. Regards, Craig -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]

RE: Apache and Tomcat integration

2001-05-01 Thread Craig O'Brien
it at http://willow.cc.edu/docs/adminguide Regards, Craig -Original Message- From: Tarwinder Dhak [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 3:40 AM To: 'Tomcat' Subject: Apache and Tomcat integration Hi all, I'm trying to get apache and Tomcat 3.2.1 to tal

RE: Tomcat Performance..

2001-05-02 Thread Craig O'Brien
ut at 1107 pages per second on that servlet with Resin. Consider your bandwidth, of course, 50-60 pages per second can easily overwhelm a T1 line. Indeed with a standard 45k+ page you would be lucky to anywhere near 25. Regards, Craig -Original Message- From: [EMAIL PROTECTED] [mailto:[

Attn: GOMEZ - RE: Apache and Tomcat integration

2001-05-04 Thread Craig O'Brien
ded for my most recent install. (mod_jk.so-eapi) I really appreciate your hard work with Tomcat. You and Craig McClanahan are heroes here. Best Regards, Craig O'Brien -Original Message- From: GOMEZ Henri [mailto:[EMAIL PROTECTED]] Sent: Friday, May 04, 2001 12:26 AM To: [EMAIL PRO

RE: Tomcat is not starting - How to trap the startup error?

2001-05-04 Thread Craig O'Brien
Sounds like you are using Windows and double clicking on the startup.bat file Open your dos shell. type java -version http://localhost:8080/) check that a different jdk was not inserted in your classpath before the one you want. Check that permissions weren't changed. Regards,

Tomcat configuration issues

2001-05-06 Thread Craig Fotheringham
for Tomcat? Can i tweak a configuration to make it handle these permissions correctly. Im guessing that the problem is in the apache-tomcat config file which ive included below. If anyone has any ideas on what has happened, it would be really, really helpful. thanks! Craig tomcat-apache.conf

RE: mod_jk

2001-04-19 Thread Craig O'Brien
ation from anyone who has tried this. Is there a performance boost? I personally find the mod_jk.so route to suffer in performance. Regards, Craig -Original Message- From: Wesselmann, Marcus [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 4:48 AM To: '[EMAIL PROTECTED]'

RE: Tomcat hangs when my ORACLE database instance is running

2001-06-01 Thread Craig O'Brien
f you want both servers running. Regards, Craig -Original Message- From: Barry Hodges [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 12:55 PM To: Tomcat (E-mail) Subject: Tomcat hangs when my ORACLE database instance is running OS: SunSolaris 2.6 Database: ORACLE 8.1.6 patch

RE: Tomcat hangs when my ORACLE database instance is running

2001-06-01 Thread Craig O'Brien
for JServ. Search the directory tree. You could always kill the process if you can identify it. If all else fails, ...read the manual. Oracle works fine without its http server running in my development environment. Good luck, Craig -Original Message- From: Barry Hodges [mailto:[EMAIL

Error 500

2001-06-06 Thread Maddux, Craig
I've gotten what seems to be a rather common error, after having reviewed the mailing archives... but none of the solutions that seem to work for those other people have solved my problem. For JSP pages, Tomcat can't find the sun/tools/javac/main. This is, of course, located in the tools.jar. S

RE: Error 500

2001-06-06 Thread Maddux, Craig
luded. > > Randy > > > > -Original Message- > > From: Maddux, Craig [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, June 06, 2001 2:22 PM > > To: [EMAIL PROTECTED] > > Subject: Error 500 > > > > > > I've gotten what seems

Re: missing mod_jk.conf-auto

2001-10-04 Thread Craig Tataryn
Hi Brett, I asked this questions yesterday, except my system was Linux. Here is the answer I got: Brian Richards wrote: try running tomcat.sh run jkconf -brian So try going into your bin directory and running: tomcat.bat run jkconf Craig. Brett Crossley wrote: >I am running JB

Re: missing mod_jk.conf-auto

2001-10-04 Thread Craig Tataryn
Hey Brett, do you have directive in your server.xml file? Craig. Brett Crossley wrote: >I tried tomcat.bat run jkconf, but it complains that 'run' is not a valid >option: > ><< start screen print >> >I:\JBoss-2.4.1_Tomcat-3.2.3\tomcat\bin>tomcat.bat ru

Testing post...

2001-10-05 Thread Craig Tataryn
Testing post, no need for reply. Craig.

Help with webapp module, Apache 1.3 and Tomcat 4.0

2001-10-18 Thread Craig Setera
app more than once. I can't see anything wrong with my config (syntax checks out ok). At this point, I've completely run out of ideas. Any help appreciated, Craig

Jakarta NT Service

2001-11-12 Thread Whalland, Craig
NT4.0 box. Otherwise I am at a loss as we are able to start Jakarta manually via cmd prompt - just not as the service. Look forward to anyhelp you can provide - and if this is not the forum to ask these questions any direction would be appreciated. Craig Whalland NT Server Team Vodafone Information Servic

mod_webapp file upload fix

2001-12-12 Thread Craig McDaniel
Is there a new binary release of mod_webapp (for Linux) that fixes the binary file upload problem? Later, -- \ Craig "Cowboy" McDaniel /_\ Software Engineer /_/_\ n + 1, Inc. /_/_/_\ [EMAIL PROTECTED] /_/_/_/_\ (502) 479-5557 MICROSOFT: Most Intelligent Customers Realize Our Sof

Errors building mod_webapp for Apache 1.3

2001-12-13 Thread Craig McDaniel
- So what's the deal? Please tell me I am not a moron. Later, -- \ Craig "Cowboy" McDaniel /_\ Software Engineer /_/_\ n + 1, Inc. /_/_/_\ [EMAIL PROTECTED] /_/_/_/_\ (502) 479-5557 MICROSOFT: Most Intelligent Customers Re

Re: Errors building mod_webapp for Apache 1.3

2001-12-13 Thread Craig McDaniel
/usr/include/db1 -DUSE_HSREGEX > -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fpic -DSHARED_MODULE > -I/usr/include/apache-1.3 -c mod_webapp.c > mod_webapp.c:70: wa.h: No such file or directory > apxs:Break: Command failed with rc=1 > > etc... > --

Re: Tomcat 4 and mod_webapp

2001-12-13 Thread Craig McDaniel
its right away. > Unfortunately when it quits, it quits before it is able to dump a core > file or print anything to the error log. Also, no error messages are > printed to the logs inside of the tomcat directory structure. Try using --enable-debug with ./configure and rebuild the modul

Re: Errors building mod_webapp for Apache 1.3

2001-12-14 Thread Craig McDaniel
I -DTARGET="apache" -I/usr/include/db1 -DUSE_HSREGEX > -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fpic -DSHARED_MODULE > -I/usr/include/apache-1.3 -c mod_webapp.c > mod_webapp.c:70: wa.h: No such file or directory > apxs:Break: Command failed with rc=1 > > etc... > ---

Recreate a request for posting to a different server

2002-04-11 Thread Craig Berry
mpler than 'manually' parsing the response text and turning it into header, cookie, and payload entries? -- | Craig Berry - http://www.cinenet.net/~cberry/ --*-- "All that lives is holy." - William Blake | -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For

nsapi_redirector.so failed

2002-05-23 Thread Craig Vermillion
3/src/jakarta-tomcat-connectors-4.0.2-01-src.tar.gz Hopefully I am doing something very silly. Any help with this is greatly appreciated. Thanks in advance Craig Vermillion [EMAIL PROTECTED] - Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience

Re: AJP protocol

2002-05-28 Thread Craig Vermillion
-tomcat-connectors-4.0.2-01-src.tar.gz Good luck Craig V. --- "Sankaranarayanan (Ganesh) Ganapathy" <[EMAIL PROTECTED]> wrote: > I guess tomcat supports connection to external > webservers using the AJP protocol. > > I can see that tomcat has IIS and apache redirec

RE: 100% CPU Usage by upload from Netscape under Windows NT

2001-06-20 Thread Craig O'Brien
ately, effects the server. This does not occur with earlier versions of Netscape. Regards, Craig -Original Message- From: Stefan Seifert [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 20, 2001 8:10 AM To: [EMAIL PROTECTED] Subject: AW: 100% CPU Usage by upload from Netscape under Windo

  1   2   3   4   5   6   7   8   9   10   >