I should also add that I get the same exception if I replace this:

  | public List<SelectItem> getCustomerNames() {
  |             if (customerNames == null) {
  |                     customerNames = initNames();
  |             }
  |             
  |             return customerNames;
  |     }
  | 

with this:


  | public List<SelectItem> getCustomerNames() {
  |             customerNames.add(new SelectItem("1", "Red Hat"));
  |             customerNames.add(new SelectItem("2", "Apple"));
  |             return customerNames;
  |     }
  | 

What could my issue be?

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

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

Reply via email to