Should have included this earlier.  Here's what my code looks like.  Again, 
this worked with jboss-seam-1.0.0.GA.

Javascript in the web page
Seam.Component.getInstance("showFilterAction").getFilterList(reportID, 
displayCorrectFiltersCallback);

Local Interface
@Local
  | public interface ShowFilterLocal {
  |     @WebRemote
  |     public String getFilterList(String id);
  | }

Action class

  | @Stateless
  | @Name("showFilterAction")
  | @Interceptors(SeamInterceptor.class)
  | public class ShowFilterAction implements ShowFilterLocal {
  | 
  |     public String getFilterList(String id)
  |     {
  |             StringBuffer out = new StringBuffer();
  |             // do some stuff
  |             return out.toString();
  |     }
  | }
  | 
  | 

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

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

Reply via email to