In the end it seams like the debugging is the problem.

In org.apache.myfaces.util.DebugUtils at line 313

 
  |                 if (childCount > 0)
  |                 {
  |                     for (Iterator it = comp.getChildren().iterator(); 
it.hasNext(); )
  |                     {
  |                         UIComponent child = (UIComponent)it.next();
  |                         printComponent(child, stream, indent + 1, true, 
null);
  |                     }
  |                 }
  | 

The printComponent method is called after Seam has called clearThreadlocals in 
org.jboss.seam.contexts.Lifecycle.java which results in the error above.

The way to fix this is to disable logging for DebugUtils through your loggin 
system as this method is only called if TRACE is enabled for the class.

If anyone wants some help with ADF, Seam and Facelets just put a message here.

Regards
Tobias

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3921432


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to