Currently,

If I have a method:

@Begin
  | public String startConversation() {
  |     return null;
  | }

When this method is called a conversation is not started. If I change the 
method to return non-null:

@Begin
  | public String startConversation() {
  |     return "thispage";
  | }

Then it works.

This poses a problem for A4J where I want to return non-null so that only 
certain portions of the view are re-rendered.

It would be great if it were possible to start a new conversation in this way - 
Would be more ajax4java friendly.

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

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

Reply via email to