This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes JSF and the fly likes Need parameters in URL !!! Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSF
Reply Bookmark "Need parameters in URL !!!" Watch "Need parameters in URL !!!" New topic
Author

Need parameters in URL !!!

vish gupt
Greenhorn

Joined: Dec 16, 2007
Posts: 2
Requirement �
In the project there is a continuously growing database with huge data and UI has some fine filter to capture meaningful data. There are many users creating different filters on the fly and sharing among themselves.
If I have all the parameters in the URL then this requirement is met easily.

Note �
Above requirement can be fulfilled easily using GET method.

Problem �
I have planned to develop this project using JSF. But it seems I need some expert advise on this issue as JSF supports only POST method. Any idea how I can solve this problem!


Thanks for your attention,
Vishal
Mark Spritzler
ranger
Sheriff

Joined: Feb 05, 2001
Posts: 17234
    
    1

"vishgupt",
Welcome to the JavaRanch.

We're a friendly group, but we do require members to have valid display names.

Display names must be two words: your first name, a space, then your last name. Fictitious names are not allowed.

Please edit your profile and correct your display name since accounts with invalid display names get deleted.


Perfect World Programming, LLC - Two Laptop Bag - Tube Organizer
How to Ask Questions the Smart Way FAQ
Mark Spritzler
ranger
Sheriff

Joined: Feb 05, 2001
Posts: 17234
    
    1

You can place params on the URL real easily.

xmlns:f="http://java.sun.com/jsf/core"

<f:param name="paramName" value="someValue">

Mark
vish gupt
Greenhorn

Joined: Dec 16, 2007
Posts: 2
I got the solution of my problem here - http://balusc.blogspot.com/2007/03/post-redirect-get-pattern.html

Thanks to BalusC
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Need parameters in URL !!!
 
Similar Threads
Calling backing bean from a struts application
integarting JSF with hibernate and spring
jsf and servlets
Editable Grid
hiding exceeded data in h:dataTable columns