Hello!

I'm trying to use Seam's @RequestParameter-Feature it doesn't seem to work.

I have the following EJB (shortened):

  | @Stateless
  | @Name("test")
  | @Scope(ScopeType.STATELESS)
  | public class TestBean implements Test {
  | 
  |   @RequestParameter
  |   private String parameter;
  | 
  |  public String getParameter() {
  | 
  |      return parameter;
  |  }
  | }


The JSF-Page has: 

<h:outputText value="#{test.parameter}"/>
  | 

So if I call the jsf-page with ?parameter=Hello I would expect the page to show 
"Hello". However, this does not work. The parameter is always null.


Am I missing something?

Regards

Felix Hoßfeld

P.S.: My Setup is JBoss 4.0.4GA EJB3 with Seam 1.0 CR3.anonymous wrote : 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3949317#3949317

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3949317


_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to