Re: [Resin-interest] ROOT.war not expanded when explicitly defined in resin.xml

2011-03-22 Thread Mattias Jiderhamn
Have you tried without versioning=true? -- /Mattias - Original Message - Subject: [Resin-interest] ROOT.war not expanded when explicitly defined in resin.xml Date: Mon, 21 Mar 2011 17:03:31 -0700 From: Keith Fetterman kfetter...@go2marine.com I am experiencing a problem in resin

Re: [Resin-interest] ROOT.war not expanded when explicitly defined in resin.xml

2011-03-22 Thread Daniel López
AFAIK, you either place the .war file in webapps or define the directory using an explicit web-app tag, but having both is not necessary and just seems to confuse Resin. S! D. El 22/03/2011 1:03, Keith Fetterman escribió: I am experiencing a problem in resin 4.0.16 where resin is not

Re: [Resin-interest] ROOT.war not expanded when explicitly defined in resin.xml

2011-03-22 Thread Keith Fetterman
In Resin 3.0, we had this configuration and it didn't have a problem. Actually, I recall that we did in an early version of 3.0.x, but the problem was corrected in the later versions. There are two reasons why we explicitly had the web-app tag in resin.conf in resin 3.0: - On our test

Re: [Resin-interest] ROOT.war not expanded when explicitly defined in resin.xml

2011-03-22 Thread Keith Fetterman
I removed the versioning attribute and it works.web-app-deploy path='webapps' / works. Thanks On 03/22/2011 12:04 AM, Mattias Jiderhamn wrote: Have you tried without versioning=true? -- /Mattias - Original Message - Subject: [Resin-interest] ROOT.war not expanded when

[Resin-interest] Resin Pro 4.0.16

2011-03-22 Thread Bill Au
Just saw that 4.0.16 is now available in the download area. I took a quick look at Resin Pro 4.0.16. It looks like the old doc directory is now installed at resin-doc. From Makefile: mkdir -p $(resin_root)/resin-doc; \ cp -r $(CP_U_FLAG) doc/*

[Resin-interest] Extending Resin's com.caucho.server.security.AbstractAuthenticator creating errors in Resin 4

2011-03-22 Thread Keith Fetterman
In our current Web site, which is running resin 3.0.28, we created a custom Authenticator by extending resin's com.caucho.server.security.AbstractAuthenticator. In resin 3.0, we used the following descriptor (under the host tag) in resin.conf: authenticator

Re: [Resin-interest] ROOT.war not expanded when explicitly defined in resin.xml

2011-03-22 Thread Scott Ferguson
On 03/22/2011 12:31 AM, Daniel López wrote: AFAIK, you either place the .war file in webapps or define the directory using an explicit web-app tag, but having both is not necessary and just seems to confuse Resin. They're supposed to be merged with the web-app in the resin.xml applied last

Re: [Resin-interest] ROOT.war not expanded when explicitly defined in resin.xml

2011-03-22 Thread Scott Ferguson
On 03/21/2011 05:03 PM, Keith Fetterman wrote: Also, what is the difference between the attribute root-directory and document-directory in theweb-app tag? I noticed in the resin documentation that root-directory is mentioned in the list of attributes but document-directory is not on the

Re: [Resin-interest] ROOT.war not expanded when explicitly defined in resin.xml

2011-03-22 Thread Keith Fetterman
I have a question about versioning. If we want to use it, do we append the version number to the name of the war file? For example: ROOT.war, ROOT-2.war, ROOT-3.war, etc. When we roll out a new version, do we delete the previous war file? For example, if I deploy ROOT-2.ear, do I delete

Re: [Resin-interest] Resin Pro 4.0.16

2011-03-22 Thread Scott Ferguson
On 03/22/2011 07:22 AM, Bill Au wrote: Just saw that 4.0.16 is now available in the download area. I took a quick look at Resin Pro 4.0.16. It looks like the old doc directory is now installed at resin-doc. From Makefile: mkdir -p $(resin_root)/resin-doc; \

Re: [Resin-interest] Extending Resin's com.caucho.server.security.AbstractAuthenticator creating errors in Resin 4

2011-03-22 Thread Scott Ferguson
On 03/22/2011 09:17 AM, Keith Fetterman wrote: Even after reading all of the help sections on the resin help documentation, I still find this injection coding rather cryptic. It looks like the Resin AdminAuthenticator authenticator and our custom authenticator are conflicting. Any ideas on

Re: [Resin-interest] ROOT.war not expanded when explicitly defined in resin.xml

2011-03-22 Thread Keith Fetterman
Thanks. If we were to use your format for the version number, would we start with ROOT-1.0.0.war instead of ROOT.war? and the second version would be ROOT-1.0.1.war? On 03/22/2011 11:37 AM, Scott Ferguson wrote: On 03/22/2011 11:25 AM, Keith Fetterman wrote: I have a question about