Re: Use of JSF view in welcome file list

2005-11-07 Thread Charlie C.L. King
you *MUST* use real files in instead of a mapped path. On 11/8/05, Tim Dean <[EMAIL PROTECTED]> wrote: > > Hello, > > I am trying to configure a welcome file list in my Tomcat-deployed > web app so that a Java Server Faces (JSF) view is used as the welcome > file. My web.xml file contains the fol

Use of JSF view in welcome file list

2005-11-07 Thread Tim Dean
Hello, I am trying to configure a welcome file list in my Tomcat-deployed web app so that a Java Server Faces (JSF) view is used as the welcome file. My web.xml file contains the following: main.faces As well as the following JSF servlet configurations: Fac

Re: Tomcat as a service under Linux... "To dream the impossible dream"

2005-11-07 Thread Justin Jaynes
Dude, I am wiling to help you, but you have to understand that Linux is SOO different from windows. Out of the box? That's not really a term we use in Linux. We put things into the box. So if you are willing to follow some careful explanations, you can get it to work. Actually, I'm headed

Tomcat 5.5 Datasource with JTOpen

2005-11-07 Thread Robert Upshall
Can somebody tell me if the following JBoss Data Source code will translate to Tomcat 5.5.12: DataSource ds = (DataSource) jndiContext.lookup("java:comp/env/jdbc/myds"); WrappedConnection wc = (WrappedConnection) ds.getConnection(); AS400JDBCConnection ajc = (AS400JDBCConnectio

RE: Nested context paths (path=/nest/myapp)

2005-11-07 Thread Caldarale, Charles R
> From: Damon Rand [mailto:[EMAIL PROTECTED] > Subject: Nested context paths (path=/nest/myapp) > > Unfortunately I have found that this is no longer supported > in TC 5.5! The path variable is ignored and instead it uses > the context.xml filename. However, I can't nest the context.xml. eg. >

[OTAnn] Feedback

2005-11-07 Thread shenanigans
I was interested in getting feedback from current mail group users. We have mirrored your mail list in a new application that provides a more aggregated and safe environment which utilizes the power of broadband. Roomity.com v 1.5 is a web 2.01 community webapp. Our newest version adds broadcas

Nested context paths (path=/nest/myapp)

2005-11-07 Thread Damon Rand
Hi there, I have been running nested context paths in TC 5.0 for some time now.. A user can browse to: http://localhost:8080/nesting/myapp/ In TC 5.0 this was a simple matter of setting path="/nesting/myapp" in the context.xml and putting the files into /webapps/nesting/myapp Unfortunately

JAAS implementation with URL callback

2005-11-07 Thread Pat Young
Does anyone know of an available JAAS implementation that comes with a URL callback? The Catalina implementation only comes with a name and password callback, but there is no way to get to the URL. Thanks, Pat Young __ Yahoo! Mail - PC

Re: ANT build + Read Password

2005-11-07 Thread Mark Thomas
Nehal Sangoi wrote: Hi All, I want my ANT Build script be reading manager-deployer's password (stored in "tomcat-users.xml") from mentioned file instead of i do supply clear text password while deployment. How can i configure this in ANT script? I am aware of the option of supplying password at

RE: Help configuring mod_jk! Apache 2.0.54 + Tomcat 5.5.12 + SuSE Linux 10.0

2005-11-07 Thread Dhaval Patel
George, you are 100% right. I haven't thought of that way. Thank you very much for your kind advice. Now I am thinking of going back to the way you suggested. A little work but good learning experience. Thanks for your help. Regards, Dhaval --- George Sexton <[EMAIL PROTECTED]> wrote: > Here's

IIS Redirect and Virtual Hosts

2005-11-07 Thread Steve Stearns
I've searched quite a bit for an answer to this question but have not had a lot of luck. I'm trying to configure an IIS server to use AJP13 to communicate with Tomcat 5.0. The trick here is that I want IIS to be able to host multiple virtual hosts from a single IP and have it be served by mul

RE: Re: Client Certificate Authentication Failure

2005-11-07 Thread Steinberger, Richard
Thanks Bill!!! It looks like overriding the UsersDaabaseRealm is the way to go so that I can authenticate against the LDAP with the user cert. I appreciate your time. Rick -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Barker Sent: Sunday, November 06, 2005 1

RE: Help configuring mod_jk! Apache 2.0.54 + Tomcat 5.5.12 + SuSE Linux 10.0

2005-11-07 Thread George Sexton
Here's why you should use your distro's versions: Along about next Thursday some vulnerability is discovered in Apache. Apache revs the product to 2.0.56. You have to download the new version, recompile it, and also re-compile any custom modules (like mod_jk). If you use the distro release, they

RE: Help configuring mod_jk! Apache 2.0.54 + Tomcat 5.5.12 + SuSE Linux 10.0

2005-11-07 Thread Dhaval Patel
Thanks again to all of you. First I was thinking about trying mod_jk via YaST. Then I looked up the version in YaST. It was something like 4.1.30 (mod_jk-ap20), which I wasn't sure whether it is suitable to my setup (Apache 2.0.54 + Tomcat 5.5.12). So I decided to build apache by myself. Few thi

RE: Help configuring mod_jk! Apache 2.0.54 + Tomcat 5.5.12 + SuSE Linux 10.0

2005-11-07 Thread George Sexton
You really did it the hard way. Here are the steps for SuSE: 1) Install Apache 2.0 from Yast 2) Install mod_jk from yast 3) Add mod_jk to /etc/sysconfig/apache2 modules list 4) Add mod_jk commands to /etc/apache2/conf.d files, or /etc/apache2/vhosts.d files George Sexton MH S

