Encrypt Cleartext Resource Password

2006-08-16 Thread Darren
it is not cleartext. Checking the docs I see mention of a digest parameter, but I cannot find any reference to using this with regard to a JDBC resource. Is such a thing possible? If not, perhaps someone could point me to the relevant parts of the source code I need to subclass in order to make

Re: Encrypt Cleartext Resource Password

2006-08-16 Thread Darren
:31, Yassine ELassad (YEL) wrote: HI Darren, I guess you need this : digest="MD5" in your realm definition so it would look like follow: url="jdbc:mysql://localhost: 3306/DB? autoReconnect=true" /> Greetings, Yassine Cologne,Germany On 8/16/06, Darre

Re: Encrypt Cleartext Resource Password

2006-08-17 Thread Darren
I found this provider to be a good starting point http://www.bouncycastle.org/latest_releases.html There are multiple classes available for Message Digest 5 http://www.bouncycastle.org/docs/docs1.5/index.html one of which is Message Digest 5 with Data Encryption Standard see JCEBlockCipher.PBEWit

Global Error Page Override

2006-10-11 Thread Darren
only works (or technically fails) because non_existent_file.jsp does not exist in each web application, but it does prevent the problem. Any suggestions for a better solution? Thanks, Darren - To start a new topic, e-mail:

Where to place JNDI sections for customer deployment

2006-02-17 Thread Darren
ailed. I see when an application is deployed tomcat makes it's own context configuration within $CATALINA/conf/Catalina/$HOST/$CONTEXT.xml which appears a good place to put the JNDI lookups. Only problem is this file is removed by tomcat when the application is undeplo

Re: Where to place JNDI sections for customer deployment

