[jboss-user] [JBoss Seam] - Re: ajax4jsf and outjecting to conversations

2007-02-20 Thread whuang
can you post the UI code for BEFORE (working) and AFTER (not working)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4019435#4019435

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4019435
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Can't get the Seam Exception Handling feature to work.

2007-01-22 Thread whuang
Does seam exception handling only handle in invoke application phase? or is 
suppose to handle exceptions in ALL phases?

BTW, my environment is MyFaces 1.1.3, Facelets 1.1.11, Seam 1.1.0, A4J 1.0.2, 
weblogic..   Everythings else works great including seam(mainly use for wizard 
conversation)

Thanks,
Bill

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4004825#4004825

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4004825
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Can't get the Seam Exception Handling feature to work.

2007-01-22 Thread whuang
I am seeing this on my log


2007-01-22 10:26:06,636 INFO  org.jboss.seam.core.Exceptions - reading 
exceptions.xml

2007-01-22 10:26:06,667 ERROR org.jboss.seam.core.Exceptions - redirecting to 
debug page


Looks like I am in the right path, but I don't remember requiring to create a 
debug page and how come it does not redirect to my error page..

Thanks,
Bill

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4004851#4004851

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4004851
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Can't get the Seam Exception Handling feature to work.

2007-01-20 Thread whuang
I have seen it on during the Apply Request Values or Update Model life-cycle 
when I purposely map a invalid method binding...  But I've also experience it 
during other life-cycles.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4004313#4004313

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4004313
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Can't get the Seam Exception Handling feature to work.

2007-01-19 Thread whuang
I try to setup Seam to handle all JSF exceptions and redirect to a generic 
error page, but still when exceptions occur, it is not redirecting in to my 
generic error page.  

Based on the Seam doc, I config my exceptions.xml in WEB-INF
!DOCTYPE exceptions PUBLIC
  |   -//JBoss/Seam Exceptions Configuration DTD 1.1//EN
  |   http://jboss.com/products/seam/exceptions-1.1.dtd;
  | 
  | exceptions
  |exception
  |   redirect view-id=/error/error.xhtmlUnexpected failure/redirect
  |   end-conversation/
  |/exception
  |
  | /exceptions
and on web.xml
!-- === --
  | !-- Seam   
 --
  | !-- 
=== --
  | listener
  | listener-classorg.jboss.seam.servlet.SeamListener/listener-class
  | /listener
  | 
  | !-- Propagate conversations across redirects --
  | filter
  | filter-nameSeam Redirect Filter/filter-name
  | 
filter-classorg.jboss.seam.servlet.SeamRedirectFilter/filter-class
  | /filter
  | filter-mapping
  | filter-nameSeam Redirect Filter/filter-name
  | servlet-nameFaces Servlet/servlet-name
  | /filter-mapping
  | 
  | !-- Needed to ensure safe tx cleanup when using Seam-managed 
sessions/persistence contexts --
  | filter
  | filter-nameSeam Exception Filter/filter-name
  | 
filter-classorg.jboss.seam.servlet.SeamExceptionFilter/filter-class
  | /filter
  | filter-mapping
  | filter-nameSeam Exception Filter/filter-name
  | url-pattern/*/url-pattern
  | /filter-mapping 
  | 
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4004003#4004003

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4004003
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Argh! Attribute access

2006-12-29 Thread whuang
I am getting the same error with similar xhtml code, but my error is coming 
from h:outputText #{bean.firstName}/ which is even more crazy...  No one 
seen this?  Texan, if you found the solution, please post it up.  Thanks

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3996886#3996886

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3996886
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Argh! Attribute access

2006-12-29 Thread whuang
looks like I found the problem.  the data list has inconsistent data types.  
therefore the unable to call methods.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3996915#3996915

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3996915
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - JSF State_Saving_Method must be client side

2006-10-13 Thread whuang
Base on the Seam documentation, it saids that the STATE_SAVING_METHOD must use 
client-side state saving, if uses Myfaces Implementation.  Can someone tell me 
why?  Is it some bug in MyFaces?

Thanks,
Bill

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3978249#3978249

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3978249
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: JSF State_Saving_Method must be client side

2006-10-13 Thread whuang
thanks

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3978267#3978267

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3978267
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: SeamPhaseListener question for Seam newbie

2006-10-12 Thread whuang
No taker on this?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3977918#3977918

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3977918
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - SeamPhaseListener question for Seam newbie

2006-10-10 Thread whuang
On the SeamPhaseListener class, at the beginning for beforePhase() method, it 
calls Lifecycle.setPhaseId(event.getPhaseId()). Then at the end of the 
afterPhase() method, it calls Lifecycle.setPhaseId(null);

What if the call Lifecycle.setPhaseId(null) is omitted or removed from the 
afterPhase() method, what is the side-affect of this?

I am asking this because I recently integrated Seam into my application which 
already has some Apache Shale Remoting feature, the Shale remoting features is 
broken after the Seam integration.  I tested a temporary patch by extending the 
SeamPhaseListener and override the afterPhase() method like this.

@Override
  | public void afterPhase(PhaseEvent p_event) {
  | super.afterPhase(p_event);
  | //Patch for Shale Remoting error
  | Lifecycle.setPhaseId(p_event.getPhaseId());
  | }
  | 

Thanks,
Bill

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3977417#3977417

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3977417
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user