JSF and Passing Parameter to a BeackingBean Method

2007-01-19 Thread ziya guven
Hi, How can i pass parameters from a JSF page to a Backing bean method? thanks for your help //JSF . . h:commandButton type=SUBMIT action=#{fooBean.foo['12']} value=foo/. . //BackingBean class Foo{ public String foo(String _foo){ return _foo; } }

I need you opinion (suggestion)...

2007-01-19 Thread mario.buonopane
I know this is not a question usually we must send in this mailing list but i would like the opinion of someone of you for the following: I need to access to the HttpRequest object in a POJO with no parameters input. This POJO is executed in a servlet container because is a Front End component.

[JSF] How to control scheme with commandLink/Button tags?

2007-01-19 Thread Cyril Bouteille
Hi, I've a problem using JSF/Shale on Sun AS 9.0.1 when deployed behind an SSL accelerator in production. Because secure requests get to the app server unencrypted, I am unable to use regular declarative security user-data-constraint/transport-guarantee/CONFIDENTIAL in web.xml, or it gets in

Re: [JSF] How to control scheme with commandLink/Button tags?

2007-01-19 Thread Gary VanMatre
From: Cyril Bouteille [EMAIL PROTECTED] Hi, I've a problem using JSF/Shale on Sun AS 9.0.1 when deployed behind an SSL accelerator in production. Because secure requests get to the app server unencrypted, I am unable to use regular declarative security

Re: [JSF] How to control scheme with commandLink/Button tags?

2007-01-19 Thread Craig McClanahan
On 1/19/07, Cyril Bouteille [EMAIL PROTECTED] wrote: Hi, I've a problem using JSF/Shale on Sun AS 9.0.1 when deployed behind an SSL accelerator in production. Because secure requests get to the app server unencrypted, I am unable to use regular declarative security

Re: Shale ExceptionHandling

2007-01-19 Thread Craig McClanahan
On 1/19/07, Reynolds, James [EMAIL PROTECTED] wrote: I have a question about the org.apache.shale.view.ExceptionHandler interface. Comments in the Shale Wiki indicate that Shale ...can optionally do a RequestDispatcher.forward() call to the context relative path of an error display page...

Re: [JSF] How to control scheme with commandLink/Button tags?

2007-01-19 Thread Gary VanMatre
From: Cyril Bouteille [EMAIL PROTECTED] Hi Craig, My understanding is that declarative web.xml security rules is the official way to control the protocol scheme with JSF (since I'm unable to specify it w/ JSF tags). Sprinkling redirects all over our code and pages to correct the

Re: [JSF] How to control scheme with commandLink/Button tags?

2007-01-19 Thread Craig McClanahan
On 1/19/07, Cyril Bouteille [EMAIL PROTECTED] wrote: Hi Craig, My understanding is that declarative web.xml security rules is the official way to control the protocol scheme with JSF (since I'm unable to specify it w/ JSF tags). That's true ... but you are violating the assumptions of the

Re: Shale ExceptionHandling

2007-01-19 Thread Gary VanMatre
From: Reynolds, James [EMAIL PROTECTED] I have a question about the org.apache.shale.view.ExceptionHandler interface. Comments in the Shale Wiki indicate that Shale ...can optionally do a RequestDispatcher.forward() call to the context relative path of an error display page... How do I