2006-02-17 Thread Darren
dding the xml fragments (you can ship) to server.xml themselves. Tim -Original Message- From: Darren [mailto:[EMAIL PROTECTED] Sent: Friday, February 17, 2006 11:00 AM To: users@tomcat.apache.org Subject: Where to place JNDI sections for customer deployment Hi, I am running Tomcat

Securing Tomcat Article for Review

2007-01-09 Thread Darren
any comments - good or bad!. Thanks, Darren - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Securing Tomcat Article for Review

2007-01-09 Thread Darren
Things like: Change files in CATALINA_HOME/conf to be readonly (400) ... Rename CATALINA_HOME/conf/server.xml to ... won't work for dummies (due to missing rights) if they'll follow the guide step by step. You're right, the ordering is perhaps a little confusing. The article is not aimed sp

Re: Securing Tomcat Article for Review

2007-01-10 Thread Darren
but if you remember how this thread started, the author of the article and OP suggested in his article to put an apache / iis in front of tomcat to INCREASE security No I didn't, but if that's how you interpreted the section on 'running on port 80' then it needs to be reworded accordingly. h

Re: Securing Tomcat

2007-01-19 Thread Darren
http://www.owasp.org/index.php/Securing_tomcat covers some areas which may be of interest to you. On 19 Jan 2007, at 14:04, Suneet Shah wrote: Hello, I am using Tomcat as a Reverse Proxy through a pluggin that we have built. One of the questions that I am being asked is how do we make the

Re: Password encryption for JNDI settings

2007-02-02 Thread Darren
Is there anyway we can encrypt password for JNDI Data source in context.xml ? Ravi Take a look at the very final section in this article http:// www.owasp.org/index.php/Securing_tomcat The short answer, no. - To start a

Re: Turn off Tomcat Version on 404 error.

2007-03-14 Thread Darren
For just 404 you can create your own page as another poster advised. If you want to do this for all error/code pages, take a look part way down the common section of this article. http://www.owasp.org/index.php/Securing_tomcat#Common On 13 Mar 2007, at 20:58, Susan Richards wrote: How does

Re: Logging

2007-03-20 Thread Darren
If I place a logging.properties in my context/WEB-INF/classes I seem to get the correct logging information in my log file. However, the output also seems to get the catalina.out. I really only want it in the context specific. Is there something else to configure to prevent it going to the

Re: Session

2007-03-22 Thread Darren
I am trying to make the session in my java(Tapestry) project only expire when the browser is closed. HTTP is stateless so the server has no idea what the client is or isn't doing. You could make something to suit your purposes though; - change your session timeout to something small like 5

Re: Session

2007-03-22 Thread Darren
I tried this by using an iframe in the page that kept refreshing the page. It works but the only problem is you get a click everytime the frame refreshes. What in javascript would constitute a 'keep alive' request? I don't have any examples as it's not something I've done. I was thinking

Re: Paths in CSS files

2007-03-27 Thread Darren
Something I've done before is rename my css files to jsp and use $ {pageContext.request.contextPath} within them. <[EMAIL PROTECTED] contentType="text/css"%> <[EMAIL PROTECTED] pageEncoding="UTF-8"%> #header { margin: 0px 0px 15px 0px; height: 100px; background: url(${pageContext.re

Re: Encrypting passwords in the connection pool setup

2007-05-01 Thread Darren
I commented on this in the following article - http://www.owasp.org/ index.php/Securing_tomcat#Cleartext_Passwords_in_CATALINA_HOME.2Fconf. 2Fserver.xml In short, no. There was also some further discussion on one of the OWASP list recently - https://lists.owasp.org/pipermail/java-project/200

Re: Encrypting passwords in the connection pool setup

2007-05-01 Thread Darren
ove on the current cleartext situation, but I can't think of a sensible solution that would warrant a developers time. Darren - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECT

Problem with JVM Old-Gen heap and setting JVM Memory Pool

2006-07-05 Thread Darren Kukulka
.  Sometimes a manual GC with JConsole helps but this is hardly ideal!  GC sure is a barrel-o-fun!   Can anybody offer some suggestions to resolve this?   Cheers,   Darren Kukulka IT Infrastructure Consultant Conntrol Connaught PLC   Connaught honoured AIM 'Decade of Excellence&#

PS Old Gen filling up...

2006-07-12 Thread Darren Kukulka
right direction? Thanks in advance. Darren Kukulka Connaught honoured AIM 'Decade of Excellence' Award Connaught awarded Partnering Contractor of the Year 2005 Connaught wins AIM 'Company of the Year' award 2004 West of England Business of the Ye

The requested resource is not available

2006-07-18 Thread Darren Hall
ing off the request to my serlvet. Also I've tried hitting the servlet directly by pointing my browser to http://localhost:8080/abc and I get the same "The requested resource (/abc) is not available" error. What have I done wrong?

RE: The requested resource is not available

2006-07-19 Thread Darren Hall
ation in my web.xml file (I don't believe... at least I have no element present in the file). What I posted before was nearly the entire web.xml. I can post the whole file if you'd like. Thanks, Darren - To sta

RE: The requested resource is not available

2006-07-19 Thread Darren Hall
"The requested resource (/abc/abc) is not available." What am I doing wrong here? I remember being able to configure Tomcat before so that a give URL pattern would map to a corresponding servlet, but for some reason, I'm unable to get it to work now. Any help would be greatly appreciat

ClassNotFound - Is WEB-INF/lib in my app's classpath?

2006-07-24 Thread Darren Hall
itories listing above meaningful? Why can't Tomcat's classloader find my ControlServlet class? Thanks, Darren - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Setting the classpath for my application

2006-07-24 Thread Darren Hall
or my application in Tomcat? Thanks, Darren -Original Message- From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: Monday, July 24, 2006 11:19 AM To: 'Tomcat Users List' Subject: ClassNotFound - Is WEB-INF/lib in my app's classpath? Ok, I've deployed my applicatio

RE: Setting the classpath for my application

2006-07-24 Thread Darren Hall
s in the jar under the WEB-INF/lib directory??? Any help would be appreciated. Thanks, Darren -----Original Message- From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: Monday, July 24, 2006 1:59 PM To: 'Tomcat Users List' Subject: Setting the classpath for my application Is the

RE: Setting the classpath for my application

2006-07-24 Thread Darren Hall
controller servet was not deployed with the war file. Darren -Original Message- From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: Monday, July 24, 2006 3:07 PM To: 'Tomcat Users List' Subject: RE: Setting the classpath for my application I wanted to confirm that jar files

simple connection pooling

2006-09-11 Thread Darren Hall
sure it's not in some "other context" that struts can't see. Thanks, Darren - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

connection pooling question (posted correctly)

2006-09-11 Thread Darren Hall
context.xml directory of your WAR file or the conf directory" So where do I place this element containing my resource that describes the datasource? Thanks, Darren

RE: connection pooling question (posted correctly)

2006-09-11 Thread Darren Hall
Thanks David. The context element I'm using is taken directly from the examples. If you can tell just by looking, can you see if this looks correct for Tomcat 5.5 (otherwise I'll just use trial and error and web searching to figure it out). Thanks, Darren -Origin

RE: connection pooling question (posted correctly)

2006-09-11 Thread Darren Hall
> And the filename for the ROOT app ( / ) would beROOT.xml ? I don't know the answer, Lionel, but the logic seems to stand to reason. *wink* - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail

JConsole query

2006-09-15 Thread Darren Kukulka
"Eden", "Survivor" and "Tenured" space names Server 2 - SUN JRE 1.5.0_06-b05 - shows "PS Survivor", "PS Eden" and "PS Old Gen" space names. Can anybody explain this behaviour to me? Cheers, Darren Connaught honoured AIM 'Decade o

RE: JConsole query

2006-09-15 Thread Darren Kukulka
Thanks Jess. We suspected this was the case so we'll consolidate to server JVM. -Original Message- From: Jess Holle [mailto:[EMAIL PROTECTED] Sent: 15 September 2006 13:47 To: Tomcat Users List Subject: Re: JConsole query Darren Kukulka wrote: > HI There, > > Just a

Perm Gen not being released in GC

2006-09-15 Thread Darren Kukulka
ed to start looking at the young to old heap allocation ratios - is this the main area I should be looking into? Any thoughts would be appreciated. Cheers, Darren Kukulka Connaught honoured AIM 'Decade of Excellence' Award Connaught awarded Partnering Contractor o

Database connection pooling in Tomcat 5.5

2006-09-18 Thread Darren Hall
file. Currently I'm trying the context.xml file route, but it is not working (although this could be because I'm configuring things incorrectly). Can anyone point me in the right direction here? Thanks, Darren

