Re: [Resin-interest] Eclipse Plugin

2009-04-17 Thread Stargazer
Emil Ong wrote: Hi Aaron, The plugin is built on the WST/JST (Java webtools) framework, so you get all the goodies that come with that. It also provides 3 different deployment mechanisms: 1) .war based 2) in place 3) new Resin 4.0 remote deploy Suggestions for other features are always

Re: [Resin-interest] Eclipse Plugin

2009-04-17 Thread Levi Stanley
Exadel Studios, use to integrate so well with resin. I think it is great that you guys have a eclipse plugin. Best regards, Levi Stargazer wrote: Emil Ong wrote: Hi Aaron, The plugin is built on the WST/JST (Java webtools) framework, so you get all the goodies that come with that. It

Re: [Resin-interest] Eclipse Plugin

2009-04-17 Thread Jeff Schnitzer
Oh no... I hate this discussion. Let's just say that there are plenty of people on both sides of the fence. I have a fair amount of experience with Maven on big complicated projects and loathe it intensely. This thread is worth reading, you can search for my name to see my long-winded comment:

Re: [Resin-interest] Eclipse Plugin

2009-04-17 Thread Scott Hernandez
I'm confused. What does this have to do with the resin (app-server) plugin? Doesn't the WST/Eclipse framework for web projects take care of building (and deploying) everything? It seems like if you want to use ant/maven/xBuildTool you can do that outside eclipse, or use one of the existing

[Resin-interest] JdbcAuthenticator

2009-04-17 Thread Aaron Freeman
I am playing with the JdbcAuthenticator on Resin 4.0 and for some reason I can not get it to authenticate properly. With the detail level set to finest, I am always getting: mismatched password:aaron where aaron is the username I am trying to authenticate. I have tried trimming the password

Re: [Resin-interest] JdbcAuthenticator

2009-04-17 Thread Aaron Freeman
Ah so I just stumbled on this and answered my own question: http://www.caucho.com/resin-3.0/security/digest.xtp By storing the digested form in the password field, it started working. Aaron I am playing with the JdbcAuthenticator on Resin 4.0 and for some reason I can not get it to

[Resin-interest] PasswordDigest methods

2009-04-17 Thread Aaron Freeman
Is there any reason why the getPasswordDigest( .. ) methods in PasswordDigest can't be static? Aaron ___ resin-interest mailing list resin-interest@caucho.com http://maillist.caucho.com/mailman/listinfo/resin-interest

[Resin-interest] Fwd: regexp and security-contraints?

2009-04-17 Thread Ryan Vanderwerf
I'm trying this on 3.1.8 but not having any luck: security-constraint role-name='viewer url-pattern include-pattern/*/include-pattern exclude-pattern/usr/something.jsp/exclude-pattern /url-pattern /security-constraint The above does not work. This works: security-constraint url-pattern='/*'

Re: [Resin-interest] Fwd: regexp and security-contraints?

2009-04-17 Thread Scott Ferguson
On Apr 17, 2009, at 2:55 PM, Ryan Vanderwerf wrote: I'm trying this on 3.1.8 but not having any luck: security-constraint role-name='viewer url-pattern include-pattern/*/include-pattern exclude-pattern/usr/something.jsp/exclude-pattern /url-pattern /security-constraint The above

Re: [Resin-interest] Fwd: regexp and security-contraints?

2009-04-17 Thread Aaron Freeman
Should I assume the missing apostrophe in the example that doesn't work is actually there in your test case? security-constraint role-name='viewer should be security-constraint role-name='viewer' Aaron I'm trying this on 3.1.8 but not having any luck: security-constraint