2 Replies Latest reply on Jul 29, 2008 1:56 AM by eskape

    Accessing Request parameters from jsf portlet

    web-e

      Hello there!
      I'm trying to access some parameters on the request URI

      for instance:

      http://server:8080/portal/default/MyPage/MyPortletWindow;jsessionid={hugestring}?foo=bar

      So I would like to access the foo property

      Using FacesContext.getInstace().getExternalContext().getRequest()

      Is not working, It's not even listed on the attributes of the portlet request.

      I tried to add this at my faces-config as an excluded-property

      <bridge:excluded-attributes>
       <bridge:excluded-attribute>foo</bridge:excluded-attribute>
       </bridge:excluded-attributes>
      


      I guess I misunderstood the concept.

      Well, anyway, how can I access a parameter on the uri from my managed bean?

      PS:I'm using B2 version of the bridge and portal 2.6.4

      Regards