RE: JULI ConsoleHandler custom formatter

2005-11-07 Thread Johnny Tolliver
[Sorry if this is posted twice. First try seems to have failed.] Remy Maucherat <[EMAIL PROTECTED]> wrote: > java.util.logging.ConsoleHandler will only load formatter classes from > the system classloader. Ahhh... now I remember that constraint. Thanks for reminding me. In a regular Java app, I

RE: Help configuring mod_jk! Apache 2.0.54 + Tomcat 5.5.12 + SuSE Linux 10.0

2005-11-07 Thread Brent Andrewsen
You may need to install the apache2-devel packages in Yast which you can find by searching for "apache2", then selecting apache2-devel. You will also need to add an entry for "jk" in this file: /etc/sysconfig/apache2 APACHE_MODULES="access actions alias auth auth_dbm autoindex cgi deflate dir env

RE: Help configuring mod_jk! Apache 2.0.54 + Tomcat 5.5.12 + SuSE Linux 10.0

2005-11-07 Thread Dhaval Patel
Thank all of you for your advice. I solved the problem by doing following: (1) Remove previously installed Apache 2.0.54 which I installed using YaST. (2) Download Apache 2.0.54 from apache.org and configure, make, install. (3) Verify that it is working. (apachectl -k start) (4) Download jk-1.2.1

jsp-compile

2005-11-07 Thread anna.pitaev
Hi, I use TOMCAT 5.0.28 running on debian. My trouble is: I have everytime to restart the tomcat, to recompile an existing jsp, that has been changed. Is my TOMCAT configuration wrong? Thank you, And best regards Anna Pitaev smime.p7s Description: S/MIME c

RE: Help configuring mod_jk! Apache 2.0.54 + Tomcat 5.5.12 + SuSE Linux 10.0

2005-11-07 Thread George Sexton
Well, the easiest thing to do is to install the mod_jk binary that suse provides. Once you've done that, edit the /etc/sysconfig/apache2 file and add mod_jk to the list of modules. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 > -Original Message- > Fro

Re: "java.lang.OutOfMemoryError: unable to create new native thread" after recompiling the kernel to 2.6.11.3

2005-11-07 Thread Akhthar Parvez K
Hi Brend and others Tomcat version: 5.5.9 this is a compiled one(souce from jakarta.apache.org ) it's working with apache1.33 using AJP1.3 connector Please can anyone shed some light on this? On 11/3/05, Brent Andrewsen <[EMAIL PROTECTED]> wrote: > > Can you give us so

Re: Can a "return" statement cause a problem?

2005-11-07 Thread Dola Woolfe
> >What could that be? In the tomcat console window, I > >get no indication that something is not right. > > > > > > > > First you still should be presenting a well formed > HTML page to the > browser. I think I'm correcting in stating that > should > exiting inside , but you still should em

RE: Tomcat 5.0.28 session timeout / invalidation

2005-11-07 Thread Edward Wynn
No, I am not using IIS as a front-end - my front-end is simply JSP pages. I have read that there are others with similar problems to this when using IIS as a front-end - no answers though just problem reports. Eddie -Original Message- From: Tobias Meyer [mailto:[EMAIL PROTECTED] Sent: 07

Re: Tomcat 5.0.28 session timeout / invalidation

2005-11-07 Thread Tobias Meyer
Are you using IIS as frontend on that machine? That is where I have very similar problems... I'll be very much interested in any findings regarding this topic. Tobias Edward Wynn wrote: Hello, I am running Tomcat 5.0.28 and am having some problems with session invalidation / timeout that I

Tomcat 5.0.28 session timeout / invalidation

2005-11-07 Thread Edward Wynn
Hello, I am running Tomcat 5.0.28 and am having some problems with session invalidation / timeout that I would like some help with. My application has a session-timeout of 5 minutes, and in my development and test environments sessions are correctly invalidated by tomcat when the timeout pe

replacing the error page(s)

2005-11-07 Thread Paul Singleton
If I want to ensure that Tomcat's built-in error page (5.5.9+) is never used (and provide a custom replacement) (for all apps in a server), is there a better way than putting this sort of stuff in conf/web.xml? 404 /some/error/page.jsp java.io.IOException /some/error/page.jsp

rewriting urls with a valve

2005-11-07 Thread Eino Lilius
Hi, I have one the following web apps: my.war -deployment /my/a etc.) ROOT.war -deployment (/b) I would like to get rid of that ROOT.war, and pass all requests to my.war (including /b). In server.xml it is possible to define valves. I was thinking of creating a valve which changes r