"ChristopheA" wrote : Is your findPart method declared in the PartSearch 
interface ?
  | 

Yes 

@Local
  | public interface PartSearch
  | {
  |   public int getPageSize();
  |   public void setPageSize(int pageSize);
  |   
  |   public String getSearchString();
  |   public void setSearchString(String searchString);
  |   public String getSearchPattern();  
  |   
  |   public void findParts();
  |   public void nextPage();
  |   public boolean isNextPageAvailable();
  | 
  |   public void destroy();
  |   
  | 
  | }
  | 


I've just played a bit with (un)commenting references to partSearch component 
in xhtml page. 
Interesting results : 

action="#{partSearch.findParts}"  -  throws Exception
actionListener="#{partSearch.findParts}" - throws Exception
value="#{partSearch.pageSize} - works 
action="#{partSearch.nextPage}"   -  throws Exception
rendered="#{partSearch.nextPageAvailable}" - works

Looks like property-invoking methods works but action-methods of type void does 
not work. 
Any ideas ? 


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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055789
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to