RE: Database connection pooling in Tomcat 5.5

2006-09-18 Thread Darren Hall
pooling in Tomcat 5.5 post your context.xml Darren Hall wrote: > Hi all. > > > > I'm attempting to set up database connection pool using Tomcat 5.5 and > Oracle 10g. I've been following the "JNDI How To" guide from Apache > (http://tomcat.apache.or

RE: Database connection pooling in Tomcat 5.5

2006-09-18 Thread Darren Hall
D] Sent: Monday, September 18, 2006 11:30 AM To: Tomcat Users List Subject: Re: Database connection pooling in Tomcat 5.5 Do you include a in your WEB-INF/web.xml file? You might also want to post your web.xml Pid wrote: > post your context.xml > > > > > Darren Hall wrote: &g

RE: Database connection pooling in Tomcat 5.5

2006-09-18 Thread Darren Hall
The issue could be the path attribute or docbase attribute in the context.xml. I'm not sure what values should appear for these. -Original Message- From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: Monday, September 18, 2006 11:26 AM To: 'Tomcat Users List' Subjec

RE: Database connection pooling in Tomcat 5.5

2006-09-18 Thread Darren Hall
Here's another question... If the database pool is not created properly, will it fail silently, or will an error be displayed in a log file? And if an error is output to a log file, which one will it be? -Original Message- From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: M

RE: Database connection pooling in Tomcat 5.5

2006-09-18 Thread Darren Hall
a va:540) at org.federallabs.labs.LaboratorySearchAction.execute(LaboratorySearchAction.j ava:99) Problem is - I know the username and password are correct. Anyone have any ideas what could be causing my issue? I need to get this connection pool issue working by the end of work to

