NEWBIE Problem with Tiles

2005-11-19 Thread Götz Wankelmuth
Hi, I want to use Tiles with JSF and without Struts. Is there a tiles.jar available anywhere, or have I to install struts.jar? Best regards, Götz -- Mit freundlichen Grüßen, Dr. Götz Wankelmuth - Dr. Götz Wankelmuth Weiherstr. 4a D-90530

Re: Validator framework hijacks requests! :(

2005-11-19 Thread Raghu Kanchustambham
Thanks Laurie. Just curious.. should Struts ideally not warn me against this? When I define that something needs to be validated and there is no validate method or doesnt implement/declare the correct interface or class... it should have cribbed and told me so. This reminds me of experiences

[OT] Re: Validator framework hijacks requests! :(

2005-11-19 Thread Dave Newton
Raghu Kanchustambham wrote: This reminds me of experiences programming in the primitive typeless languages! Primitive like... um... Python? Ruby? Lisp? i accidentally named my file as validations.xml (plural) and declared it as validation.xmlin struts-config. And it took me a lot of effort

How to find the version number of the struts installation?

2005-11-19 Thread Raghu Kanchustambham
If I need to find the version of jdk .. i would use something like java --version. How would I know which version of struts jar are there on my machine? Any suggestions of easily reliably finding it ? Thanks. Raghu

Re: How to find the version number of the struts installation?

2005-11-19 Thread Rahul Akolkar
On 11/19/05, Raghu Kanchustambham [EMAIL PROTECTED] wrote: If I need to find the version of jdk .. i would use something like java --version. How would I know which version of struts jar are there on my machine? Any suggestions of easily reliably finding it ? snip/ Look at the MANIFEST in

Re: Custom tags referencing struts tags

2005-11-19 Thread Rahul Akolkar
On 11/18/05, Laurie Harper [EMAIL PROTECTED] wrote: Rahul Akolkar wrote: snip/ It's a bit messy; the functionality the tags encapsulate isn't exposed in a way you can access directly. A cleaner alternative if you're using JSP 2.0 is to use a tag file, which can then just contain standard JSP

jaas authorization with struts

2005-11-19 Thread Raghu Kanchustambham
Hi, I could successfully place my authentication scheme in place using the article at http://www.jroller.com/comments/tomdz?anchor=using_jaas_with_struts_a I also could place resource level authorization in place. However the definition of resource is the traditional action mapping. However I

Re: html:rewrite with params

2005-11-19 Thread Laurie Harper
Hey, nice, I wasn't aware of that either :-) Frank W. Zammetti wrote: Sorry, my bad... I wasn't aware of the LocaleAction. Apparently my suggestion was a good one, just late :) Frank Frank W. Zammetti wrote: I just wanted to point out the 3rd question on this page:

Re: Validator framework hijacks requests! :(

2005-11-19 Thread Laurie Harper
Raghu Kanchustambham wrote: Thanks Laurie. Just curious.. should Struts ideally not warn me against this? When I define that something needs to be validated and there is no validate method or doesnt implement/declare the correct interface or class... it should have cribbed and told me so. This

Re: How would you solve this problem?

2005-11-19 Thread Laurie Harper
Preston CRAWFORD wrote: Yeah, no easy solution for this. The more I think about it the more it occurs to me that what we're attempting to do is setup a common code base for updating any N number of forms using Javascript. The plumbing for this is easy and obvious (I listed it earlier). But

Re: JSP 2.0 and taglibs (was Custom tags referencing struts tags)

2005-11-19 Thread Laurie Harper
Rahul Akolkar wrote: Yes, that was more of a post-33064 comment. Getting the the Struts tags to be 2.0-ready is something I'd be interested in too. Given the origin of those tags way before 2.0, backward compatibility issues will take precedence. I wonder if there's a better way. Yeah,

Re: [OT] obsfucating struts web application

2005-11-19 Thread Laurie Harper
su mo wrote: Hi, I have STRUTS 1.2.7 based web application which I want to protect the decompilation of class files. I would like to obsfucate the code using JShrink or other obsfucating tools. I am wondering if anyone done this before to make the Struts 1.2.7 based web application work with

Re: Action.execute() only being invoked the first time a url is requested ??!!!

2005-11-19 Thread Laurie Harper
Vishal Dalal wrote: Hi, sorry for intervening. Actually my query is realted to the Caching part... Actually i wanted to ask, do placing all these paramteres actually guarantee that the page will be cached, because i think not. Browsers aren't terribly consistent about how they interpret the

Re: jaas authorization with struts

2005-11-19 Thread Laurie Harper
Take a look at the Acegi Security project. It provides *extremely* powerful declarative security capabilities, upto and including filtering database query results to exclude things the current user shouldn't be able to see. It might be exactly what you're looking for. L. Raghu Kanchustambham

Re: NEWBIE Problem with Tiles

2005-11-19 Thread Laurie Harper
Götz Wankelmuth wrote: Hi, I want to use Tiles with JSF and without Struts. Is there a tiles.jar available anywhere, or have I to install struts.jar? Not yet (at least not released), but it's being worked on. I haven't been tracking the status of the 'standalone Tiles' work, but I believe

Re: Action.execute() only being invoked the first time a url is requested ??!!!

2005-11-19 Thread Michael Jouravlev
On 11/19/05, Laurie Harper [EMAIL PROTECTED] wrote: This clearly implies that the brower caches the page and displays that when you click back... All that implies is that the dynamic content hasn't changed. Unless the page has data on it that you know should be different on every page load.

RE: [OT]AW: AW: STRUTS PHP

2005-11-19 Thread Jim Douglas
That was so simple there's no need to post. Thanks, Jim From: Jim Douglas [EMAIL PROTECTED] Reply-To: Struts Users Mailing List user@struts.apache.org To: [EMAIL PROTECTED], user@struts.apache.org Subject: RE: [OT]AW: AW: STRUTS PHP Date: Thu, 17 Nov 2005 03:08:34 + Thanks for the

Re: JSP 2.0 and taglibs (was Custom tags referencing struts tags)

2005-11-19 Thread Craig McClanahan
On 11/19/05, Laurie Harper [EMAIL PROTECTED] wrote: Rahul Akolkar wrote: Yes, that was more of a post-33064 comment. Getting the the Struts tags to be 2.0-ready is something I'd be interested in too. Given the origin of those tags way before 2.0, backward compatibility issues will take

Re: NEWBIE Problem with Tiles

2005-11-19 Thread Craig McClanahan
On 11/19/05, Laurie Harper [EMAIL PROTECTED] wrote: Götz Wankelmuth wrote: Hi, I want to use Tiles with JSF and without Struts. Is there a tiles.jar available anywhere, or have I to install struts.jar ? Not yet (at least not released), but it's being worked on. I haven't been

Re: Action.execute() only being invoked the first time a url is requested ??!!!

2005-11-19 Thread Laurie Harper
Michael Jouravlev wrote: On 11/19/05, Laurie Harper [EMAIL PROTECTED] wrote: This clearly implies that the brower caches the page and displays that when you click back... All that implies is that the dynamic content hasn't changed. Unless the page has data on it that you know should be

Re: JSP 2.0 and taglibs (was Custom tags referencing struts tags)

2005-11-19 Thread Rahul Akolkar
Two email responses consolidated in one below: On 11/19/05, Craig McClanahan [EMAIL PROTECTED] wrote: On 11/19/05, Laurie Harper [EMAIL PROTECTED] wrote: Rahul Akolkar wrote: Yes, that was more of a post-33064 comment. Getting the the Struts tags to be 2.0-ready is something I'd be

Ich bin im Urlaub

2005-11-19 Thread bednarz
Sehr geehrte Damen und Herren, in der zeit vom 7. November 2005 bis 18. November 2005 bin ich im Urlaub. Bitte wenden Sie sich bei allen Fragen entweder direkt an [EMAIL PROTECTED] oder telefonisch an: 0511 / 93 62 28 22 Mit freundlichen Grüßen Andreas Bednarz

Re: [OT]AW: AW: STRUTS PHP

2005-11-19 Thread Rahul Akolkar
On 11/19/05, Jim Douglas [EMAIL PROTECTED] wrote: That was so simple there's no need to post. snip/ Cool, thanks for letting us know ;-) -Rahul Thanks, Jim From: Jim Douglas [EMAIL PROTECTED] Reply-To: Struts Users Mailing List user@struts.apache.org To: [EMAIL PROTECTED],

Reporting Tools

2005-11-19 Thread Rivka Shisman
Hi friends Can you recommend me a reporting tool that works nicely with Struts? Does someone use Crystal Reports? Thanks Rivka