The moose likes Other Application Frameworks and the fly likes FrontMan - Getting GET Parameters Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Practical Unit Testing with TestNG and Mockito this week in the Testing forum!
JavaRanch » Java Forums » Application Frameworks » Other Application Frameworks
Reply Bookmark "FrontMan - Getting GET Parameters" Watch "FrontMan - Getting GET Parameters" New topic
Author

FrontMan - Getting GET Parameters

Michael Lynch
Greenhorn

Joined: Dec 21, 2011
Posts: 5
I'm trying to simply retrieve a GET parameter in a URL, and I can't seem to figure out how it's done using FrontMan.

I've got a link on a page to http://localhost:8888/command/ViewPool?id=98f97c30-398b-11e1-b86c-0800200c9a66

In an attempt to retrieve the value of id, I make the following call:



var is always null, regardless of which ScopedContext enum value I use, so I don't think that's the problem. I would assume that GET request parameters should be in the REQUEST ScopedContext. In any case, what am I doing wrong? Why can't I get the value?

Thanks!
Bear Bibeault
Author and opinionated walrus
Marshal

Joined: Jan 10, 2002
Posts: 50652

Parameters are not scoped variables. You get parameters from the request instance with getParameter() just like anywhere else. Remember, the whole idea of FrontMan is to help you do the tough stuff more easily -- not to replace the standard ways of doing things with just another proprietary way of doing it.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
 
subject: FrontMan - Getting GET Parameters
 
Threads others viewed
dependent select boxes with ajax .
Inexplicable JavaScript behaviour
Page section does not update after call of a4j:support in IE 9
My AJAX Chained Selector Function (Enjoy!)
Front Man 1.5.0
IntelliJ Java IDE