RE: Database connection pooling in Tomcat 5.5

2006-09-18 Thread Darren Hall
> You are likely connecting to the wrong catalog. Is the pool parameter > defaultCatalog set? That's specified in my Context, correct? If so, then no, I don't have my defaultCatalog parameter set. Here is my context.xml file (comments removed, as well as domain uname and passwd)

RE: Database connection pooling in Tomcat 5.5

2006-09-18 Thread Darren Hall
Is there any other information I can supply to help people help me understand why I'm getting this error (below)? > I've made some progress on this. I'm now receiving a "SQLNestedException: > Cannot create PoolableConnectionFactory" error when calling getConnection > on the DataSource object ret

RE: Database connection pooling in Tomcat 5.5

2006-09-18 Thread Darren Hall
logon denied" error. This leads me to believe the error is in my configuration (or my code). What am I doing wrong here?? Thanks, Darren -Original Message----- From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: Monday, September 18, 2006 2:45 PM To: 'Tomcat Users List' S

RE: Database connection pooling in Tomcat 5.5

2006-09-19 Thread Darren Hall
> Have you tried > username="myuserid" password="mypassword" > instead username="(myuserid)" password="(mypassword)" Yes Jean-Claude. In fact, I don't use the parenthesis around the username and password in my context.xml file. I just listed it that way here in the list so people would understand

RE: Database connection pooling in Tomcat 5.5

2006-09-19 Thread Darren Hall
> can you print the contents of context.xml? Absolutely Martin, The parameters are there, but they are included as attributes instead of contained as the body of an element. I'm not sure if this matters or not, but I have it implemented a way I saw it done in a "JNDI Datasource How-To" on Apache'

cannot load jdbc driver??

2006-09-19 Thread Darren Hall
F/lib folder on my server under my deployed app. Where am I going wrong?? Thanks, Darren [more info] java: version 1.5 server os: solaris 10 tomcat: version 5.5

RE: cannot load jdbc driver??

2006-09-19 Thread Darren Hall
> did you not specify a JDBC connection in the Realm? server.xml in the conf > file? I have no Realm specified in server.xml, however I'm attempting to get connection pooling set-up (see my connection pool thread) so I've created a context.xml file and specified my connection information inside a

RE: cannot load jdbc driver??

2006-09-19 Thread Darren Hall
> They will be accessible by your war file code. You do not need the jar > in both places. Only common/lib No no. I understand that it will be available to my code (since the app server will put the jar in my classpath), but it means I can't deploy ojdbc14.jar with my war any longer. Correct?

RE: cannot load jdbc driver??

2006-09-19 Thread Darren Hall
In any case, moving the ojdbc14.jar file to the common/lib directory worked. Thanks. -Original Message- From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 19, 2006 12:09 PM To: 'Tomcat Users List' Subject: RE: cannot load jdbc driver?? > They will be

RE: Database connection pooling in Tomcat 5.5

