1 Reply Latest reply on Nov 20, 2010 7:03 PM by hurzeler

    Target Unreachable, identifier 'tokenAction' resolved to null

    quintenjiang.kinsonjob.yahoo.com
      I cerate Bean:

      @Name("tokenAction")
      public class TokenAction {

         private List tokens;
        
         @Factory("tokens")
         public void loadToken() {
         }

         public Object search(Object input) {
           
         }

      }

      It work well when we display toke list.

      But I try to integrate it with Fiji endpoint service. like:

                     <fiji:endpoint name="endpoint"
                                      binary="true"
                                      service="#{tokenAction.search}" />


      It report error:
      javax.el.PropertyNotFoundException: /token/endpoint.xhtml @21,67 service="#{tokenAction.search}": Target Unreachable, identifier 'tokenAction' resolved to null

      May I know how to define method "search"?

      It work fine under normal JSF bean without Seam.


      Thanks