[jboss-svn-commits] JBL Code SVN: r26798 - in labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src: test/java/org/jboss/labs/clearspace/plugin/nfm and 2 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Jun 1 09:51:13 EDT 2009


Author: lkrzyzanek
Date: 2009-06-01 09:51:13 -0400 (Mon, 01 Jun 2009)
New Revision: 26798

Added:
   labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest1.txt
   labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest1result.txt
Modified:
   labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/main/java/org/jboss/labs/clearspace/plugin/nfm/converter/BBCode2CSHTMLParseEventHandler.java
   labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/java/org/jboss/labs/clearspace/plugin/nfm/DbNukesForumsManagerTest.java
   labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/java/org/jboss/labs/clearspace/plugin/nfm/converter/BBCodeConverterTest.java
   labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest2result.txt
Log:
Added html escaping to whole text. changed line breaking to <br>.
Updated tests

Modified: labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/main/java/org/jboss/labs/clearspace/plugin/nfm/converter/BBCode2CSHTMLParseEventHandler.java
===================================================================
--- labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/main/java/org/jboss/labs/clearspace/plugin/nfm/converter/BBCode2CSHTMLParseEventHandler.java	2009-06-01 13:44:24 UTC (rev 26797)
+++ labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/main/java/org/jboss/labs/clearspace/plugin/nfm/converter/BBCode2CSHTMLParseEventHandler.java	2009-06-01 13:51:13 UTC (rev 26798)
@@ -53,10 +53,6 @@
     renderer.writeText(s);
   }
 
-  private void write(char[] chars, int offset, int length) {
-    renderer.writeChars(chars, offset, length);
-  }
-
   public void handle(ParseEvent event) {
     if (event instanceof BBCodeParser.OpenEvent) {
       BBCodeParser.OpenEvent openEvent = (BBCodeParser.OpenEvent) event;
@@ -179,16 +175,10 @@
         TextEvent textEvent = (TextEvent) event;
         String text = new String(textEvent.chars(), textEvent.offset(),
             textEvent.length());
-        if (isInPre > 0) {
-          text = StringEscapeUtils.escapeHtml(text);
-        }
+        text = StringEscapeUtils.escapeHtml(text);
         write(text);
       } else {
-        if (isInPre > 0) {
-          write("<br/>");
-        } else {
-          write("</p><p>");
-        }
+        write("<br/>");
       }
     }
   };

Modified: labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/java/org/jboss/labs/clearspace/plugin/nfm/DbNukesForumsManagerTest.java
===================================================================
--- labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/java/org/jboss/labs/clearspace/plugin/nfm/DbNukesForumsManagerTest.java	2009-06-01 13:44:24 UTC (rev 26797)
+++ labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/java/org/jboss/labs/clearspace/plugin/nfm/DbNukesForumsManagerTest.java	2009-06-01 13:51:13 UTC (rev 26798)
@@ -26,7 +26,6 @@
 import java.util.HashMap;
 import java.util.Map;
 
-import org.jboss.labs.clearspace.plugin.nfm.DbNukesForumsManager;
 import org.jboss.labs.clearspace.plugin.nfm.dao.NukesForumsMappingDAO;
 import org.junit.Before;
 import org.junit.Test;

Modified: labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/java/org/jboss/labs/clearspace/plugin/nfm/converter/BBCodeConverterTest.java
===================================================================
--- labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/java/org/jboss/labs/clearspace/plugin/nfm/converter/BBCodeConverterTest.java	2009-06-01 13:44:24 UTC (rev 26797)
+++ labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/java/org/jboss/labs/clearspace/plugin/nfm/converter/BBCodeConverterTest.java	2009-06-01 13:51:13 UTC (rev 26798)
@@ -36,9 +36,17 @@
     assertEquals("<p><pre __jive_macro_name=\"quote\" class=\"jive_text_macro jive_macro_quote\">quote</pre></p>", converter.convert("[quote]quote[/quote]"));
     assertEquals("<p><pre __default_attr=\"java\" __jive_macro_name=\"code\" class=\"jive_text_macro jive_macro_code\">code</pre></p>", converter.convert("[code]code[/code]"));
     assertEquals("<p><a href=\"www.jboss.org\">www.jboss.org</a></p>", converter.convert("[url]www.jboss.org[/url]"));
-    String message1 = getContent("/bbcodetest2.txt");
-    String message1Result = getContent("/bbcodetest2result.txt");
+    String message1 = getContent("/bbcodetest1.txt");
+    //IOUtils.write(converter.convert(message1), new FileOutputStream("/tmp/bbcodetest1result.txt"));
+    String message1Result = getContent("/bbcodetest1result.txt");
     assertEquals(message1Result, converter.convert(message1));