2006-09-19 Thread Darren Hall
More progress with this issue. It seems that on our development server (solaris box running solaris 10) the connection pool connects properly. However on my local box (a Windows XP SP2 box where I'm doing my development before I move it to dev) the connection pool returns to me an "invalid username

RE: Database connection pooling in Tomcat 5.5

2006-09-19 Thread Darren Hall
> does your XP box give you any application log errors anywhere? I see no errors in the event viewer in any of the logs that are related to this issue, but it was a good idea. (I didn't think of it.) > I wonder if Windows is looking for a domain authentication, that is a > domain name stapled on

RE: Database connection pooling in Tomcat 5.5

2006-09-19 Thread Darren Hall
> That SQL Nested Exception thing in general looks like the root cause...any > way to try going to the DOS prompt and connecting to SQL Plus with that > username/pwd combo? Yes, using that username and password works fine through SQL Plus, and I've connected to the database several times through

RE: Database connection pooling in Tomcat 5.5

2006-09-19 Thread Darren Hall
> did you try printing out the username and password variables to see what > credentials are coming through? Well, yes and no. I've actually hard coded the username and password into my code when I've tested *not* using connection pooling, so I know what they are in that case. When using connecti

RE: Database connection pooling in Tomcat 5.5

2006-09-19 Thread Darren Hall
(In reverse order) > have you used a DB utility such as tora/toad/sqlplus to successfully > authenticate to your Database with the values for username and password? Yes > Inside struts-config.xml can you show us what you have supplied for each > value associated with the following properties >

RE: Database connection pooling in Tomcat 5.5

2006-09-19 Thread Darren Hall
> They are, you just don't know it. From the doc: > > "These libraries are located in a single JAR at > $CATALINA_HOME/common/lib/naming-factory-dbcp.jar. Gotcha. Thanks, Chuck. The naming-factory-dbcp.jar is in my /commons/lib dir. The bizarre thing about all of this is that A) I can connect

RE: Database connection pooling in Tomcat 5.5

2006-09-19 Thread Darren Hall
> Which is why I suggested Ethereal to see what was really going over the > wire between your Windows box and the DB machine. Yep. I think you're right. I'll get that set up and take a look. Be back in a while. Thanks for the help.

Custom Principal casting problem

2006-09-21 Thread Darren Clarke
rrectly, this should work. However, although my realm still works fully and authentication succeeds and although my JSP can find/load the interface class, the cast (I_TestPrincipal) request.getUserPrincipal() still fails. In case it helps, I'm running Tomcat 5.5.17 on Mac OS 10.4.7 T

Re: Custom Principal casting problem

2006-09-21 Thread Darren Clarke
ncestors, or how my new interface MyHttpServletRequest would get picked up and used by Tomcat when calling my servlet's methods. Actually, now I've written that, I have to take it back - I don't think I understand at all ;-) Sorry if I'm being thick. Darren On 21 Se

Re: Custom Principal casting problem

2006-09-21 Thread Darren Clarke
75ed3c2e2e221a) was the way of getting around this problem. Cheers Darren On 21 Sep 2006, at 15:03, Peter Crowther wrote: From: Darren Clarke [mailto:[EMAIL PROTECTED] request.getUserPrincipal().getClass().toString() returns "poc.security.TestPrincipal"

Re: Custom Principal casting problem

2006-09-22 Thread Darren Clarke
(I_TestPrincipal in the example code below) was in both server/lib and common/lib and therefore my custom Realm was actually loading from server/lib instead of common/lib. On 21 Sep 2006, at 12:53, Darren Clarke wrote: Hi Apologies in advance if I'm going over old ground here - I

New session PER REQUEST

2006-09-22 Thread Darren Hall
;m looking for a starting point to trouble shoot and correct this issue.) Thanks - Darren

RE: New session PER REQUEST

2006-09-22 Thread Darren Hall
PROTECTED] Sent: Friday, September 22, 2006 12:04 PM To: Tomcat Users List Subject: RE: New session PER REQUEST > From: Darren Hall [mailto:[EMAIL PROTECTED] > I'm running a webapp built on Struts 1.2.9 running in Tomcat > 5.5 and using > an Apache 2.2 http server. I've noticed tha

RE: New session PER REQUEST

2006-09-25 Thread Darren Hall
Thanks David, > For using mod_proxy, have you also added proxy_name and proxy_port > attributes to the connector receiving proxied requests? Those will need > to be set so tomcat can create the session cookie correctly. I don't believe I'm setting any of these things. Correct me if I'm wrong,

RE: Tomcat 5.5.17 has max 40 KB / sec

2006-09-25 Thread Darren Hall
I got your message through the list, Steffen. I don't know how to help you, though. Sorry. Darren > Hi > > I know, reasking the same question if there was no answer, is no good > style. However I had problems using apache-lists earlier and I don't know > wether my

RE: New session PER REQUEST

2006-09-25 Thread Darren Hall
> In server.xml (tomcat's config file), the element > receiving proxied requests from Apache HTTPd needs > proxyName="www.mysite.com" and proxyPort="80" to properly handle cookies > and writing URLs. > > There are commented examples of this in the original server.xml file > distributed with t

RE: New session PER REQUEST

2006-09-25 Thread Darren Hall
I moved my port to 8081 and I still see the same behavior. *sigh* I'm still getting no positive results. I'm now thinking this issue involves one of two things. 1) Mod proxy and the way I've configured it; or 2) the rewrite rules I do on each request to and from my domain. This is my first time us

RE: New session PER REQUEST

2006-09-25 Thread Darren Hall
> Can this behavior be accomplished with mod proxy alone (meaning I can > remove mod rewrite from the picture completely)? Could this rewrite be > causing me to lose the session between Apache and Tomcat? *ding ding ding* We have a winner! I removed the rewrite rules from my httpd-vhosts.conf fil

RE: New session PER REQUEST

2006-09-25 Thread Darren Hall
n enough for me for now). Because of the way I am using virtual hosts, this works for me. I'm sure this will be a tremendous pain months from now if I need to make changes, but seeing as I have a tight deadline, I'll use this work around for now and hope for the

