[JBoss Portal] - Jboss Portal Errors in Server log
by ozguy
Hi
Our production system is reporting the following Portal errors:
Just wanted to know if some of you are also experiencing this and i don't think these are real errors, thus shouldn't be logged as error.
23:00:06,795 ERROR [STDERR] Aug 7, 2008 11:00:06 PM com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/usr/local/jboss-4.2.2/server/default/./deploy/jboss-portal.sar/portal-identity.sar/portal-identity.war/WEB-INF/lib2/jsf-facelets.jar!/META-INF/jsf-ui.taglib.xml
23:00:06,758 ERROR [STDERR] Aug 7, 2008 11:00:06 PM com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/usr/local/jboss-4.2.2/server/default/./deploy/jboss-portal.sar/portal-identity.sar/portal-identity.war/WEB-INF/lib2/jsf-facelets.jar!/META-INF/jsf-core.taglib.xml
23:00:06,700 ERROR [STDERR] Aug 7, 2008 11:00:06 PM com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/usr/local/jboss-4.2.2/server/default/./deploy/jboss-portal.sar/portal-identity.sar/portal-identity.war/WEB-INF/lib2/jsf-facelets.jar!/META-INF/jstl-fn.taglib.xml
23:00:06,686 ERROR [STDERR] Aug 7, 2008 11:00:06 PM com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/usr/local/jboss-4.2.2/server/default/./deploy/jboss-portal.sar/portal-identity.sar/portal-identity.war/WEB-INF/lib2/portal-faces-lib.jar!/META-INF/portal.taglib.xml
23:00:06,670 ERROR [STDERR] Aug 7, 2008 11:00:06 PM com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/usr/local/jboss-4.2.2/server/default/./deploy/jboss-portal.sar/portal-identity.sar/portal-identity.war/WEB-INF/lib2/jsf-facelets.jar!/META-INF/jstl-core.taglib.xml
22:59:52,604 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@1bdf67<rs=com.mysql.jdbc.ResultSet@12ccf27>
22:59:52,991 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@12f6e99<rs=com.mysql.jdbc.ResultSet@97bfee>
22:59:52,991 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@10613ee<rs=com.mysql.jdbc.ResultSet@1da4824>
22:59:52,991 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@6a420<rs=com.mysql.jdbc.ResultSet@165d61a>
23:00:06,627 ERROR [STDERR] Aug 7, 2008 11:00:06 PM com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/usr/local/jboss-4.2.2/server/default/./deploy/jboss-portal.sar/portal-identity.sar/portal-identity.war/WEB-INF/lib2/jsf-facelets.jar!/META-INF/jsf-html.taglib.xml
23:00:07,968 ERROR [MyfacesConfig] Both MyFaces and the RI are on your classpath. Please make sure to use only one of the two JSF-implementations.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4169450#4169450
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4169450
17 years, 11 months
[JBossWS] - Slow Performance (configuration issue?)
by bhmt
Hey all,
We did a performance test to compare Axis2 and JBoss WS implementatioins with a simple string echo service.
| @WebService
| @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
| public interface EchoService
| {
| @WebMethod
| public String echo(String s);
| }
|
| @Local
| public interface EchoServiceLocal extends EchoService {}
|
| @Remote
| public interface EchoServiceRemote extends EchoService {}
|
| @Stateless
| @WebService(endpointInterface="com.echo.EchoService")
| @WebContext(contextRoot="/echosvc")
| public class EchoServiceBean implements EchoServiceRemote, EchoServiceLocal
| {
| @Override
| public String echo(String s) { return s; }
| }
|
Test1
-----
Client: JBoss 4.2.3.GA client
Server: JBoss 4.2.3.GA
Throughput: 50 requests/second
Test2
-----
Client: JBoss 4.2.3.GA client
Server: JBoss 4.2.3.GA + Axis2 WAR (v1.4)
Throughput: 200 requests/second
Test3
-----
Client: Axis2 (v1.4) client (using ADB)
Server: JBoss 4.2.3.GA + Axis2 (using ADB)
Throughput: 400 requests/second
Test4
-----
Client: JBoss 4.2.3.GA client
Server: Tomcat (v6) + Axis2 WAR (v1.4)
Throughput: 400 requests/second
All tests run 10000 request in single thread on same computer running both client and server.
Java version: 1.6.0_06,Sun Microsystems Inc.
It seems the jbossws-3.0.1-native-2.0.4.GA (this is the default one in JBoss 4.2.3.GA) is the bottleneck.
Tried jbossws-native-3.0.2.GA (replaced jbossws-3.0.1-native-2.0.4.GA) in the same JBossAS, got same result.
Is there any configuration for JBossWS that is limiting performance?
Thanks for your input!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4169442#4169442
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4169442
17 years, 11 months