+
+    String message2 = getContent("/bbcodetest2.txt");
+    //IOUtils.write(converter.convert(message2), new FileOutputStream("/tmp/bbcodetest2result.txt"));
+    String message2Result = getContent("/bbcodetest2result.txt");
+    
+    assertEquals(message2Result, converter.convert(message2));
+
   }
   
   private String getContent(String path) throws IOException {

Added: labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest1.txt
===================================================================
--- labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest1.txt	                        (rev 0)
+++ labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest1.txt	2009-06-01 13:51:13 UTC (rev 26798)
@@ -0,0 +1,577 @@
+We have a few tests for overriding things like logging, the xml parser impl that rely on this and are working. The general problem with overriding is whether or not the api was designed for it. For example, you cannot override the javax.xml.* classes, only the implementation of the interfaces.
+
+Do the jsf classes in question have a similar factory type of pattern where the implementation is loaded in the context of the war class loader, or are these classes that are bound to some tomcat container class that would require the container to be recreated in the war class loader?
+
+If I run the org.jboss.test.web.test.JSFIntegrationUnitTestCase it looks to be passing, so am I missing some recent change that altered this?
+[code]
+2244 [main] DEBUG org.jboss.test.JBossTestCase  - ==== setUp org.jboss.test.JBossTestCase ====
+2245 [main] DEBUG org.jboss.test.JBossTestCase  - JBossTestServices.setUp()
+2276 [main] DEBUG org.jboss.test.JBossTestCase  - initialContext.getEnvironment()={jnp.parsedName=, java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.provider.url=localhost:1099, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
+2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.beancount: null
+2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.iterationcount: null
+2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.threadcount: null
+2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.nodeploy: null
+2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.jndiurl: localhost:1099
+2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.jndifactory: org.jnp.interfaces.NamingContextFactory
+2276 [main] DEBUG org.jboss.test.JBossTestCase  - jbosstest-jsf.war is not a valid URL, no protocol: jbosstest-jsf.war
+2276 [main] DEBUG org.jboss.test.JBossTestCase  - Testing file: output/lib/jbosstest-jsf.war
+2276 [main] DEBUG org.jboss.test.JBossTestCase  - /Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war is a valid file
+2277 [main] DEBUG org.jboss.test.JBossTestCase  - Deploying jbosstest-jsf.war, url=file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war
+2278 [main] DEBUG org.jnp.interfaces.TimedSocketFactory  - createSocket, hostAddr: localhost/127.0.0.1, port: 1099, localAddr: null, localPort: 0, timeout: 0
+2652 [main] DEBUG org.jboss.test.JBossTestCase  - Invoking jboss.system:service=MainDeployer method=deploy
+2652 [main] DEBUG org.jboss.test.JBossTestCase  - args=[file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war]
+4081 [main] DEBUG org.jboss.test.JBossTestCase  - jbosstest-jsf-facelets.war is not a valid URL, no protocol: jbosstest-jsf-facelets.war
+4081 [main] DEBUG org.jboss.test.JBossTestCase  - Testing file: output/lib/jbosstest-jsf-facelets.war
+4082 [main] DEBUG org.jboss.test.JBossTestCase  - /Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war is a valid file
+4082 [main] DEBUG org.jboss.test.JBossTestCase  - Deploying jbosstest-jsf-facelets.war, url=file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war
+4082 [main] DEBUG org.jboss.test.JBossTestCase  - Invoking jboss.system:service=MainDeployer method=deploy
+4082 [main] DEBUG org.jboss.test.JBossTestCase  - args=[file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war]
+4467 [main] DEBUG org.jboss.test.web.test.JSFIntegrationUnitTestCase  - ==== Starting testJSFIntegrated ====
+4468 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Open connection to localhost:8080
+4469 [main] DEBUG httpclient.wire.header  - >> "GET /jbosstest-jsf/index.jsf HTTP/1.1[\r][\n]"
+4469 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header
+4472 [main] DEBUG httpclient.wire.header  - >> "User-Agent: Jakarta Commons-HttpClient/3.0[\r][\n]"
+4472 [main] DEBUG httpclient.wire.header  - >> "Host: localhost:8080[\r][\n]"
+4472 [main] DEBUG httpclient.wire.header  - >> "[\r][\n]"
+6191 [main] DEBUG httpclient.wire.header  - << "HTTP/1.1 200 OK[\r][\n]"
+6193 [main] DEBUG httpclient.wire.header  - << "Server: Apache-Coyote/1.1[\r][\n]"
+6193 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1[\r][\n]"
+6193 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: JSF/1.2[\r][\n]"
+6193 [main] DEBUG httpclient.wire.header  - << "Set-Cookie: JSESSIONID=92AE9D1FF4B232B544CC297833DF1E3B; Path=/jbosstest-jsf[\r][\n]"
+6193 [main] DEBUG httpclient.wire.header  - << "Content-Type: text/html;charset=UTF-8[\r][\n]"
+6193 [main] DEBUG httpclient.wire.header  - << "Content-Language: en-US[\r][\n]"
+6193 [main] DEBUG httpclient.wire.header  - << "Transfer-Encoding: chunked[\r][\n]"
+6194 [main] DEBUG httpclient.wire.header  - << "Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]"
+6194 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Cookie accepted: "$Version=0; JSESSIONID=92AE9D1FF4B232B544CC297833DF1E3B; $Path=/jbosstest-jsf"
+6195 [main] DEBUG httpclient.wire.content  - << "7"
+6195 [main] DEBUG httpclient.wire.content  - << "b"
+6195 [main] DEBUG httpclient.wire.content  - << "f"
+6195 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6195 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6195 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6195 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6195 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6195 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6195 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6195 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6195 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6196 [main] DEBUG httpclient.wire.content  - << "<html>[\n]"
+6196 [main] DEBUG httpclient.wire.content  - << "    <head>[\n]"
+6196 [main] DEBUG httpclient.wire.content  - << "        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">[\n]"
+6196 [main] DEBUG httpclient.wire.content  - << "        <title>JBoss JSF Integration Test</title>[\n]"
+6196 [main] DEBUG httpclient.wire.content  - << "    </head>[\n]"
+6196 [main] DEBUG httpclient.wire.content  - << "    <body>[\n]"
+6196 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6196 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6196 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>InjectionBean: hit this page twice to complete the test.</h1></font>[\n]"
+6196 [main] DEBUG httpclient.wire.content  - << "         <h3>@PostConstruct was called.</h3>[\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "         <h3></h3>[\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "         <h3>Datasource was injected.</h3>[\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "          [\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Classic test of JSTL 1.2/JSF 1.2 with deferred expressions:</h1></font>[\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "             <h3>number one</h3>[\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "             <h3>number two</h3>[\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "             <h3>number three</h3>[\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>ServletContext Minor Version Test (should return 5)</h1></font>[\n]"
+6197 [main] DEBUG httpclient.wire.content  - << "         <h3>ServletContext.getMinorVersion() = 5</h3>[\n]"
+6198 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6198 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Enum Test</h1></font>[\n]"
+6198 [main] DEBUG httpclient.wire.content  - << "         <h3>JBoss Color selection is PURPLE</h3>[\n]"
+6198 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Test using JDK class as a managed bean</h1></font>     [\n]"
+6198 [main] DEBUG httpclient.wire.content  - << "         <h3>JButto"
+6198 [main] DEBUG httpclient.wire.content  - << "n value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.5,border=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,flags=288,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]</h3>[\n]"
+6198 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6198 [main] DEBUG httpclient.wire.content  - << " [\n]"
+6199 [main] DEBUG httpclient.wire.content  - << "       <font color="red"><h1>Logging Test</h1></font>[\n]"
+6199 [main] DEBUG httpclient.wire.content  - << "       <h3>[\n]"
+6199 [main] DEBUG httpclient.wire.content  - << "       ERROR - Logged SEVERE message in APPLICATION_LOGGER<br/>[\n]"
+6199 [main] DEBUG httpclient.wire.content  - << "WARN - Logged WARNING message in CONTEXT_LOGGER<br/>[\n]"
+6199 [main] DEBUG httpclient.wire.content  - << "INFO - Logged INFO message in CONFIG_LOGGER<br/>[\n]"
+6199 [main] DEBUG httpclient.wire.content  - << "DEBUG - Logged FINE message in LIFECYCLE_LOGGER<br/>[\n]"
+6199 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINER message in TIMING_LOGGER<br/>[\n]"
+6199 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in TIMING_LOGGER<br/>[\n]"
+6199 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger<br/>[\n]"
+6199 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6200 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6200 [main] DEBUG httpclient.wire.content  - << "       </h3>[\n]"
+6200 [main] DEBUG httpclient.wire.content  - << "    </body>[\n]"
+6200 [main] DEBUG httpclient.wire.content  - << "</html>[\n]"
+6200 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6200 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6200 [main] DEBUG httpclient.wire.content  - << "0"
+6200 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6200 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6200 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6201 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6201 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Resorting to protocol version default close connection policy
+6201 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Should NOT close connection, using HTTP/1.1
+6201 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.
+6202 [main] DEBUG httpclient.wire.header  - >> "GET /jbosstest-jsf/index.jsf HTTP/1.1[\r][\n]"
+6202 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header
+6203 [main] DEBUG httpclient.wire.header  - >> "User-Agent: Jakarta Commons-HttpClient/3.0[\r][\n]"
+6203 [main] DEBUG httpclient.wire.header  - >> "Host: localhost:8080[\r][\n]"
+6203 [main] DEBUG httpclient.wire.header  - >> "Cookie: $Version=0; JSESSIONID=92AE9D1FF4B232B544CC297833DF1E3B; $Path=/jbosstest-jsf[\r][\n]"
+6204 [main] DEBUG httpclient.wire.header  - >> "[\r][\n]"
+6217 [main] DEBUG httpclient.wire.header  - << "HTTP/1.1 200 OK[\r][\n]"
+6217 [main] DEBUG httpclient.wire.header  - << "Server: Apache-Coyote/1.1[\r][\n]"
+6217 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1[\r][\n]"
+6217 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: JSF/1.2[\r][\n]"
+6217 [main] DEBUG httpclient.wire.header  - << "Content-Type: text/html;charset=UTF-8[\r][\n]"
+6217 [main] DEBUG httpclient.wire.header  - << "Content-Language: en-US[\r][\n]"
+6217 [main] DEBUG httpclient.wire.header  - << "Transfer-Encoding: chunked[\r][\n]"
+6218 [main] DEBUG httpclient.wire.header  - << "Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]"
+6218 [main] WARN org.apache.commons.httpclient.HttpMethodBase  - Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.
+6218 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Buffering response body
+6220 [main] DEBUG httpclient.wire.content  - << "7"
+6220 [main] DEBUG httpclient.wire.content  - << "d"
+6220 [main] DEBUG httpclient.wire.content  - << "6"
+6220 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6220 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6220 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6220 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6220 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6220 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6220 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6220 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6220 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6220 [main] DEBUG httpclient.wire.content  - << "<html>[\n]"
+6220 [main] DEBUG httpclient.wire.content  - << "    <head>[\n]"
+6220 [main] DEBUG httpclient.wire.content  - << "        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">[\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "        <title>JBoss JSF Integration Test</title>[\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "    </head>[\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "    <body>[\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>InjectionBean: hit this page twice to complete the test.</h1></font>[\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "         <h3>@PostConstruct was called.</h3>[\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "         <h3>@PreDestroy was called.</h3>[\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "         <h3>Datasource was injected.</h3>[\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "          [\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Classic test of JSTL 1.2/JSF 1.2 with deferred expressions:</h1></font>[\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "             <h3>number one</h3>[\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6221 [main] DEBUG httpclient.wire.content  - << "             <h3>number two</h3>[\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "             <h3>number three</h3>[\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>ServletContext Minor Version Test (should return 5)</h1></font>[\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "         <h3>ServletContext.getMinorVersion() = 5</h3>[\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Enum Test</h1></font>[\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "         <h3>JBoss Color selection is PURPLE</h3>[\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Test using JDK class as a managed bean</h1></font>     [\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "         <h3>JButton value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.5,border=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,flags=288,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]</h3>[\n]"
+6222 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6223 [main] DEBUG httpclient.wire.content  - << " [\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "       <font color="red"><h1>Logging Test</h1></font>[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "       <h3>[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "       ERROR - Logged SEVERE message in APPLICATION_LOGGER<br/>[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "WARN - Logged WARNING message in CONTEXT_LOGGER<br/>[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "INFO - Logged INFO message in CONFIG_LOGGER<br/>[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "DEBUG - Logged FINE message in LIFECYCLE_LOGGER<br/>[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINER message in TIMING_LOGGER<br/>[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in TIMING_LOGGER<br/>[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger<br/>[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "       </h3>[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "    </body>[\n]"
+6223 [main] DEBUG httpclient.wire.content  - << "</html>[\n]"
+6224 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6224 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6224 [main] DEBUG httpclient.wire.content  - << "0"
+6224 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6224 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6224 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6224 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6224 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Resorting to protocol version default close connection policy
+6224 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Should NOT close connection, using HTTP/1.1
+6224 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.
+6225 [main] DEBUG org.jboss.test.web.test.JSFIntegrationUnitTestCase  - ==== Starting testNoFaceletsLogging ====
+6225 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Open connection to localhost:8080
+6225 [main] DEBUG httpclient.wire.header  - >> "GET /jbosstest-jsf/index.jsf HTTP/1.1[\r][\n]"
+6225 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header
+6226 [main] DEBUG httpclient.wire.header  - >> "User-Agent: Jakarta Commons-HttpClient/3.0[\r][\n]"
+6226 [main] DEBUG httpclient.wire.header  - >> "Host: localhost:8080[\r][\n]"
+6226 [main] DEBUG httpclient.wire.header  - >> "[\r][\n]"
+6236 [main] DEBUG httpclient.wire.header  - << "HTTP/1.1 200 OK[\r][\n]"
+6237 [main] DEBUG httpclient.wire.header  - << "Server: Apache-Coyote/1.1[\r][\n]"
+6237 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1[\r][\n]"
+6237 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: JSF/1.2[\r][\n]"
+6237 [main] DEBUG httpclient.wire.header  - << "Set-Cookie: JSESSIONID=5E44820CD893F6977489AF91D3B207DC; Path=/jbosstest-jsf[\r][\n]"
+6237 [main] DEBUG httpclient.wire.header  - << "Content-Type: text/html;charset=UTF-8[\r][\n]"
+6237 [main] DEBUG httpclient.wire.header  - << "Content-Language: en-US[\r][\n]"
+6237 [main] DEBUG httpclient.wire.header  - << "Transfer-Encoding: chunked[\r][\n]"
+6238 [main] DEBUG httpclient.wire.header  - << "Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]"
+6238 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Cookie accepted: "$Version=0; JSESSIONID=5E44820CD893F6977489AF91D3B207DC; $Path=/jbosstest-jsf"
+6239 [main] DEBUG httpclient.wire.content  - << "7"
+6239 [main] DEBUG httpclient.wire.content  - << "b"
+6239 [main] DEBUG httpclient.wire.content  - << "f"
+6239 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6239 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6239 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6240 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6240 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6240 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "<html>[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "    <head>[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "        <title>JBoss JSF Integration Test</title>[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "    </head>[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "    <body>[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>InjectionBean: hit this page twice to complete the test.</h1></font>[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "         <h3>@PostConstruct was called.</h3>[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "         <h3></h3>[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "         <h3>Datasource was injected.</h3>[\n]"
+6241 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6242 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6242 [main] DEBUG httpclient.wire.content  - << "          [\n]"
+6242 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Classic test of JSTL 1.2/JSF 1.2 with deferred expressions:</h1></font>[\n]"
+6242 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6242 [main] DEBUG httpclient.wire.content  - << "             <h3>number one</h3>[\n]"
+6242 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6242 [main] DEBUG httpclient.wire.content  - << "             <h3>number two</h3>[\n]"
+6242 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "             <h3>number three</h3>[\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>ServletContext Minor Version Test (should return 5)</h1></font>[\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "         <h3>ServletContext.getMinorVersion() = 5</h3>[\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Enum Test</h1></font>[\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "         <h3>JBoss Color selection is PURPLE</h3>[\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Test using JDK class as a managed bean</h1></font>     [\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "         <h3>JButto"
+6243 [main] DEBUG httpclient.wire.content  - << "n value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.5,border=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,flags=288,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]</h3>[\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6243 [main] DEBUG httpclient.wire.content  - << " [\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "       <font color="red"><h1>Logging Test</h1></font>[\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "       <h3>[\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "       ERROR - Logged SEVERE message in APPLICATION_LOGGER<br/>[\n]"
+6243 [main] DEBUG httpclient.wire.content  - << "WARN - Logged WARNING message in CONTEXT_LOGGER<br/>[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "INFO - Logged INFO message in CONFIG_LOGGER<br/>[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "DEBUG - Logged FINE message in LIFECYCLE_LOGGER<br/>[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINER message in TIMING_LOGGER<br/>[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in TIMING_LOGGER<br/>[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger<br/>[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "       </h3>[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "    </body>[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "</html>[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6244 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6244 [main] DEBUG httpclient.wire.content  - << "0"
+6244 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6245 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6245 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6245 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6245 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Resorting to protocol version default close connection policy
+6245 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Should NOT close connection, using HTTP/1.1
+6245 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.
+6247 [main] DEBUG httpclient.wire.header  - >> "GET /jbosstest-jsf/index.jsf HTTP/1.1[\r][\n]"
+6247 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header
+6248 [main] DEBUG httpclient.wire.header  - >> "User-Agent: Jakarta Commons-HttpClient/3.0[\r][\n]"
+6248 [main] DEBUG httpclient.wire.header  - >> "Host: localhost:8080[\r][\n]"
+6248 [main] DEBUG httpclient.wire.header  - >> "Cookie: $Version=0; JSESSIONID=5E44820CD893F6977489AF91D3B207DC; $Path=/jbosstest-jsf[\r][\n]"
+6248 [main] DEBUG httpclient.wire.header  - >> "[\r][\n]"
+6259 [main] DEBUG httpclient.wire.header  - << "HTTP/1.1 200 OK[\r][\n]"
+6259 [main] DEBUG httpclient.wire.header  - << "Server: Apache-Coyote/1.1[\r][\n]"
+6259 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1[\r][\n]"
+6259 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: JSF/1.2[\r][\n]"
+6259 [main] DEBUG httpclient.wire.header  - << "Content-Type: text/html;charset=UTF-8[\r][\n]"
+6259 [main] DEBUG httpclient.wire.header  - << "Content-Language: en-US[\r][\n]"
+6259 [main] DEBUG httpclient.wire.header  - << "Transfer-Encoding: chunked[\r][\n]"
+6259 [main] DEBUG httpclient.wire.header  - << "Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]"
+6259 [main] WARN org.apache.commons.httpclient.HttpMethodBase  - Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.
+6260 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Buffering response body
+6260 [main] DEBUG httpclient.wire.content  - << "7"
+6260 [main] DEBUG httpclient.wire.content  - << "d"
+6260 [main] DEBUG httpclient.wire.content  - << "6"
+6260 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6260 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6260 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6260 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "<html>[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "    <head>[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "        <title>JBoss JSF Integration Test</title>[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "    </head>[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "    <body>[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>InjectionBean: hit this page twice to complete the test.</h1></font>[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "         <h3>@PostConstruct was called.</h3>[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "         <h3>@PreDestroy was called.</h3>[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "         <h3>Datasource was injected.</h3>[\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6261 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6262 [main] DEBUG httpclient.wire.content  - << "          [\n]"
+6262 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Classic test of JSTL 1.2/JSF 1.2 with deferred expressions:</h1></font>[\n]"
+6262 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6262 [main] DEBUG httpclient.wire.content  - << "             <h3>number one</h3>[\n]"
+6262 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6262 [main] DEBUG httpclient.wire.content  - << "             <h3>number two</h3>[\n]"
+6262 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6262 [main] DEBUG httpclient.wire.content  - << "             <h3>number three</h3>[\n]"
+6262 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6262 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6263 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>ServletContext Minor Version Test (should return 5)</h1></font>[\n]"
+6263 [main] DEBUG httpclient.wire.content  - << "         <h3>ServletContext.getMinorVersion() = 5</h3>[\n]"
+6263 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6263 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Enum Test</h1></font>[\n]"
+6263 [main] DEBUG httpclient.wire.content  - << "         <h3>JBoss Color selection is PURPLE</h3>[\n]"
+6263 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Test using JDK class as a managed bean</h1></font>     [\n]"
+6263 [main] DEBUG httpclient.wire.content  - << "         <h3>JButton value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.5,border=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,flags=288,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]</h3>[\n]"
+6263 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6263 [main] DEBUG httpclient.wire.content  - << " [\n]"
+6263 [main] DEBUG httpclient.wire.content  - << "       <font color="red"><h1>Logging Test</h1></font>[\n]"
+6263 [main] DEBUG httpclient.wire.content  - << "       <h3>[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "       ERROR - Logged SEVERE message in APPLICATION_LOGGER<br/>[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "WARN - Logged WARNING message in CONTEXT_LOGGER<br/>[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "INFO - Logged INFO message in CONFIG_LOGGER<br/>[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "DEBUG - Logged FINE message in LIFECYCLE_LOGGER<br/>[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINER message in TIMING_LOGGER<br/>[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in TIMING_LOGGER<br/>[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger<br/>[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "       </h3>[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "    </body>[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "</html>[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6264 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6264 [main] DEBUG httpclient.wire.content  - << "0"
+6264 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6265 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6265 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6265 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6265 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Resorting to protocol version default close connection policy
+6265 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Should NOT close connection, using HTTP/1.1
+6265 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.
+6266 [main] DEBUG org.jboss.test.web.test.JSFIntegrationUnitTestCase  - ==== Starting testFaceletsLogging ====
+6267 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Open connection to localhost:8080
+6267 [main] DEBUG httpclient.wire.header  - >> "GET /jbosstest-jsf-facelets/index.jsf HTTP/1.1[\r][\n]"
+6267 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header
+6267 [main] DEBUG httpclient.wire.header  - >> "User-Agent: Jakarta Commons-HttpClient/3.0[\r][\n]"
+6268 [main] DEBUG httpclient.wire.header  - >> "Host: localhost:8080[\r][\n]"
+6268 [main] DEBUG httpclient.wire.header  - >> "[\r][\n]"
+6728 [main] DEBUG httpclient.wire.header  - << "HTTP/1.1 200 OK[\r][\n]"
+6728 [main] DEBUG httpclient.wire.header  - << "Server: Apache-Coyote/1.1[\r][\n]"
+6728 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1[\r][\n]"
+6729 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: JSF/1.2[\r][\n]"
+6729 [main] DEBUG httpclient.wire.header  - << "Set-Cookie: JSESSIONID=28D10F7555F79608E81219C8363E364A; Path=/jbosstest-jsf-facelets[\r][\n]"
+6730 [main] DEBUG httpclient.wire.header  - << "Content-Type: text/html;charset=UTF-8[\r][\n]"
+6730 [main] DEBUG httpclient.wire.header  - << "Content-Language: en-US[\r][\n]"
+6730 [main] DEBUG httpclient.wire.header  - << "Transfer-Encoding: chunked[\r][\n]"
+6730 [main] DEBUG httpclient.wire.header  - << "Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]"
+6730 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Cookie accepted: "$Version=0; JSESSIONID=28D10F7555F79608E81219C8363E364A; $Path=/jbosstest-jsf-facelets"
+6730 [main] DEBUG httpclient.wire.content  - << "9"
+6730 [main] DEBUG httpclient.wire.content  - << "9"
+6730 [main] DEBUG httpclient.wire.content  - << "e"
+6730 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6730 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6730 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6730 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "<html>[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "    <head>[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "        <title>JBoss JSF Integration Test</title>[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "    </head>[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "    <body>[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>InjectionBean: hit this page twice to complete the test.</h1></font>[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "         <h3>@PostConstruct was called.</h3>[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "         <h3></h3>[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "         <h3>Datasource was injected.</h3>[\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6731 [main] DEBUG httpclient.wire.content  - << "          [\n]"
+6732 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Classic test of JSTL 1.2/JSF 1.2 with deferred expressions:</h1></font>[\n]"
+6732 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6732 [main] DEBUG httpclient.wire.content  - << "             <h3>number one</h3>[\n]"
+6732 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6732 [main] DEBUG httpclient.wire.content  - << "             <h3>number two</h3>[\n]"
+6732 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6733 [main] DEBUG httpclient.wire.content  - << "             <h3>number three</h3>[\n]"
+6733 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6733 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6733 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>ServletContext Minor Version Test (should return 5)</h1></font>[\n]"
+6733 [main] DEBUG httpclient.wire.content  - << "         <h3>ServletContext.getMinorVersion() = 5</h3>[\n]"
+6733 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6733 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Enum Test</h1></font>[\n]"
+6733 [main] DEBUG httpclient.wire.content  - << "         <h3>JBoss Color selection is PURPLE</h3>[\n]"
+6733 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Test using JDK class as a managed bean</h1></font>     [\n]"
+6733 [main] DEBUG httpclient.wire.content  - << "         <h3>JButto"
+6734 [main] DEBUG httpclient.wire.content  - << "n value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.5,border=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,flags=288,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]</h3>[\n]"
+6734 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6734 [main] DEBUG httpclient.wire.content  - << " [\n]"
+6734 [main] DEBUG httpclient.wire.content  - << "       <font color="red"><h1>Logging Test</h1></font>[\n]"
+6734 [main] DEBUG httpclient.wire.content  - << "       <h3>[\n]"
+6734 [main] DEBUG httpclient.wire.content  - << "       ERROR - Logged SEVERE message in APPLICATION_LOGGER<br/>[\n]"
+6734 [main] DEBUG httpclient.wire.content  - << "WARN - Logged WARNING message in CONTEXT_LOGGER<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "INFO - Logged INFO message in CONFIG_LOGGER<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "DEBUG - Logged FINE message in LIFECYCLE_LOGGER<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINER message in TIMING_LOGGER<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in TIMING_LOGGER<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.compiler<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.compiler<b"
+6735 [main] DEBUG httpclient.wire.content  - << "r/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.factory<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.tag.component<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.factory<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.viewhandler<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.compiler<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.tag.component<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.tag.meta<br/>[\n]"
+6735 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6736 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6736 [main] DEBUG httpclient.wire.content  - << "       </h3>[\n]"
+6736 [main] DEBUG httpclient.wire.content  - << "    </body>[\n]"
+6736 [main] DEBUG httpclient.wire.content  - << "</html>[\n]"
+6736 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6736 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6736 [main] DEBUG httpclient.wire.content  - << "0"
+6736 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6736 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6736 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6736 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6736 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Resorting to protocol version default close connection policy
+6736 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Should NOT close connection, using HTTP/1.1
+6736 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.
+6738 [main] DEBUG httpclient.wire.header  - >> "GET /jbosstest-jsf-facelets/index.jsf HTTP/1.1[\r][\n]"
+6738 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header
+6739 [main] DEBUG httpclient.wire.header  - >> "User-Agent: Jakarta Commons-HttpClient/3.0[\r][\n]"
+6739 [main] DEBUG httpclient.wire.header  - >> "Host: localhost:8080[\r][\n]"
+6739 [main] DEBUG httpclient.wire.header  - >> "Cookie: $Version=0; JSESSIONID=28D10F7555F79608E81219C8363E364A; $Path=/jbosstest-jsf-facelets[\r][\n]"
+6739 [main] DEBUG httpclient.wire.header  - >> "[\r][\n]"
+6756 [main] DEBUG httpclient.wire.header  - << "HTTP/1.1 200 OK[\r][\n]"
+6756 [main] DEBUG httpclient.wire.header  - << "Server: Apache-Coyote/1.1[\r][\n]"
+6756 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1[\r][\n]"
+6756 [main] DEBUG httpclient.wire.header  - << "X-Powered-By: JSF/1.2[\r][\n]"
+6756 [main] DEBUG httpclient.wire.header  - << "Content-Type: text/html;charset=UTF-8[\r][\n]"
+6756 [main] DEBUG httpclient.wire.header  - << "Content-Language: en-US[\r][\n]"
+6757 [main] DEBUG httpclient.wire.header  - << "Transfer-Encoding: chunked[\r][\n]"
+6757 [main] DEBUG httpclient.wire.header  - << "Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]"
+6757 [main] WARN org.apache.commons.httpclient.HttpMethodBase  - Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.
+6757 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Buffering response body
+6758 [main] DEBUG httpclient.wire.content  - << "9"
+6758 [main] DEBUG httpclient.wire.content  - << "b"
+6758 [main] DEBUG httpclient.wire.content  - << "5"
+6758 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6758 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6758 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6758 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6758 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6758 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6758 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6758 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6758 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6758 [main] DEBUG httpclient.wire.content  - << "<html>[\n]"
+6758 [main] DEBUG httpclient.wire.content  - << "    <head>[\n]"
+6758 [main] DEBUG httpclient.wire.content  - << "        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">[\n]"
+6758 [main] DEBUG httpclient.wire.content  - << "        <title>JBoss JSF Integration Test</title>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "    </head>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "    <body>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>InjectionBean: hit this page twice to complete the test.</h1></font>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         <h3>@PostConstruct was called.</h3>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         <h3>@PreDestroy was called.</h3>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         <h3>Datasource was injected.</h3>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "          [\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Classic test of JSTL 1.2/JSF 1.2 with deferred expressions:</h1></font>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "             <h3>number one</h3>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "             <h3>number two</h3>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "             <h3>number three</h3>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         [\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>ServletContext Minor Version Test (should return 5)</h1></font>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "         <h3>ServletContext.getMinorVersion() = 5</h3>[\n]"
+6759 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6760 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Enum Test</h1></font>[\n]"
+6760 [main] DEBUG httpclient.wire.content  - << "         <h3>JBoss Color selection is PURPLE</h3>[\n]"
+6760 [main] DEBUG httpclient.wire.content  - << "         <font color="red"><h1>Test using JDK class as a managed bean</h1></font>     [\n]"
+6760 [main] DEBUG httpclient.wire.content  - << "         <h3>JButton value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.5,border=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,flags=288,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]</h3>[\n]"
+6760 [main] DEBUG httpclient.wire.content  - << "     [\n]"
+6760 [main] DEBUG httpclient.wire.content  - << " [\n]"
+6760 [main] DEBUG httpclient.wire.content  - << "       <font color="red"><h1>Logging Test</h1></font>[\n]"
+6760 [main] DEBUG httpclient.wire.content  - << "       <h3>[\n]"
+6760 [main] DEBUG httpclient.wire.content  - << "       ERROR - Logged SEVERE message in APPLICATION_LOGGER<br/>[\n]"
+6760 [main] DEBUG httpclient.wire.content  - << "WARN - Logged WARNING message in CONTEXT_LOGGER<br/>[\n]"
+6760 [main] DEBUG httpclient.wire.content  - << "INFO - Logged INFO message in CONFIG_LOGGER<br/>[\n]"
+6760 [main] DEBUG httpclient.wire.content  - << "DEBUG - Logged FINE message in LIFECYCLE_LOGGER<br/>[\n]"
+6761 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINER message in TIMING_LOGGER<br/>[\n]"
+6761 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in TIMING_LOGGER<br/>[\n]"
+6761 [main] DEBUG httpclient.wire.content  - << "TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger<br/>[\n]"
+6761 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.compiler<br/>[\n]"
+6761 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.compiler<br/>[\n]"
+6761 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.factory<br/>[\n]"
+6761 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.tag.component<br/>[\n]"
+6761 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.factory<br/>[\n]"
+6762 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.viewhandler<br/>[\n]"
+6763 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.compiler<br/>[\n]"
+6767 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.tag.component<br/>[\n]"
+6767 [main] DEBUG httpclient.wire.content  - << "INFO - Here is a message for facelets.tag.meta<br/>[\n]"
+6767 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6767 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6767 [main] DEBUG httpclient.wire.content  - << "       </h3>[\n]"
+6767 [main] DEBUG httpclient.wire.content  - << "    </body>[\n]"
+6767 [main] DEBUG httpclient.wire.content  - << "</html>[\n]"
+6767 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6767 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6767 [main] DEBUG httpclient.wire.content  - << "0"
+6767 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6767 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6767 [main] DEBUG httpclient.wire.content  - << "[\r]"
+6767 [main] DEBUG httpclient.wire.content  - << "[\n]"
+6767 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Resorting to protocol version default close connection policy
+6768 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Should NOT close connection, using HTTP/1.1
+6768 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.
+6768 [main] DEBUG org.jboss.test.JBossTestCase  - jbosstest-jsf-facelets.war is not a valid URL, no protocol: jbosstest-jsf-facelets.war
+6768 [main] DEBUG org.jboss.test.JBossTestCase  - Testing file: output/lib/jbosstest-jsf-facelets.war
+6768 [main] DEBUG org.jboss.test.JBossTestCase  - /Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war is a valid file
+6768 [main] DEBUG org.jboss.test.JBossTestCase  - Undeploying jbosstest-jsf-facelets.war, url=file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war
+6768 [main] DEBUG org.jboss.test.JBossTestCase  - Invoking jboss.system:service=MainDeployer method=undeploy
+6768 [main] DEBUG org.jboss.test.JBossTestCase  - args=[file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war]
+6809 [main] DEBUG org.jboss.test.JBossTestCase  - jbosstest-jsf.war is not a valid URL, no protocol: jbosstest-jsf.war
+6809 [main] DEBUG org.jboss.test.JBossTestCase  - Testing file: output/lib/jbosstest-jsf.war
+6809 [main] DEBUG org.jboss.test.JBossTestCase  - /Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war is a valid file
+6809 [main] DEBUG org.jboss.test.JBossTestCase  - Undeploying jbosstest-jsf.war, url=file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war
+6809 [main] DEBUG org.jboss.test.JBossTestCase  - Invoking jboss.system:service=MainDeployer method=undeploy
+6809 [main] DEBUG org.jboss.test.JBossTestCase  - args=[file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war]
+6838 [main] DEBUG org.jboss.test.JBossTestCase  - JBossTestServices.tearDown()
+[/code]


Property changes on: labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest1.txt
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest1result.txt
===================================================================
--- labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest1result.txt	                        (rev 0)
+++ labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest1result.txt	2009-06-01 13:51:13 UTC (rev 26798)
@@ -0,0 +1 @@
+<p>We have a few tests for overriding things like logging, the xml parser impl that rely on this and are working. The general problem with overriding is whether or not the api was designed for it. For example, you cannot override the javax.xml.* classes, only the implementation of the interfaces.<br/><br/>Do the jsf classes in question have a similar factory type of pattern where the implementation is loaded in the context of the war class loader, or are these classes that are bound to some tomcat container class that would require the container to be recreated in the war class loader?<br/><br/>If I run the org.jboss.test.web.test.JSFIntegrationUnitTestCase it looks to be passing, so am I missing some recent change that altered this?<br/><pre __default_attr="java" __jive_macro_name="code" class="jive_text_macro jive_macro_code"><br/>2244 [main] DEBUG org.jboss.test.JBossTestCase  - ==== setUp org.jboss.test.JBossTestCase ====<br/>2245 [main] DEBUG org.jboss.test.JBossTestCa!
 se  - JBossTestServices.setUp()<br/>2276 [main] DEBUG org.jboss.test.JBossTestCase  - initialContext.getEnvironment()={jnp.parsedName=, java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.provider.url=localhost:1099, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}<br/>2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.beancount: null<br/>2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.iterationcount: null<br/>2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.threadcount: null<br/>2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.nodeploy: null<br/>2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.jndiurl: localhost:1099<br/>2276 [main] INFO org.jboss.test.JBossTestCase  - jbosstest.jndifactory: org.jnp.interfaces.NamingContextFactory<br/>2276 [main] DEBUG org.jboss.test.JBossTestCase  - jbosstest-jsf.war is not a valid URL, no protocol: jbosstest-jsf.war<br/>2276 [main] DEBUG org.jb!
 oss.test.JBossTestCase  - Testing file: output/lib/jbosstest-jsf.war<b
r/>2276 [main] DEBUG org.jboss.test.JBossTestCase  - /Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war is a valid file<br/>2277 [main] DEBUG org.jboss.test.JBossTestCase  - Deploying jbosstest-jsf.war, url=file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war<br/>2278 [main] DEBUG org.jnp.interfaces.TimedSocketFactory  - createSocket, hostAddr: localhost/127.0.0.1, port: 1099, localAddr: null, localPort: 0, timeout: 0<br/>2652 [main] DEBUG org.jboss.test.JBossTestCase  - Invoking jboss.system:service=MainDeployer method=deploy<br/>2652 [main] DEBUG org.jboss.test.JBossTestCase  - args=[file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war]<br/>4081 [main] DEBUG org.jboss.test.JBossTestCase  - jbosstest-jsf-facelets.war is not a valid URL, no protocol: jbosstest-jsf-facelets.war<br/>4081 [main] DEBUG org.jboss.test.JBossTestCase  - Testing file: output/lib/jbosstest-jsf-facelets.war<br/>4082 [main] DEBUG org.jbo!
 ss.test.JBossTestCase  - /Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war is a valid file<br/>4082 [main] DEBUG org.jboss.test.JBossTestCase  - Deploying jbosstest-jsf-facelets.war, url=file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war<br/>4082 [main] DEBUG org.jboss.test.JBossTestCase  - Invoking jboss.system:service=MainDeployer method=deploy<br/>4082 [main] DEBUG org.jboss.test.JBossTestCase  - args=[file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war]<br/>4467 [main] DEBUG org.jboss.test.web.test.JSFIntegrationUnitTestCase  - ==== Starting testJSFIntegrated ====<br/>4468 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Open connection to localhost:8080<br/>4469 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;GET /jbosstest-jsf/index.jsf HTTP/1.1[\r][\n]&quot;<br/>4469 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header<!
 br/>4472 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;User-Ag
ent: Jakarta Commons-HttpClient/3.0[\r][\n]&quot;<br/>4472 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;Host: localhost:8080[\r][\n]&quot;<br/>4472 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;[\r][\n]&quot;<br/>6191 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;HTTP/1.1 200 OK[\r][\n]&quot;<br/>6193 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Server: Apache-Coyote/1.1[\r][\n]&quot;<br/>6193 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1[\r][\n]&quot;<br/>6193 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;X-Powered-By: JSF/1.2[\r][\n]&quot;<br/>6193 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Set-Cookie: JSESSIONID=92AE9D1FF4B232B544CC297833DF1E3B; Path=/jbosstest-jsf[\r][\n]&quot;<br/>6193 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-Type: text/html;charset=UTF-8[\r][\n]&quot;<br/>6193 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-L!
 anguage: en-US[\r][\n]&quot;<br/>6193 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Transfer-Encoding: chunked[\r][\n]&quot;<br/>6194 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]&quot;<br/>6194 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Cookie accepted: &quot;$Version=0; JSESSIONID=92AE9D1FF4B232B544CC297833DF1E3B; $Path=/jbosstest-jsf&quot;<br/>6195 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;7&quot;<br/>6195 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;b&quot;<br/>6195 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;f&quot;<br/>6195 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6195 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6195 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6195 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6195 [main] DEBUG httpclient.wire.content  - !
 &lt;&lt; &quot;[\n]&quot;<br/>6195 [main] DEBUG httpclient.wire.conten
t  - &lt;&lt; &quot;[\n]&quot;<br/>6195 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6195 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6195 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6196 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;&lt;html&gt;[\n]&quot;<br/>6196 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;head&gt;[\n]&quot;<br/>6196 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;        &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;[\n]&quot;<br/>6196 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;        &lt;title&gt;JBoss JSF Integration Test&lt;/title&gt;[\n]&quot;<br/>6196 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;/head&gt;[\n]&quot;<br/>6196 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;body&gt;[\n]&quot;<br/>6196 [main] DEBUG httpclient.wire.content  - &lt;&lt; &q!
 uot;[\n]&quot;<br/>6196 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6196 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;InjectionBean: hit this page twice to complete the test.&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6196 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;@PostConstruct was called.&lt;/h3&gt;[\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;&lt;/h3&gt;[\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;Datasource was injected.&lt;/h3&gt;[\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;          [\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;   !
       &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Classic test of JSTL
 1.2/JSF 1.2 with deferred expressions:&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number one&lt;/h3&gt;[\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number two&lt;/h3&gt;[\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number three&lt;/h3&gt;[\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;ServletContext Minor Version!
  Test (should return 5)&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6197 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;ServletContext.getMinorVersion() = 5&lt;/h3&gt;[\n]&quot;<br/>6198 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6198 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Enum Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6198 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JBoss Color selection is PURPLE&lt;/h3&gt;[\n]&quot;<br/>6198 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Test using JDK class as a managed bean&lt;/h1&gt;&lt;/font&gt;     [\n]&quot;<br/>6198 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JButto&quot;<br/>6198 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;n value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,!
 alignmentY=0.5,border=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,fla
gs=288,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]&lt;/h3&gt;[\n]&quot;<br/>6198 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6198 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot; [\n]&quot;<br/>6199 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Logging Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6199 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;h3&gt;[\n]&quot;<br/>6199 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       ERROR - Logged SEVERE message in APPLICATION_LOGGER&lt;br/&gt;[\n]&quot;<br/>6199 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;WARN - Logged WARNING m!
 essage in CONTEXT_LOGGER&lt;br/&gt;[\n]&quot;<br/>6199 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Logged INFO message in CONFIG_LOGGER&lt;br/&gt;[\n]&quot;<br/>6199 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;DEBUG - Logged FINE message in LIFECYCLE_LOGGER&lt;br/&gt;[\n]&quot;<br/>6199 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINER message in TIMING_LOGGER&lt;br/&gt;[\n]&quot;<br/>6199 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in TIMING_LOGGER&lt;br/&gt;[\n]&quot;<br/>6199 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger&lt;br/&gt;[\n]&quot;<br/>6199 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6200 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6200 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;/h3&gt;[\n]&quot;<br/>6200 [main] DEBUG httpclie!
 nt.wire.content  - &lt;&lt; &quot;    &lt;/body&gt;[\n]&quot;<br/>6200
 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;&lt;/html&gt;[\n]&quot;<br/>6200 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6200 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6200 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;0&quot;<br/>6200 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6200 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6200 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6201 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6201 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Resorting to protocol version default close connection policy<br/>6201 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Should NOT close connection, using HTTP/1.1<br/>6201 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.<br/>6202 [main] DEBUG !
 httpclient.wire.header  - &gt;&gt; &quot;GET /jbosstest-jsf/index.jsf HTTP/1.1[\r][\n]&quot;<br/>6202 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header<br/>6203 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;User-Agent: Jakarta Commons-HttpClient/3.0[\r][\n]&quot;<br/>6203 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;Host: localhost:8080[\r][\n]&quot;<br/>6203 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;Cookie: $Version=0; JSESSIONID=92AE9D1FF4B232B544CC297833DF1E3B; $Path=/jbosstest-jsf[\r][\n]&quot;<br/>6204 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;[\r][\n]&quot;<br/>6217 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;HTTP/1.1 200 OK[\r][\n]&quot;<br/>6217 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Server: Apache-Coyote/1.1[\r][\n]&quot;<br/>6217 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1[\r][\n]&quot;<br/>6217 [main] !
 DEBUG httpclient.wire.header  - &lt;&lt; &quot;X-Powered-By: JSF/1.2[\
r][\n]&quot;<br/>6217 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-Type: text/html;charset=UTF-8[\r][\n]&quot;<br/>6217 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-Language: en-US[\r][\n]&quot;<br/>6217 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Transfer-Encoding: chunked[\r][\n]&quot;<br/>6218 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]&quot;<br/>6218 [main] WARN org.apache.commons.httpclient.HttpMethodBase  - Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.<br/>6218 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Buffering response body<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;7&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;d&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;6&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&!
 lt; &quot;[\r]&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;&lt;html&gt;[\n]&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;head&gt;[\n]&quot;<br/>6220 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;        &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;[\n]&quot;<br/>6221 [mai!
 n] DEBUG httpclient.wire.content  - &lt;&lt; &quot;        &lt;title&g
t;JBoss JSF Integration Test&lt;/title&gt;[\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;/head&gt;[\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;body&gt;[\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;InjectionBean: hit this page twice to complete the test.&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;@PostConstruct was called.&lt;/h3&gt;[\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;@PreDestroy was called.&lt;/h3&gt;[\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;Datasource was injected.&lt;/h3&gt;[\n]&quot;<br!
 />6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;          [\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Classic test of JSTL 1.2/JSF 1.2 with deferred expressions:&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number one&lt;/h3&gt;[\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6221 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number two&lt;/h3&gt;[\n]&quot;<br/>6222 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6222 [main] DEBUG httpclient.wir!
 e.content  - &lt;&lt; &quot;             &lt;h3&gt;number three&lt;/h3
&gt;[\n]&quot;<br/>6222 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6222 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6222 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;ServletContext Minor Version Test (should return 5)&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6222 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;ServletContext.getMinorVersion() = 5&lt;/h3&gt;[\n]&quot;<br/>6222 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6222 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Enum Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6222 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JBoss Color selection is PURPLE&lt;/h3&gt;[\n]&quot;<br/>6222 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&q!
 uot;&gt;&lt;h1&gt;Test using JDK class as a managed bean&lt;/h1&gt;&lt;/font&gt;     [\n]&quot;<br/>6222 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JButton value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.5,border=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,flags=288,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]&lt;/h3&gt;[\n]&quot;<br/>6222 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot; [\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Logging Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6!
 223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;
h3&gt;[\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       ERROR - Logged SEVERE message in APPLICATION_LOGGER&lt;br/&gt;[\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;WARN - Logged WARNING message in CONTEXT_LOGGER&lt;br/&gt;[\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Logged INFO message in CONFIG_LOGGER&lt;br/&gt;[\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;DEBUG - Logged FINE message in LIFECYCLE_LOGGER&lt;br/&gt;[\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINER message in TIMING_LOGGER&lt;br/&gt;[\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in TIMING_LOGGER&lt;br/&gt;[\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger&lt;br/&gt;[\n]&quot;<br/>6223 [main] DEBUG http!
 client.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;/h3&gt;[\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;/body&gt;[\n]&quot;<br/>6223 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;&lt;/html&gt;[\n]&quot;<br/>6224 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6224 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6224 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;0&quot;<br/>6224 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6224 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6224 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6224 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6224 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  -!
  Resorting to protocol version default close connection policy<br/>622
4 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Should NOT close connection, using HTTP/1.1<br/>6224 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.<br/>6225 [main] DEBUG org.jboss.test.web.test.JSFIntegrationUnitTestCase  - ==== Starting testNoFaceletsLogging ====<br/>6225 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Open connection to localhost:8080<br/>6225 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;GET /jbosstest-jsf/index.jsf HTTP/1.1[\r][\n]&quot;<br/>6225 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header<br/>6226 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;User-Agent: Jakarta Commons-HttpClient/3.0[\r][\n]&quot;<br/>6226 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;Host: localhost:8080[\r][\n]&quot;<br/>6226 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;[\r][\n]&quot;<br/>6236 [main] DEBUG httpclient.w!
 ire.header  - &lt;&lt; &quot;HTTP/1.1 200 OK[\r][\n]&quot;<br/>6237 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Server: Apache-Coyote/1.1[\r][\n]&quot;<br/>6237 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1[\r][\n]&quot;<br/>6237 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;X-Powered-By: JSF/1.2[\r][\n]&quot;<br/>6237 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Set-Cookie: JSESSIONID=5E44820CD893F6977489AF91D3B207DC; Path=/jbosstest-jsf[\r][\n]&quot;<br/>6237 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-Type: text/html;charset=UTF-8[\r][\n]&quot;<br/>6237 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-Language: en-US[\r][\n]&quot;<br/>6237 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Transfer-Encoding: chunked[\r][\n]&quot;<br/>6238 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]&quot;<br/>6238 [mai!
 n] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Cookie accept
ed: &quot;$Version=0; JSESSIONID=5E44820CD893F6977489AF91D3B207DC; $Path=/jbosstest-jsf&quot;<br/>6239 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;7&quot;<br/>6239 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;b&quot;<br/>6239 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;f&quot;<br/>6239 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6239 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6239 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6240 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6240 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6240 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>!
 6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;&lt;html&gt;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;head&gt;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;        &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;        &lt;title&gt;JBoss JSF Integration Test&lt;/title&gt;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;/head&gt;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;body&gt;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;InjectionBean: hit this page twice to complete !
 the test.&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6241 [main] DEBUG http
client.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;@PostConstruct was called.&lt;/h3&gt;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;&lt;/h3&gt;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;Datasource was injected.&lt;/h3&gt;[\n]&quot;<br/>6241 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6242 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6242 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;          [\n]&quot;<br/>6242 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Classic test of JSTL 1.2/JSF 1.2 with deferred expressions:&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6242 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6242 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number one&lt;/!
 h3&gt;[\n]&quot;<br/>6242 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6242 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number two&lt;/h3&gt;[\n]&quot;<br/>6242 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number three&lt;/h3&gt;[\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;ServletContext Minor Version Test (should return 5)&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;ServletContext.getMinorVersion() = 5&lt;/h3&gt;[\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &q!
 uot;[\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&l
t; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Enum Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JBoss Color selection is PURPLE&lt;/h3&gt;[\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Test using JDK class as a managed bean&lt;/h1&gt;&lt;/font&gt;     [\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JButto&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;n value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.5,border=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,flags=288,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverS!
 electedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]&lt;/h3&gt;[\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot; [\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Logging Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;h3&gt;[\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       ERROR - Logged SEVERE message in APPLICATION_LOGGER&lt;br/&gt;[\n]&quot;<br/>6243 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;WARN - Logged WARNING message in CONTEXT_LOGGER&lt;br/&gt;[\n]&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Logged INFO message in CONFIG_LOGGER&lt;br/&gt;[\n]&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;DEBUG - Logged FINE !
 message in LIFECYCLE_LOGGER&lt;br/&gt;[\n]&quot;<br/>6244 [main] DEBUG
 httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINER message in TIMING_LOGGER&lt;br/&gt;[\n]&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in TIMING_LOGGER&lt;br/&gt;[\n]&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger&lt;br/&gt;[\n]&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;/h3&gt;[\n]&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;/body&gt;[\n]&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;&lt;/html&gt;[\n]&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6244 [main] DEBUG httpclie!
 nt.wire.content  - &lt;&lt; &quot;0&quot;<br/>6244 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6245 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6245 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6245 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6245 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Resorting to protocol version default close connection policy<br/>6245 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Should NOT close connection, using HTTP/1.1<br/>6245 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.<br/>6247 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;GET /jbosstest-jsf/index.jsf HTTP/1.1[\r][\n]&quot;<br/>6247 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header<br/>6248 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;User-A!
 gent: Jakarta Commons-HttpClient/3.0[\r][\n]&quot;<br/>6248 [main] DEB
UG httpclient.wire.header  - &gt;&gt; &quot;Host: localhost:8080[\r][\n]&quot;<br/>6248 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;Cookie: $Version=0; JSESSIONID=5E44820CD893F6977489AF91D3B207DC; $Path=/jbosstest-jsf[\r][\n]&quot;<br/>6248 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;[\r][\n]&quot;<br/>6259 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;HTTP/1.1 200 OK[\r][\n]&quot;<br/>6259 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Server: Apache-Coyote/1.1[\r][\n]&quot;<br/>6259 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1[\r][\n]&quot;<br/>6259 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;X-Powered-By: JSF/1.2[\r][\n]&quot;<br/>6259 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-Type: text/html;charset=UTF-8[\r][\n]&quot;<br/>6259 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-Language: en-US[\r][\n]&quot;<br/>6259 [main] DEBUG httpclien!
 t.wire.header  - &lt;&lt; &quot;Transfer-Encoding: chunked[\r][\n]&quot;<br/>6259 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]&quot;<br/>6259 [main] WARN org.apache.commons.httpclient.HttpMethodBase  - Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.<br/>6260 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Buffering response body<br/>6260 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;7&quot;<br/>6260 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;d&quot;<br/>6260 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;6&quot;<br/>6260 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6260 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6260 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6260 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6261 [mai!
 n] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6261
 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;&lt;html&gt;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;head&gt;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;        &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;        &lt;title&gt;JBoss JSF Integration Test&lt;/title&gt;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;/head&gt;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;body&gt;[\n]&quot;<br/>6261 [main] DEBUG ht!
 tpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;InjectionBean: hit this page twice to complete the test.&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;@PostConstruct was called.&lt;/h3&gt;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;@PreDestroy was called.&lt;/h3&gt;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;Datasource was injected.&lt;/h3&gt;[\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6261 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6262 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;          [\n]&quot;<br/>6262!
  [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;f
ont color=&quot;red&quot;&gt;&lt;h1&gt;Classic test of JSTL 1.2/JSF 1.2 with deferred expressions:&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6262 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6262 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number one&lt;/h3&gt;[\n]&quot;<br/>6262 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6262 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number two&lt;/h3&gt;[\n]&quot;<br/>6262 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6262 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number three&lt;/h3&gt;[\n]&quot;<br/>6262 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6262 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6263 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font colo!
 r=&quot;red&quot;&gt;&lt;h1&gt;ServletContext Minor Version Test (should return 5)&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6263 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;ServletContext.getMinorVersion() = 5&lt;/h3&gt;[\n]&quot;<br/>6263 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6263 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Enum Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6263 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JBoss Color selection is PURPLE&lt;/h3&gt;[\n]&quot;<br/>6263 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Test using JDK class as a managed bean&lt;/h1&gt;&lt;/font&gt;     [\n]&quot;<br/>6263 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JButton value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0!
 .5,border=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,flags=288,maxim
umSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]&lt;/h3&gt;[\n]&quot;<br/>6263 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6263 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot; [\n]&quot;<br/>6263 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Logging Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6263 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;h3&gt;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       ERROR - Logged SEVERE message in APPLICATION_LOGGER&lt;br/&gt;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;WARN - Logged WARNING message in CO!
 NTEXT_LOGGER&lt;br/&gt;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Logged INFO message in CONFIG_LOGGER&lt;br/&gt;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;DEBUG - Logged FINE message in LIFECYCLE_LOGGER&lt;br/&gt;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINER message in TIMING_LOGGER&lt;br/&gt;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in TIMING_LOGGER&lt;br/&gt;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger&lt;br/&gt;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;/h3&gt;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.cont!
 ent  - &lt;&lt; &quot;    &lt;/body&gt;[\n]&quot;<br/>6264 [main] DEBU
G httpclient.wire.content  - &lt;&lt; &quot;&lt;/html&gt;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;0&quot;<br/>6264 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6265 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6265 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6265 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6265 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Resorting to protocol version default close connection policy<br/>6265 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Should NOT close connection, using HTTP/1.1<br/>6265 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.<br/>6266 [main] DEBUG org.jboss.te!
 st.web.test.JSFIntegrationUnitTestCase  - ==== Starting testFaceletsLogging ====<br/>6267 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Open connection to localhost:8080<br/>6267 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;GET /jbosstest-jsf-facelets/index.jsf HTTP/1.1[\r][\n]&quot;<br/>6267 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header<br/>6267 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;User-Agent: Jakarta Commons-HttpClient/3.0[\r][\n]&quot;<br/>6268 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;Host: localhost:8080[\r][\n]&quot;<br/>6268 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;[\r][\n]&quot;<br/>6728 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;HTTP/1.1 200 OK[\r][\n]&quot;<br/>6728 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Server: Apache-Coyote/1.1[\r][\n]&quot;<br/>6728 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;X-Powered-By: Servlet 2.5; !
 JBoss-5.0/JBossWeb-2.1[\r][\n]&quot;<br/>6729 [main] DEBUG httpclient.
wire.header  - &lt;&lt; &quot;X-Powered-By: JSF/1.2[\r][\n]&quot;<br/>6729 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Set-Cookie: JSESSIONID=28D10F7555F79608E81219C8363E364A; Path=/jbosstest-jsf-facelets[\r][\n]&quot;<br/>6730 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-Type: text/html;charset=UTF-8[\r][\n]&quot;<br/>6730 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-Language: en-US[\r][\n]&quot;<br/>6730 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Transfer-Encoding: chunked[\r][\n]&quot;<br/>6730 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]&quot;<br/>6730 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Cookie accepted: &quot;$Version=0; JSESSIONID=28D10F7555F79608E81219C8363E364A; $Path=/jbosstest-jsf-facelets&quot;<br/>6730 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;9&quot;<br/>6730 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;9&quo!
 t;<br/>6730 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;e&quot;<br/>6730 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6730 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6730 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6730 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;&lt;html&gt;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;head&gt;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &q!
 uot;        &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot
;text/html; charset=UTF-8&quot;&gt;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;        &lt;title&gt;JBoss JSF Integration Test&lt;/title&gt;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;/head&gt;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;body&gt;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;InjectionBean: hit this page twice to complete the test.&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;@PostConstruct was called.&lt;/h3&gt;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;&lt;/h3&gt;[\n]&quot;<br/>6731 [main] DEBUG htt!
 pclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;Datasource was injected.&lt;/h3&gt;[\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6731 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;          [\n]&quot;<br/>6732 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Classic test of JSTL 1.2/JSF 1.2 with deferred expressions:&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6732 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6732 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number one&lt;/h3&gt;[\n]&quot;<br/>6732 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6732 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number two&lt;/h3&gt;[\n]&quot;<br/>6732 [main!
 ] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<
br/>6733 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number three&lt;/h3&gt;[\n]&quot;<br/>6733 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6733 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6733 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;ServletContext Minor Version Test (should return 5)&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6733 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;ServletContext.getMinorVersion() = 5&lt;/h3&gt;[\n]&quot;<br/>6733 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6733 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Enum Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6733 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JBoss Color selection is PURPLE&lt;/h3&gt;[\n]!
 &quot;<br/>6733 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Test using JDK class as a managed bean&lt;/h1&gt;&lt;/font&gt;     [\n]&quot;<br/>6733 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JButto&quot;<br/>6734 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;n value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.5,border=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,flags=288,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]&lt;/h3&gt;[\n]&quot;<br/>6734 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6734 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot; [!
 \n]&quot;<br/>6734 [main] DEBUG httpclient.wire.content  - &lt;&lt; &q
uot;       &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Logging Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6734 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;h3&gt;[\n]&quot;<br/>6734 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       ERROR - Logged SEVERE message in APPLICATION_LOGGER&lt;br/&gt;[\n]&quot;<br/>6734 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;WARN - Logged WARNING message in CONTEXT_LOGGER&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Logged INFO message in CONFIG_LOGGER&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;DEBUG - Logged FINE message in LIFECYCLE_LOGGER&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINER message in TIMING_LOGGER&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in TIMING_LOGGER&lt;br/&gt;[\n]!
 &quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.compiler&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.compiler&lt;b&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;r/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.factory&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.tag.component&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.factory&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.v!
 iewhandler&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.
content  - &lt;&lt; &quot;INFO - Here is a message for facelets.compiler&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.tag.component&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.tag.meta&lt;br/&gt;[\n]&quot;<br/>6735 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6736 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6736 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;/h3&gt;[\n]&quot;<br/>6736 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;/body&gt;[\n]&quot;<br/>6736 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;&lt;/html&gt;[\n]&quot;<br/>6736 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6736 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6736 [main] DEBUG httpclient.wire.content  - &lt;!
 &lt; &quot;0&quot;<br/>6736 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6736 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6736 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6736 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6736 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Resorting to protocol version default close connection policy<br/>6736 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Should NOT close connection, using HTTP/1.1<br/>6736 [main] DEBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.<br/>6738 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;GET /jbosstest-jsf-facelets/index.jsf HTTP/1.1[\r][\n]&quot;<br/>6738 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Adding Host request header<br/>6739 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;User-Agent: Jakarta !
 Commons-HttpClient/3.0[\r][\n]&quot;<br/>6739 [main] DEBUG httpclient.
wire.header  - &gt;&gt; &quot;Host: localhost:8080[\r][\n]&quot;<br/>6739 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;Cookie: $Version=0; JSESSIONID=28D10F7555F79608E81219C8363E364A; $Path=/jbosstest-jsf-facelets[\r][\n]&quot;<br/>6739 [main] DEBUG httpclient.wire.header  - &gt;&gt; &quot;[\r][\n]&quot;<br/>6756 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;HTTP/1.1 200 OK[\r][\n]&quot;<br/>6756 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Server: Apache-Coyote/1.1[\r][\n]&quot;<br/>6756 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1[\r][\n]&quot;<br/>6756 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;X-Powered-By: JSF/1.2[\r][\n]&quot;<br/>6756 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-Type: text/html;charset=UTF-8[\r][\n]&quot;<br/>6756 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Content-Language: en-US[\r][\n]&quot;<br/>6757 [main] DEBUG httpclient.wir!
 e.header  - &lt;&lt; &quot;Transfer-Encoding: chunked[\r][\n]&quot;<br/>6757 [main] DEBUG httpclient.wire.header  - &lt;&lt; &quot;Date: Tue, 25 Nov 2008 17:32:56 GMT[\r][\n]&quot;<br/>6757 [main] WARN org.apache.commons.httpclient.HttpMethodBase  - Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.<br/>6757 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Buffering response body<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;9&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;b&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;5&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6758 [main] DE!
 BUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6758 [mai
n] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;&lt;html&gt;[\n]&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;head&gt;[\n]&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;        &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;[\n]&quot;<br/>6758 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;        &lt;title&gt;JBoss JSF Integration Test&lt;/title&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;/head&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;body&gt;[\n]&quot;<br/>6759 [main] DEBUG httpcli!
 ent.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;InjectionBean: hit this page twice to complete the test.&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;@PostConstruct was called.&lt;/h3&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;@PreDestroy was called.&lt;/h3&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;Datasource was injected.&lt;/h3&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;          [\n]&quot;<br/>6759 [mai!
 n] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font c
olor=&quot;red&quot;&gt;&lt;h1&gt;Classic test of JSTL 1.2/JSF 1.2 with deferred expressions:&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number one&lt;/h3&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number two&lt;/h3&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;             &lt;h3&gt;number three&lt;/h3&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         [\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&qu!
 ot;red&quot;&gt;&lt;h1&gt;ServletContext Minor Version Test (should return 5)&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;ServletContext.getMinorVersion() = 5&lt;/h3&gt;[\n]&quot;<br/>6759 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Enum Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JBoss Color selection is PURPLE&lt;/h3&gt;[\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Test using JDK class as a managed bean&lt;/h1&gt;&lt;/font&gt;     [\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;         &lt;h3&gt;JButton value = javax.swing.JButton[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.5,bo!
 rder=apple.laf.CUIAquaButtonBorder$Dynamic at 6d219c,flags=288,maximumSiz
e=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=0,left=2,bottom=0,right=2],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Initial Value,defaultCapable=true]&lt;/h3&gt;[\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;     [\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot; [\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;font color=&quot;red&quot;&gt;&lt;h1&gt;Logging Test&lt;/h1&gt;&lt;/font&gt;[\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;h3&gt;[\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       ERROR - Logged SEVERE message in APPLICATION_LOGGER&lt;br/&gt;[\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;WARN - Logged WARNING message in CONTEXT!
 _LOGGER&lt;br/&gt;[\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Logged INFO message in CONFIG_LOGGER&lt;br/&gt;[\n]&quot;<br/>6760 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;DEBUG - Logged FINE message in LIFECYCLE_LOGGER&lt;br/&gt;[\n]&quot;<br/>6761 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINER message in TIMING_LOGGER&lt;br/&gt;[\n]&quot;<br/>6761 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in TIMING_LOGGER&lt;br/&gt;[\n]&quot;<br/>6761 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;TRACE - Logged FINEST message in MANAGEDBEAN_LOGGER Logger&lt;br/&gt;[\n]&quot;<br/>6761 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.compiler&lt;br/&gt;[\n]&quot;<br/>6761 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.compiler&lt;br/&gt;[\n]&quot;<br/>6761 [main] DEBUG http!
 client.wire.content  - &lt;&lt; &quot;INFO - Here is a message for fac
elets.factory&lt;br/&gt;[\n]&quot;<br/>6761 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.tag.component&lt;br/&gt;[\n]&quot;<br/>6761 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.factory&lt;br/&gt;[\n]&quot;<br/>6762 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.viewhandler&lt;br/&gt;[\n]&quot;<br/>6763 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.compiler&lt;br/&gt;[\n]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.tag.component&lt;br/&gt;[\n]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;INFO - Here is a message for facelets.tag.meta&lt;br/&gt;[\n]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<!
 br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;       &lt;/h3&gt;[\n]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;    &lt;/body&gt;[\n]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;&lt;/html&gt;[\n]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;0&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\r]&quot;<br/>6767 [main] DEBUG httpclient.wire.content  - &lt;&lt; &quot;[\n]&quot;<br/>6767 [main] DEBUG org.apache.commons.httpclient.HttpMethodBase  - Resorting to protocol version default close connection policy<br/>6768 [main] DEBUG org.apache.commons.httpclient.HttpMetho!
 dBase  - Should NOT close connection, using HTTP/1.1<br/>6768 [main] D
EBUG org.apache.commons.httpclient.HttpConnection  - Releasing connection back to connection manager.<br/>6768 [main] DEBUG org.jboss.test.JBossTestCase  - jbosstest-jsf-facelets.war is not a valid URL, no protocol: jbosstest-jsf-facelets.war<br/>6768 [main] DEBUG org.jboss.test.JBossTestCase  - Testing file: output/lib/jbosstest-jsf-facelets.war<br/>6768 [main] DEBUG org.jboss.test.JBossTestCase  - /Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war is a valid file<br/>6768 [main] DEBUG org.jboss.test.JBossTestCase  - Undeploying jbosstest-jsf-facelets.war, url=file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war<br/>6768 [main] DEBUG org.jboss.test.JBossTestCase  - Invoking jboss.system:service=MainDeployer method=undeploy<br/>6768 [main] DEBUG org.jboss.test.JBossTestCase  - args=[file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf-facelets.war]<br/>6809 [main] DEBUG org.jboss.test.JBossTestCa!
 se  - jbosstest-jsf.war is not a valid URL, no protocol: jbosstest-jsf.war<br/>6809 [main] DEBUG org.jboss.test.JBossTestCase  - Testing file: output/lib/jbosstest-jsf.war<br/>6809 [main] DEBUG org.jboss.test.JBossTestCase  - /Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war is a valid file<br/>6809 [main] DEBUG org.jboss.test.JBossTestCase  - Undeploying jbosstest-jsf.war, url=file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war<br/>6809 [main] DEBUG org.jboss.test.JBossTestCase  - Invoking jboss.system:service=MainDeployer method=undeploy<br/>6809 [main] DEBUG org.jboss.test.JBossTestCase  - args=[file:/Users/svn/JBossHead/jboss-head/testsuite/output/lib/jbosstest-jsf.war]<br/>6838 [main] DEBUG org.jboss.test.JBossTestCase  - JBossTestServices.tearDown()<br/></pre><br/></p>
\ No newline at end of file


Property changes on: labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest1result.txt
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Modified: labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest2result.txt
===================================================================
--- labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest2result.txt	2009-06-01 13:44:24 UTC (rev 26797)
+++ labs/jbosslabs/labs-3.0-build/integration/cs-nfm/trunk/src/test/resources/bbcodetest2result.txt	2009-06-01 13:51:13 UTC (rev 26798)
@@ -1 +1 @@
-<p>At present jboss-web takes one security-domain and potentially many virtual-host configurations such that one webapp is deployed to many virtual hosts with the same security domain.  For websites with multiple regions, it often makes sense to use DIFFERENT security domains for each virtual host.</p><p></p><p>Today we can have only</p><p></p><p>jboss-web</p><p>  security-association</p><p>  virtual-host</p><p></p><p>Ideally we could have</p><p></p><p>jboss-web</p><p>    virtual-host</p><p>         security-association</p><p>    virtual-host</p><p>         security-association</p><p></p><p>Or:</p><p></p><p>jboss-web</p><p>    security-association</p><p>    virtual-host</p><p>         security-association</p><p>    virtual-host</p><p>         security-association</p><p></p><p>where the virtual host security-associations would override the parent.</p><p></p><p>In tomcat/src/main/org/jboss/web/tomcat/service/TomcatDeployer.xml the  performDeployInternal happens ALREADY for ea!
 ch hostname.  At present it uses ONE SecurityAssociationValve for all virtual hosts and the securityassociationvalve is configured with the metaData.getSecurityDomain().  This could instead be a seperate SecurityAssociationValve for each host with the securitydomain as an argument (used to flush the authentication cache).  Elsewhere, the ENC/security/security-domain is used.  This instead could be the ENC/security/vhost/security-domain or securityMgr (they ultimately are the same thing in server/src/main/org/jboss/web/AbstractWebDeployer).  </p><p></p><p>The trickiest piece isn't the server code, this would require some refactoring but doing the descriptor in an adequate but backward compatible way. <virtual-host>hostname</virtual-host> becomes <virtual-host>xxx</virtual-host><security-domain>domain</security-domain> or something like that.  Ideally it would be <virtual-host>xxx<security-domain>xxx</security-domain></virtual-host> for clarity.</p><p></p><p>Thoughts?  (Sh/C)!
 ould this be done?  Accepted if done by someone else?  If so could it 
make the 4.2 branch or possibly somewhere in 5 + 4.2 backport?</p>
\ No newline at end of file
+<p>At present jboss-web takes one security-domain and potentially many virtual-host configurations such that one webapp is deployed to many virtual hosts with the same security domain.  For websites with multiple regions, it often makes sense to use DIFFERENT security domains for each virtual host.<br/><br/>Today we can have only<br/><br/>jboss-web<br/>  security-association<br/>  virtual-host<br/><br/>Ideally we could have<br/><br/>jboss-web<br/>    virtual-host<br/>         security-association<br/>    virtual-host<br/>         security-association<br/><br/>Or:<br/><br/>jboss-web<br/>    security-association<br/>    virtual-host<br/>         security-association<br/>    virtual-host<br/>         security-association<br/><br/>where the virtual host security-associations would override the parent.<br/><br/>In tomcat/src/main/org/jboss/web/tomcat/service/TomcatDeployer.xml the  performDeployInternal happens ALREADY for each hostname.  At present it uses ONE SecurityAssociati!
 onValve for all virtual hosts and the securityassociationvalve is configured with the metaData.getSecurityDomain().  This could instead be a seperate SecurityAssociationValve for each host with the securitydomain as an argument (used to flush the authentication cache).  Elsewhere, the ENC/security/security-domain is used.  This instead could be the ENC/security/vhost/security-domain or securityMgr (they ultimately are the same thing in server/src/main/org/jboss/web/AbstractWebDeployer).  <br/><br/>The trickiest piece isn't the server code, this would require some refactoring but doing the descriptor in an adequate but backward compatible way. &lt;virtual-host&gt;hostname&lt;/virtual-host&gt; becomes &lt;virtual-host&gt;xxx&lt;/virtual-host&gt;&lt;security-domain&gt;domain&lt;/security-domain&gt; or something like that.  Ideally it would be &lt;virtual-host&gt;xxx&lt;security-domain&gt;xxx&lt;/security-domain&gt;&lt;/virtual-host&gt; for clarity.<br/><br/>Thoughts?  (Sh/C)ou!
 ld this be done?  Accepted if done by someone else?  If so could it ma
ke the 4.2 branch or possibly somewhere in 5 + 4.2 backport?</p>
\ No newline at end of file




More information about the jboss-svn-commits mailing list