Re: Defining loggers "best" approach?

2006-09-29 Thread Darren Clarke
But as Mark's loggers are 'static', don't they have the same semantics WRT serialization as 'instance transient' ? If so, Mark's would seem more efficient to me (though I could be wrong) due to reduced object instantiations. Darren On 29 Sep 2006, a

JSP/Servlet runs even when webapp undeployed

2005-12-11 Thread Darren Holloway
y other things to try. Any help is gratefully appreciated. Regards, -Darren - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JSP/Servlet runs even when webapp undeployed

2005-12-11 Thread Darren Holloway
tual.xxx/htdocs And in Tomcat's server.xml, I have: debug='0' /> Cheers, -Darren Caldarale, Charles R wrote: A few things to try: 1) Take httpd ou

(newb) Tomcat servlet mapping problem

2006-01-20 Thread Darren Hall
Can anyone please tell me why my servlet is not mapped to the URL properly? Thanks. Darren

RE: (newb) Tomcat servlet mapping problem

2006-01-22 Thread Darren Hall
al Message- From: Warren Pace [mailto:[EMAIL PROTECTED] Sent: Saturday, January 21, 2006 9:34 AM To: Tomcat Users List Subject: Re: (newb) Tomcat servlet mapping problem > > From: "Darren Hall" <[EMAIL PROTECTED]> > Date: 2006/01/20 Fri PM 02:28:22 EST > To: >

RE: (newb) Tomcat servlet mapping problem

2006-01-22 Thread Darren Hall
na.log, nothing goes to stdout.log or stderr.log at all) so it makes fixing this problem that much more fun/challenging! -Original Message- From: Steve Ochani [mailto:[EMAIL PROTECTED] Sent: Sunday, January 22, 2006 8:37 PM To: Darren Hall; 'Tomcat Users List' Subject: RE: (

RE: (newb) Tomcat servlet mapping problem

2006-01-22 Thread Darren Hall
I specify the classpath for the classloader for this app? (Please forgive my Tomcat classloading ignorance.) Darren -Original Message- From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: Sunday, January 22, 2006 8:44 PM To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: RE: (newb)

RE: (newb) Tomcat servlet mapping problem

2006-01-22 Thread Darren Hall
vlet class file... - Original Message - From: "Darren Hall" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" ; <[EMAIL PROTECTED]> Sent: Monday, January 23, 2006 9:43 AM Subject: RE: (newb) Tomcat servlet mapping problem > > Have you tried accessing the se

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Darren Hall
age- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Sunday, January 22, 2006 9:19 PM To: Tomcat Users List Subject: RE: (newb) Tomcat servlet mapping problem > From: Darren Hall [mailto:[EMAIL PROTECTED] > Subject: RE: (newb) Tomcat servlet mapping problem > > I have. T

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Darren Hall
> > From: Darren Hall [mailto:[EMAIL PROTECTED] > > Subject: RE: (newb) Tomcat servlet mapping problem > > > > Is there a way I can map these servlets (in the web.xml file) so > > that Tomcat can see them and execute them? > > Not that I'm aware of, s

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Darren Hall
> On 1/23/06, Darren Hall <[EMAIL PROTECTED]> wrote: > > > > From: Darren Hall [mailto:[EMAIL PROTECTED] > > > > Subject: RE: (newb) Tomcat servlet mapping problem > > > > > > > > Is there a way I can map these servlets (in the web.xml f

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Darren Hall
I can definitely deploy a servlet the way I am trying to, but it also raises questions about why the resource bundle couldn't be located. Is all of this really a classpath or class loader issue in some way? -----Original Message- From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: Monday, Januar

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Darren Hall
p on the next one. =P The only file I'm using for mapping the servlet now is the web.xml file in the ${catalina.home}/webapps/servlet/WEB-INF directory. The new issue is "ClassDefNotFound" that occurs when I point my brow

RE: (newb) Tomcat servlet mapping problem

2006-01-24 Thread Darren Hall
> Hmm, you're mixing up that "/servlet" story. > Better remove everything named "servlet" from > your environment... It is only confusing. > > Create app.xml, put the Context path "/" > or "/app", and then "/FCLxyzServlet" or > "/app/FCLxyzServlet" are the correct URLs. > > Does that make any se

RE: Betr.: Re: The Future of Tomcat

2006-02-02 Thread Darren Hall
Those evil people at Sun with their weird and often difficult to use "javascript"!! *shakes fist* Now ECMAScript THAT'S a different story... =P -Original Message- From: Roel De Nijs [mailto:[EMAIL PROTECTED] Sent: Thursday, February 02, 2006 10:52 AM To: users@tomcat.apache.org Subj

RE: mod_jk weirdness

2006-02-06 Thread Darren Hall
#x27;testworker' connects successfully; while the second 'newworker' fails at about the same point you appear to be failing. In the below case, 'newworker' fails because it can't resolve the tomcat address after it sets the contact for 'newworker'. Don't know

RE: Blank page after tomcat install

2006-04-27 Thread Darren Hall
Steven, What web server are you running, and have you correctly connected the web server to your app server? Check your web server access logs to verify that the web server is receiving your browser request. Darren -Original Message- From: Steven Peacock [mailto:[EMAIL PROTECTED

Default install of Tomcat not working properly

2006-05-08 Thread Darren Hall
I'm having a problem getting tomcat 5.5.17 running on Solaris 10. I preformed a default install of all the binary files and set my JAVA_HOME variable to my install of jdk1.5 (/opt/jdk1.5/) The problem I am running into is when I try to view my servlets-examples page I get a 404 error from tomcat

RE: problems with unsubscribing

2006-06-14 Thread Darren Hall
Johnnie, To remove your address from the list, send an empty message to: <[EMAIL PROTECTED]> Hope this helps, Darren -Original Message- From: Johnnie Chang [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 11:05 AM To: 'Tomcat Users List' Subject: R

Tomcat 5.5 and x64 Windows

2007-01-18 Thread Darren Kukulka
up and running in my environment? Thanks in advance, Darren Kukulka Connaught honoured AIM 'Decade of Excellence' Award Connaught awarded Partnering Contractor of the Year 2005 Connaught wins AIM 'Company of the Year' award 2004 West of England Business of t

RE: Tomcat 5.5 and x64 Windows

2007-01-18 Thread Darren Kukulka
. - I'm not sure what you mean by running the install.bat. As mentioned I install using the exe. Darren. -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED] Sent: 18 January 2007 13:15 To: Tomcat Users List Subject: Re: Tomcat 5.5 and x64 Windows Darren Kukulka wrote:

RE: Tomcat 5.5 and x64 Windows

2007-01-18 Thread Darren Kukulka
I receive the same message running the "service install". Should I be specifying any parameters for this? -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED] Sent: 18 January 2007 14:01 To: Tomcat Users List Subject: Re: Tomcat 5.5 and x64 Windows Darren Kukulka wrote: >

RE: Tomcat 5.5 and x64 Windows

2007-01-19 Thread Darren Kukulka
Donnerstag, 18. Januar 2007 17:38 schrieb Darren Kukulka: > Thanks for the pointers Mladen. > > I carried out the steps you outlined, however the "service install" > command fails...as follows; > > F:\Tomcat5\bin>service install > Installing the service 'Tomcat5&#x

RE: Tomcat 5.5 and x64 Windows

2007-01-24 Thread Darren Kukulka
! Hope this helps anyone who has had the same problem. Regards, Darren. -Original Message- From: Darren Kukulka [mailto:[EMAIL PROTECTED] Sent: 19 January 2007 15:30 To: Tomcat Users List Subject: RE: Tomcat 5.5 and x64 Windows Reinhard, I am using Sun Java 1.5.0.10 for x64 (JRE

RE: Tomcat 5.5 and x64 Windows

2007-01-25 Thread Darren Kukulka
happy that it works! Martin - I only have .Net 2.0 x64 installed on my system. Darren. -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED] Sent: 25 January 2007 07:03 To: Tomcat Users List Subject: Re: Tomcat 5.5 and x64 Windows Martin Skøtt wrote: > Hi Darren, > > Goo

Tomcat thread blocking

2008-09-24 Thread Darren Kukulka
iated. Darren Kukulka Business Applications Architect Connaught PLC Tel: 01392 353497 Business in the Community (BiTC) Team of the Year 2008 for Community Impact RoSPA Gold Awards - Connaught now have 15 in total Winner of Partnering Contractor of the Year Award in 2005 and 2007 Tenant

Named based virtual host redirection

2007-03-06 Thread Darren Kukulka
p1/. Also, the original URL does not work any more. This seems to be a simple requirement but it is not proving to be straightforward. Can anybody help, or point me in the right direction? Darren Kukulka IT Infrastructure Consultant Conntrol Connaught PLC Connaught honoure

RE: Named based virtual host redirection

2007-03-06 Thread Darren Kukulka
ServerName test.abc.co.uk ProxyPass / http://fred.abc.co.uk/app1/ ProxyPassReverse / http://fred.abc.co.uk/app1/ This almost works, but it only appears to show the html content, not the JSP. Does anybody have any suggestions how to make this work? -Original Message- From: Darren

RE: Named based virtual host redirection

2007-03-07 Thread Darren Kukulka
[mailto:[EMAIL PROTECTED] Sent: 06 March 2007 15:27 To: Tomcat Users List Subject: Re: Named based virtual host redirection On 3/6/07, Darren Kukulka <[EMAIL PROTECTED]> wrote: > This worked but I want to hide the redirect URL, and eliminate the doubled network traffic, I hope? :-

How to redirect to stub page when app unavailable?

2007-04-04 Thread Darren Kukulka
-end DB updates that require no activity via the application. We are using Apache web server with mod_jk connectivity to the app servers via a large number of workers. Can anybody suggest a smart way of achieving this? Cheers in advance, Darren K Connaught wins RoSPA Gold A

Ideal JVM params for 64-bit?

2007-04-20 Thread Darren Kukulka
heers, Darren K Connaught wins RoSPA Gold Award for fourth year running Considerate Contractor Gold Award in 2006 Partnering Contractor of the Year Award in 2005 Please visit our website to see a full list of Connaught?s Registered Companies www.connaught.plc.uk/Investors/Registered-Comp

RE: Installing Tomcat on Windows Server 2003 x64

2007-05-03 Thread Darren Kukulka
We have recently migrated to this platform and have had smooth success with a SUN 64-bit JRE (version 1.5.0_10) We are using a pre-compiled Tomcat binary (5.5.23, Tomcat5.exe and Tomcat5w.exe) and tc-native.dll (APR) which can be found at http://svn.apache.org/viewvc/tomcat/connectors/tags/tc5.5.x

  1   2   >