Re: [xwiki-users] Problem with getting Xwiki to work with Oracle10g
Here what we did is that we installed Xwiki from the pack jetty/HSQL. Once it work, we modified the hibernate configuration file to connect to Oracle DB. Here is our config file (if it helps ...) : <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <property name="show_sql">false</property> <property name="use_outer_join">true</property> <property name="dbcp.defaultAutoCommit">false</property> <property name="dbcp.maxActive">50</property> <property name="dbcp.maxIdle">5</property> <property name="dbcp.maxWait">30000</property> <property name="dbcp.whenExhaustedAction">1</property> <property name="dbcp.ps.whenExhaustedAction">1</property> <property name="dbcp.ps.maxActive">20</property> <property name="dbcp.ps.maxWait">120000</property> <property name="dbcp.ps.maxIdle">20</property> <property name="connection.url">jdbc:oracle:thin:@IP.IP.IP.IP:1521:od46</property> <property name="connection.username">xwiki</property> <property name="connection.password">*********</property> <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property> <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property> <property name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property> <property name="connection.pool_size">2</property> <property name="statement_cache.size">2</property> <property name="hibernate.connection.SetBigStringTryClob">true</property> <property name="hibernate.jdbc.batch_size">0</property> <mapping resource="xwiki.oracle.hbm.xml"/> <mapping resource="feeds.oracle.hbm.xml"/> </session-factory> </hibernate-configuration>
-----Message d'origine----- De : [email protected] [mailto:[email protected]] De la part de Oskar Marek Rzepinski Envoyé : mardi 19 janvier 2010 08:13 À : XWiki Users Objet : Re: [xwiki-users] Problem with getting Xwiki to work with Oracle10g
Yes, I forgot to mention it, we copied it from the oracle folder, we copied this files:
ojdbc14.jar orai18n.jar
And we also tried it with ojdbc5.jar
It getting us really crazy on this.
2010/1/19 PERINAUD Christophe <[email protected]>
Hi,
Maybe stupid but did you install Oracle JDBC drivers in the WEB-INF/lib xwiki's folder ?
Christophe Périnaud Windows Server 2003 SP2 in a VMWare instance Oracle 10g Java 1.6.0_12 Xwiki 2.0.3 from the pack Jetty/HSQL
-----Message d'origine----- De : [email protected] [mailto:[email protected]] De la part de Oskar Marek Rzepinski Envoyé : mardi 19 janvier 2010 07:58 À : [email protected] Objet : [xwiki-users] Problem with getting Xwiki to work with Oracle10g
Hello everybody,
we just stuck on installing xwiki on our devserver. We tried almost 10 times to get it work by ourselves but I didn't work. We still want to get it working. Here are the steps we did already: 1. we created a user xwiki on our DB server with the instructions from the official site 2. then we deployed xwiki on our server with the geronimo console 3. we made some changes to the hibernate configuration file, as you can see: <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration> <session-factory>
<!-- Please refer to the installation guide on
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Installation for
configuring your database. You'll need to do 2 things: 1) Copy your database driver JAR in WEB-INF/lib or in some shared lib directory 2) Uncomment the properties below for your specific DB (and comment the default database configuration if it doesn't match your DB) -->
<!-- Generic parameters common to all Databases -->
<property name="show_sql">false</ property> <property name="use_outer_join">true</property>
<property name="dbcp.defaultAutoCommit">false</property> <property name="dbcp.maxActive">50</property> <property name="dbcp.maxIdle">5</property> <property name="dbcp.maxWait">30000</property> <property name="dbcp.whenExhaustedAction">1</property> <property name="dbcp.ps.whenExhaustedAction">1</property> <property name="dbcp.ps.maxActive">20</property> <property name="dbcp.ps.maxWait">120000</property> <property name="dbcp.ps.maxIdle">20</property> <!-- Without it, some queries fail in MS SQL. XWiki doesn't need scrollable result sets, anyway. --> <property name="jdbc.use_scrollable_resultset">false</property>
<!-- Oracle configuration. Uncomment if you want to use Oracle and comment out other database configurations. Note: the 2 properties named "hibernate.connection.SetBigStringTryClob" and "hibernate.jdbc.batch_size". They are required to tell Oracle to allow CLOBs larger than 32K. --> <property name="connection.url">jdbc:oracle:thin:@10.233.106.132:1521 :devORA</property> <property name="connection.username">xwiki</property> <property name="connection.password">xwiki</property> <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver </property> <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property> <property name="connection.provider_class">com.xpn.xwiki.store.DBCPConne ctionProvider</property> <property name="connection.pool_size">2</property> <property name="statement_cache.size">2</property> <property name="hibernate.connection.SetBigStringTryClob">true</property> <property name="hibernate.jdbc.batch_size">0</property> <mapping resource="xwiki.oracle.hbm.xml"/> <mapping resource="feeds.oracle.hbm.xml"/> <mapping resource="activitystream.hbm.xml"/>
<property name="hibernate.query.factory_class">org.hibernate.hql.classic .ClassicQueryTranslatorFactory</property>
</session-factory> </hibernate-configuration>
4. We still get this error. We can simply connect to the xwiki users on the solaris console with sqlplus, but we cannot get it work. The user for the xwiki has all privileges to work the database. We cannot understand what goes wrong. Is there a simple how to how to really xwiki working on oracle 10g? Thank you very much.
HTTP Status 500 -
_____
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio nManager from param xwiki.store.migration.manager.class Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: invalid configuration
org.apache.struts.action.RequestProcessor.processException(Req uestProcessor.java:535)
org.apache.struts.action.RequestProcessor.processActionPerform (RequestProcessor.java:433)
org.apache.struts.action.RequestProcessor.process(RequestProce ssor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.j ava:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( ConversionFilter.java:152)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi lter.java:68)
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq uestRestorerFilter.java:295)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara cterEncodingFilter.java:112)
root cause
com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio nManager from param xwiki.store.migration.manager.class Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: invalid configuration com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:341) com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115)
org.apache.struts.action.RequestProcessor.processActionPerform (RequestProcessor.java:431)
org.apache.struts.action.RequestProcessor.process(RequestProce ssor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.j ava:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( ConversionFilter.java:152)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi lter.java:68)
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq uestRestorerFilter.java:295)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara cterEncodingFilter.java:112)
note The full stack trace of the root cause is available
in the Apache
Tomcat/6.0.18 logs.
_____
Apache Tomcat/6.0.18
sincerely Oskar _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-------------------------------------------------------------- ------------------
This e-mail is intended only for the addressee named above.
It does not
bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1 _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-------------------------------------------------------------------------------- This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies. While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection. KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1
XWiki is built differently for the war installation than the jetty/HSQL pack I think If you download the war file and install that way it will work. Caleb PERINAUD Christophe wrote:
Here what we did is that we installed Xwiki from the pack jetty/HSQL. Once it work, we modified the hibernate configuration file to connect to Oracle DB.
Here is our config file (if it helps ...) : <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <property name="show_sql">false</property> <property name="use_outer_join">true</property> <property name="dbcp.defaultAutoCommit">false</property> <property name="dbcp.maxActive">50</property> <property name="dbcp.maxIdle">5</property> <property name="dbcp.maxWait">30000</property> <property name="dbcp.whenExhaustedAction">1</property> <property name="dbcp.ps.whenExhaustedAction">1</property> <property name="dbcp.ps.maxActive">20</property> <property name="dbcp.ps.maxWait">120000</property> <property name="dbcp.ps.maxIdle">20</property> <property name="connection.url">jdbc:oracle:thin:@IP.IP.IP.IP:1521:od46</property> <property name="connection.username">xwiki</property> <property name="connection.password">*********</property> <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property> <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property> <property name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property> <property name="connection.pool_size">2</property> <property name="statement_cache.size">2</property> <property name="hibernate.connection.SetBigStringTryClob">true</property> <property name="hibernate.jdbc.batch_size">0</property> <mapping resource="xwiki.oracle.hbm.xml"/> <mapping resource="feeds.oracle.hbm.xml"/> </session-factory> </hibernate-configuration>
-----Message d'origine----- De : [email protected] [mailto:[email protected]] De la part de Oskar Marek Rzepinski Envoyé : mardi 19 janvier 2010 08:13 À : XWiki Users Objet : Re: [xwiki-users] Problem with getting Xwiki to work with Oracle10g
Yes, I forgot to mention it, we copied it from the oracle folder, we copied this files:
ojdbc14.jar orai18n.jar
And we also tried it with ojdbc5.jar
It getting us really crazy on this.
2010/1/19 PERINAUD Christophe <[email protected]>
Hi,
Maybe stupid but did you install Oracle JDBC drivers in the WEB-INF/lib xwiki's folder ?
Christophe Périnaud Windows Server 2003 SP2 in a VMWare instance Oracle 10g Java 1.6.0_12 Xwiki 2.0.3 from the pack Jetty/HSQL
-----Message d'origine----- De : [email protected] [mailto:[email protected]] De la part de Oskar Marek Rzepinski Envoyé : mardi 19 janvier 2010 07:58 À : [email protected] Objet : [xwiki-users] Problem with getting Xwiki to work with Oracle10g
Hello everybody,
we just stuck on installing xwiki on our devserver. We tried almost 10 times to get it work by ourselves but I didn't work. We still want to get it working. Here are the steps we did already: 1. we created a user xwiki on our DB server with the instructions from the official site 2. then we deployed xwiki on our server with the geronimo console 3. we made some changes to the hibernate configuration file, as you can see: <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration> <session-factory>
<!-- Please refer to the installation guide on
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Installation for
configuring your database. You'll need to do 2 things: 1) Copy your database driver JAR in WEB-INF/lib or in some shared lib directory 2) Uncomment the properties below for your specific DB (and comment the default database configuration if it doesn't match your DB) -->
<!-- Generic parameters common to all Databases -->
<property name="show_sql">false</ property> <property name="use_outer_join">true</property>
<property name="dbcp.defaultAutoCommit">false</property> <property name="dbcp.maxActive">50</property> <property name="dbcp.maxIdle">5</property> <property name="dbcp.maxWait">30000</property> <property name="dbcp.whenExhaustedAction">1</property> <property name="dbcp.ps.whenExhaustedAction">1</property> <property name="dbcp.ps.maxActive">20</property> <property name="dbcp.ps.maxWait">120000</property> <property name="dbcp.ps.maxIdle">20</property> <!-- Without it, some queries fail in MS SQL. XWiki doesn't need scrollable result sets, anyway. --> <property name="jdbc.use_scrollable_resultset">false</property>
<!-- Oracle configuration. Uncomment if you want to use Oracle and comment out other database configurations. Note: the 2 properties named "hibernate.connection.SetBigStringTryClob" and "hibernate.jdbc.batch_size". They are required to tell Oracle to allow CLOBs larger than 32K. --> <property name="connection.url">jdbc:oracle:thin:@10.233.106.132:1521 :devORA</property> <property name="connection.username">xwiki</property> <property name="connection.password">xwiki</property> <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver </property> <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property> <property name="connection.provider_class">com.xpn.xwiki.store.DBCPConne ctionProvider</property> <property name="connection.pool_size">2</property> <property name="statement_cache.size">2</property> <property name="hibernate.connection.SetBigStringTryClob">true</property> <property name="hibernate.jdbc.batch_size">0</property> <mapping resource="xwiki.oracle.hbm.xml"/> <mapping resource="feeds.oracle.hbm.xml"/> <mapping resource="activitystream.hbm.xml"/>
<property name="hibernate.query.factory_class">org.hibernate.hql.classic .ClassicQueryTranslatorFactory</property>
</session-factory> </hibernate-configuration>
4. We still get this error. We can simply connect to the xwiki users on the solaris console with sqlplus, but we cannot get it work. The user for the xwiki has all privileges to work the database. We cannot understand what goes wrong. Is there a simple how to how to really xwiki working on oracle 10g? Thank you very much.
HTTP Status 500 -
_____
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio nManager from param xwiki.store.migration.manager.class Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: invalid configuration
org.apache.struts.action.RequestProcessor.processException(Req uestProcessor.java:535)
org.apache.struts.action.RequestProcessor.processActionPerform (RequestProcessor.java:433)
org.apache.struts.action.RequestProcessor.process(RequestProce ssor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.j ava:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( ConversionFilter.java:152)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi lter.java:68)
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq uestRestorerFilter.java:295)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara cterEncodingFilter.java:112)
root cause
com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio nManager from param xwiki.store.migration.manager.class Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: invalid configuration com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:341) com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115)
org.apache.struts.action.RequestProcessor.processActionPerform (RequestProcessor.java:431)
org.apache.struts.action.RequestProcessor.process(RequestProce ssor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.j ava:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( ConversionFilter.java:152)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi lter.java:68)
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq uestRestorerFilter.java:295)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara cterEncodingFilter.java:112)
note The full stack trace of the root cause is available
in the Apache
Tomcat/6.0.18 logs.
_____
Apache Tomcat/6.0.18
sincerely Oskar _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-------------------------------------------------------------- ------------------
This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1 _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
--------------------------------------------------------------------------------
This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1 _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
We have now some meetings, after them we will try once again with the jetty pack. @Caleb James DeLisle The steps I mentioned already we have done with the war file. We deployed it with the geronimo console. I will get back to this after we have tried the jetty pack and than I will answer and report if we were successful or not. 2010/1/19 Caleb James DeLisle <[email protected]>
XWiki is built differently for the war installation than the jetty/HSQL pack I think If you download the war file and install that way it will work.
Caleb
PERINAUD Christophe wrote:
Here what we did is that we installed Xwiki from the pack jetty/HSQL. Once it work, we modified the hibernate configuration file to connect to Oracle DB.
Here is our config file (if it helps ...) : <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" " http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <property name="show_sql">false</property> <property name="use_outer_join">true</property> <property name="dbcp.defaultAutoCommit">false</property> <property name="dbcp.maxActive">50</property> <property name="dbcp.maxIdle">5</property> <property name="dbcp.maxWait">30000</property> <property name="dbcp.whenExhaustedAction">1</property> <property name="dbcp.ps.whenExhaustedAction">1</property> <property name="dbcp.ps.maxActive">20</property> <property name="dbcp.ps.maxWait">120000</property> <property name="dbcp.ps.maxIdle">20</property> <property name="connection.url">jdbc:oracle:thin:@IP.IP.IP.IP :1521:od46</property> <property name="connection.username">xwiki</property> <property name="connection.password">*********</property> <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property> <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property> <property name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property> <property name="connection.pool_size">2</property> <property name="statement_cache.size">2</property> <property name="hibernate.connection.SetBigStringTryClob">true</property> <property name="hibernate.jdbc.batch_size">0</property> <mapping resource="xwiki.oracle.hbm.xml"/> <mapping resource="feeds.oracle.hbm.xml"/> </session-factory> </hibernate-configuration>
-----Message d'origine----- De : [email protected] [mailto:[email protected]] De la part de Oskar Marek Rzepinski Envoyé : mardi 19 janvier 2010 08:13 À : XWiki Users Objet : Re: [xwiki-users] Problem with getting Xwiki to work with Oracle10g
Yes, I forgot to mention it, we copied it from the oracle folder, we copied this files:
ojdbc14.jar orai18n.jar
And we also tried it with ojdbc5.jar
It getting us really crazy on this.
2010/1/19 PERINAUD Christophe <[email protected]>
Hi,
Maybe stupid but did you install Oracle JDBC drivers in the WEB-INF/lib xwiki's folder ?
Christophe Périnaud Windows Server 2003 SP2 in a VMWare instance Oracle 10g Java 1.6.0_12 Xwiki 2.0.3 from the pack Jetty/HSQL
-----Message d'origine----- De : [email protected] [mailto:[email protected]] De la part de Oskar Marek Rzepinski Envoyé : mardi 19 janvier 2010 07:58 À : [email protected] Objet : [xwiki-users] Problem with getting Xwiki to work with Oracle10g
Hello everybody,
we just stuck on installing xwiki on our devserver. We tried almost 10 times to get it work by ourselves but I didn't work. We still want to get it working. Here are the steps we did already: 1. we created a user xwiki on our DB server with the instructions from the official site 2. then we deployed xwiki on our server with the geronimo console 3. we made some changes to the hibernate configuration file, as you can see: <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration> <session-factory>
<!-- Please refer to the installation guide on
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Installation for
configuring your database. You'll need to do 2 things: 1) Copy your database driver JAR in WEB-INF/lib or in some shared lib directory 2) Uncomment the properties below for your specific DB (and comment the default database configuration if it doesn't match your DB) -->
<!-- Generic parameters common to all Databases -->
<property name="show_sql">false</ property> <property name="use_outer_join">true</property>
<property name="dbcp.defaultAutoCommit">false</property> <property name="dbcp.maxActive">50</property> <property name="dbcp.maxIdle">5</property> <property name="dbcp.maxWait">30000</property> <property name="dbcp.whenExhaustedAction">1</property> <property name="dbcp.ps.whenExhaustedAction">1</property> <property name="dbcp.ps.maxActive">20</property> <property name="dbcp.ps.maxWait">120000</property> <property name="dbcp.ps.maxIdle">20</property> <!-- Without it, some queries fail in MS SQL. XWiki doesn't need scrollable result sets, anyway. --> <property name="jdbc.use_scrollable_resultset">false</property>
<!-- Oracle configuration. Uncomment if you want to use Oracle and comment out other database configurations. Note: the 2 properties named "hibernate.connection.SetBigStringTryClob" and "hibernate.jdbc.batch_size". They are required to tell Oracle to allow CLOBs larger than 32K. --> <property name="connection.url">jdbc:oracle:thin:@10.233.106.132:1521 :devORA</property> <property name="connection.username">xwiki</property> <property name="connection.password">xwiki</property> <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver </property> <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property> <property name="connection.provider_class">com.xpn.xwiki.store.DBCPConne ctionProvider</property> <property name="connection.pool_size">2</property> <property name="statement_cache.size">2</property> <property name="hibernate.connection.SetBigStringTryClob">true</property> <property name="hibernate.jdbc.batch_size">0</property> <mapping resource="xwiki.oracle.hbm.xml"/> <mapping resource="feeds.oracle.hbm.xml"/> <mapping resource="activitystream.hbm.xml"/>
<property name="hibernate.query.factory_class">org.hibernate.hql.classic .ClassicQueryTranslatorFactory</property>
</session-factory> </hibernate-configuration>
4. We still get this error. We can simply connect to the xwiki users on the solaris console with sqlplus, but we cannot get it work. The user for the xwiki has all privileges to work the database. We cannot understand what goes wrong. Is there a simple how to how to really xwiki working on oracle 10g? Thank you very much.
HTTP Status 500 -
_____
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio nManager from param xwiki.store.migration.manager.class Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: invalid configuration
org.apache.struts.action.RequestProcessor.processException(Req uestProcessor.java:535)
org.apache.struts.action.RequestProcessor.processActionPerform (RequestProcessor.java:433)
org.apache.struts.action.RequestProcessor.process(RequestProce ssor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.j ava:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( ConversionFilter.java:152)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi lter.java:68)
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq uestRestorerFilter.java:295)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara cterEncodingFilter.java:112)
root cause
com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio nManager from param xwiki.store.migration.manager.class Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: invalid configuration com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:341) com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115)
org.apache.struts.action.RequestProcessor.processActionPerform (RequestProcessor.java:431)
org.apache.struts.action.RequestProcessor.process(RequestProce ssor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.j ava:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( ConversionFilter.java:152)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi lter.java:68)
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq uestRestorerFilter.java:295)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara cterEncodingFilter.java:112)
note The full stack trace of the root cause is available
in the Apache
Tomcat/6.0.18 logs.
_____
Apache Tomcat/6.0.18
sincerely Oskar _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-------------------------------------------------------------- ------------------
This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1 _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
--------------------------------------------------------------------------------
This e-mail is intended only for the addressee named above. It does not
bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail
and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg,
R.C.S. Luxembourg B 6395, T (352) 47 97 1
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
So, we started our installation once again and it still does not work. Step-by-step: 1. We created a user xwiki on oracle with all privileges. We use oracle 10.2.0.40 2. We deployed the war file with the geronimo console. We use tomcat 6 javaee5 2.1.4 3. We than changed the configuration file, as already mentioned 4. We copied the ojdbc5.jar from oracle 11.1.0.7 and tried it also with ojdbc14.jar. 5. Then we restarted geronimo and started the xwiki container We use the oracle installtion and the geronimo server on a sun solaris server and solaris as the operating system. We still don't get the xwiki installed, and don't understand why. Thank you all for the pleasent help. 2010/1/19 Oskar Marek Rzepinski <[email protected]>
We have now some meetings, after them we will try once again with the jetty pack.
@Caleb James DeLisle The steps I mentioned already we have done with the war file. We deployed it with the geronimo console.
I will get back to this after we have tried the jetty pack and than I will answer and report if we were successful or not.
2010/1/19 Caleb James DeLisle <[email protected]>
XWiki is built differently for the war installation than the jetty/HSQL
pack I think If you download the war file and install that way it will work.
Caleb
PERINAUD Christophe wrote:
Here what we did is that we installed Xwiki from the pack jetty/HSQL. Once it work, we modified the hibernate configuration file to connect to Oracle DB.
Here is our config file (if it helps ...) : <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" " http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <property name="show_sql">false</property> <property name="use_outer_join">true</property> <property name="dbcp.defaultAutoCommit">false</property> <property name="dbcp.maxActive">50</property> <property name="dbcp.maxIdle">5</property> <property name="dbcp.maxWait">30000</property> <property name="dbcp.whenExhaustedAction">1</property> <property name="dbcp.ps.whenExhaustedAction">1</property> <property name="dbcp.ps.maxActive">20</property> <property name="dbcp.ps.maxWait">120000</property> <property name="dbcp.ps.maxIdle">20</property> <property name="connection.url">jdbc:oracle:thin:@IP.IP.IP.IP :1521:od46</property> <property name="connection.username">xwiki</property> <property name="connection.password">*********</property> <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property> <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property> <property name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property> <property name="connection.pool_size">2</property> <property name="statement_cache.size">2</property> <property name="hibernate.connection.SetBigStringTryClob">true</property> <property name="hibernate.jdbc.batch_size">0</property> <mapping resource="xwiki.oracle.hbm.xml"/> <mapping resource="feeds.oracle.hbm.xml"/> </session-factory> </hibernate-configuration>
-----Message d'origine----- De : [email protected] [mailto:[email protected]] De la part de Oskar Marek Rzepinski Envoyé : mardi 19 janvier 2010 08:13 À : XWiki Users Objet : Re: [xwiki-users] Problem with getting Xwiki to work with Oracle10g
Yes, I forgot to mention it, we copied it from the oracle folder, we copied this files:
ojdbc14.jar orai18n.jar
And we also tried it with ojdbc5.jar
It getting us really crazy on this.
2010/1/19 PERINAUD Christophe <[email protected]>
Hi,
Maybe stupid but did you install Oracle JDBC drivers in the WEB-INF/lib xwiki's folder ?
Christophe Périnaud Windows Server 2003 SP2 in a VMWare instance Oracle 10g Java 1.6.0_12 Xwiki 2.0.3 from the pack Jetty/HSQL
-----Message d'origine----- De : [email protected] [mailto:[email protected]] De la part de Oskar Marek Rzepinski Envoyé : mardi 19 janvier 2010 07:58 À : [email protected] Objet : [xwiki-users] Problem with getting Xwiki to work with Oracle10g
Hello everybody,
we just stuck on installing xwiki on our devserver. We tried almost 10 times to get it work by ourselves but I didn't work. We still want to get it working. Here are the steps we did already: 1. we created a user xwiki on our DB server with the instructions from the official site 2. then we deployed xwiki on our server with the geronimo console 3. we made some changes to the hibernate configuration file, as you can see: <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration> <session-factory>
<!-- Please refer to the installation guide on
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Installation for
configuring your database. You'll need to do 2 things: 1) Copy your database driver JAR in WEB-INF/lib or in some shared lib directory 2) Uncomment the properties below for your specific DB (and comment the default database configuration if it doesn't match your DB) -->
<!-- Generic parameters common to all Databases -->
<property name="show_sql">false</ property> <property name="use_outer_join">true</property>
<property name="dbcp.defaultAutoCommit">false</property> <property name="dbcp.maxActive">50</property> <property name="dbcp.maxIdle">5</property> <property name="dbcp.maxWait">30000</property> <property name="dbcp.whenExhaustedAction">1</property> <property name="dbcp.ps.whenExhaustedAction">1</property> <property name="dbcp.ps.maxActive">20</property> <property name="dbcp.ps.maxWait">120000</property> <property name="dbcp.ps.maxIdle">20</property> <!-- Without it, some queries fail in MS SQL. XWiki doesn't need scrollable result sets, anyway. --> <property name="jdbc.use_scrollable_resultset">false</property>
<!-- Oracle configuration. Uncomment if you want to use Oracle and comment out other database configurations. Note: the 2 properties named "hibernate.connection.SetBigStringTryClob" and "hibernate.jdbc.batch_size". They are required to tell Oracle to allow CLOBs larger than 32K. --> <property name="connection.url">jdbc:oracle:thin:@10.233.106.132:1521 :devORA</property> <property name="connection.username">xwiki</property> <property name="connection.password">xwiki</property> <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver </property> <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property> <property name="connection.provider_class">com.xpn.xwiki.store.DBCPConne ctionProvider</property> <property name="connection.pool_size">2</property> <property name="statement_cache.size">2</property> <property name="hibernate.connection.SetBigStringTryClob">true</property> <property name="hibernate.jdbc.batch_size">0</property> <mapping resource="xwiki.oracle.hbm.xml"/> <mapping resource="feeds.oracle.hbm.xml"/> <mapping resource="activitystream.hbm.xml"/>
<property name="hibernate.query.factory_class">org.hibernate.hql.classic .ClassicQueryTranslatorFactory</property>
</session-factory> </hibernate-configuration>
4. We still get this error. We can simply connect to the xwiki users on the solaris console with sqlplus, but we cannot get it work. The user for the xwiki has all privileges to work the database. We cannot understand what goes wrong. Is there a simple how to how to really xwiki working on oracle 10g? Thank you very much.
HTTP Status 500 -
_____
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio nManager from param xwiki.store.migration.manager.class Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: invalid configuration
org.apache.struts.action.RequestProcessor.processException(Req uestProcessor.java:535)
org.apache.struts.action.RequestProcessor.processActionPerform (RequestProcessor.java:433)
org.apache.struts.action.RequestProcessor.process(RequestProce ssor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.j ava:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( ConversionFilter.java:152)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi lter.java:68)
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq uestRestorerFilter.java:295)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara cterEncodingFilter.java:112)
root cause
com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio nManager from param xwiki.store.migration.manager.class Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: invalid configuration com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:341) com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115)
org.apache.struts.action.RequestProcessor.processActionPerform (RequestProcessor.java:431)
org.apache.struts.action.RequestProcessor.process(RequestProce ssor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.j ava:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( ConversionFilter.java:152)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi lter.java:68)
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq uestRestorerFilter.java:295)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara cterEncodingFilter.java:112)
note The full stack trace of the root cause is available
in the Apache
Tomcat/6.0.18 logs.
_____
Apache Tomcat/6.0.18
sincerely Oskar _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-------------------------------------------------------------- ------------------
This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1 _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
--------------------------------------------------------------------------------
This e-mail is intended only for the addressee named above. It does not
bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail
and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg,
R.C.S. Luxembourg B 6395, T (352) 47 97 1
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
unfortunately I am a little out of my league, my installation uses postgres and jetty but I would suggest you create a database called xwiki and make the user xwiki the owner of that database, It's possible that it is getting hung up in the create database part and doing it manually would make it work, hard to tell from the error log. Caleb Oskar Marek Rzepinski wrote:
So, we started our installation once again and it still does not work. Step-by-step: 1. We created a user xwiki on oracle with all privileges. We use oracle 10.2.0.40 2. We deployed the war file with the geronimo console. We use tomcat 6 javaee5 2.1.4 3. We than changed the configuration file, as already mentioned 4. We copied the ojdbc5.jar from oracle 11.1.0.7 and tried it also with ojdbc14.jar. 5. Then we restarted geronimo and started the xwiki container
We use the oracle installtion and the geronimo server on a sun solaris server and solaris as the operating system. We still don't get the xwiki installed, and don't understand why.
Thank you all for the pleasent help.
2010/1/19 Oskar Marek Rzepinski <[email protected]>
We have now some meetings, after them we will try once again with the jetty pack.
@Caleb James DeLisle The steps I mentioned already we have done with the war file. We deployed it with the geronimo console.
I will get back to this after we have tried the jetty pack and than I will answer and report if we were successful or not.
2010/1/19 Caleb James DeLisle <[email protected]>
XWiki is built differently for the war installation than the jetty/HSQL
pack I think If you download the war file and install that way it will work.
Caleb
PERINAUD Christophe wrote:
Here what we did is that we installed Xwiki from the pack jetty/HSQL. Once it work, we modified the hibernate configuration file to connect to Oracle DB. Here is our config file (if it helps ...) : <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" " http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <property name="show_sql">false</property> <property name="use_outer_join">true</property> <property name="dbcp.defaultAutoCommit">false</property> <property name="dbcp.maxActive">50</property> <property name="dbcp.maxIdle">5</property> <property name="dbcp.maxWait">30000</property> <property name="dbcp.whenExhaustedAction">1</property> <property name="dbcp.ps.whenExhaustedAction">1</property> <property name="dbcp.ps.maxActive">20</property> <property name="dbcp.ps.maxWait">120000</property> <property name="dbcp.ps.maxIdle">20</property> <property name="connection.url">jdbc:oracle:thin:@IP.IP.IP.IP :1521:od46</property> <property name="connection.username">xwiki</property> <property name="connection.password">*********</property> <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property> <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property> <property name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property> <property name="connection.pool_size">2</property> <property name="statement_cache.size">2</property> <property name="hibernate.connection.SetBigStringTryClob">true</property> <property name="hibernate.jdbc.batch_size">0</property> <mapping resource="xwiki.oracle.hbm.xml"/> <mapping resource="feeds.oracle.hbm.xml"/> </session-factory> </hibernate-configuration>
-----Message d'origine----- De : [email protected] [mailto:[email protected]] De la part de Oskar Marek Rzepinski Envoyé : mardi 19 janvier 2010 08:13 À : XWiki Users Objet : Re: [xwiki-users] Problem with getting Xwiki to work with Oracle10g
Yes, I forgot to mention it, we copied it from the oracle folder, we copied this files:
ojdbc14.jar orai18n.jar
And we also tried it with ojdbc5.jar
It getting us really crazy on this.
2010/1/19 PERINAUD Christophe <[email protected]>
Hi,
Maybe stupid but did you install Oracle JDBC drivers in the WEB-INF/lib xwiki's folder ?
Christophe Périnaud Windows Server 2003 SP2 in a VMWare instance Oracle 10g Java 1.6.0_12 Xwiki 2.0.3 from the pack Jetty/HSQL
> -----Message d'origine----- > De : [email protected] [mailto:[email protected]] > De la part de Oskar Marek Rzepinski > Envoyé : mardi 19 janvier 2010 07:58 > À : [email protected] > Objet : [xwiki-users] Problem with getting Xwiki to work with > Oracle10g > > Hello everybody, > > > we just stuck on installing xwiki on our devserver. We tried > almost 10 times > to get it work by ourselves but I didn't work. We still want to get it > working. Here are the steps we did already: > 1. we created a user xwiki on our DB server with the > instructions from the > official site > 2. then we deployed xwiki on our server with the geronimo console > 3. we made some changes to the hibernate configuration file, > as you can see: > <?xml version='1.0' encoding='utf-8'?> > <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate > Configuration DTD//EN" > "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> > <hibernate-configuration> > <session-factory> > > <!-- Please refer to the installation guide on > > http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Installation for > configuring your > database. You'll need to do 2 things: > 1) Copy your database driver JAR in WEB-INF/lib or in > some shared > lib directory > 2) Uncomment the properties below for your specific > DB (and comment > the default > database configuration if it doesn't match your DB) > --> > > <!-- Generic parameters common to all Databases --> > > <property name="show_sql">false</ > property> > <property name="use_outer_join">true</property> > > <property name="dbcp.defaultAutoCommit">false</property> > <property name="dbcp.maxActive">50</property> > <property name="dbcp.maxIdle">5</property> > <property name="dbcp.maxWait">30000</property> > <property name="dbcp.whenExhaustedAction">1</property> > <property name="dbcp.ps.whenExhaustedAction">1</property> > <property name="dbcp.ps.maxActive">20</property> > <property name="dbcp.ps.maxWait">120000</property> > <property name="dbcp.ps.maxIdle">20</property> > <!-- Without it, some queries fail in MS SQL. XWiki doesn't need > scrollable result sets, anyway. --> > <property name="jdbc.use_scrollable_resultset">false</property> > > <!-- Oracle configuration. > Uncomment if you want to use Oracle and comment out > other database > configurations. > Note: the 2 properties named > "hibernate.connection.SetBigStringTryClob" and > "hibernate.jdbc.batch_size". They are required to > tell Oracle to > allow CLOBs larger than > 32K. > --> > <property > name="connection.url">jdbc:oracle:thin:@10.233.106.132:1521 > :devORA</property> > <property name="connection.username">xwiki</property> > <property name="connection.password">xwiki</property> > <property > name="connection.driver_class">oracle.jdbc.driver.OracleDriver > </property> > <property > name="dialect">org.hibernate.dialect.Oracle10gDialect</property> > <property > name="connection.provider_class">com.xpn.xwiki.store.DBCPConne > ctionProvider</property> > <property name="connection.pool_size">2</property> > <property name="statement_cache.size">2</property> > <property > name="hibernate.connection.SetBigStringTryClob">true</property> > <property name="hibernate.jdbc.batch_size">0</property> > <mapping resource="xwiki.oracle.hbm.xml"/> > <mapping resource="feeds.oracle.hbm.xml"/> > <mapping resource="activitystream.hbm.xml"/> > > <property > name="hibernate.query.factory_class">org.hibernate.hql.classic > .ClassicQueryTranslatorFactory</property> > > </session-factory> > </hibernate-configuration> > > 4. We still get this error. We can simply connect to the > xwiki users on the > solaris console with sqlplus, but we cannot get it work. The > user for the > xwiki has all privileges to work the database. We cannot > understand what > goes wrong. Is there a simple how to how to really xwiki > working on oracle > 10g? Thank you very much. > > > > HTTP Status 500 - > > _____ > > > type Exception report > > message > > description The server encountered an internal error () that > prevented it > from fulfilling this request. > > exception > > javax.servlet.ServletException: com.xpn.xwiki.XWikiException: > Error number 3 > in 0: Could not initialize main XWiki context > Wrapped Exception: Error number 3001 in 3: Cannot load class > com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio > nManager from > param xwiki.store.migration.manager.class > Wrapped Exception: Error number 0 in 3: Exception while > hibernate execute > Wrapped Exception: invalid configuration > > > org.apache.struts.action.RequestProcessor.processException(Req > uestProcessor.java:535) > > > org.apache.struts.action.RequestProcessor.processActionPerform > (RequestProcessor.java:433) > > > org.apache.struts.action.RequestProcessor.process(RequestProce > ssor.java:236) > > > org.apache.struts.action.ActionServlet.process(ActionServlet.j > ava:1196) > > org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) javax.servlet.http.HttpServlet.service(HttpServlet.java:693) javax.servlet.http.HttpServlet.service(HttpServlet.java:806) > com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( > ConversionFilter.java:152) > com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) > com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi > lter.java:68) > > > com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq > uestRestorerFilter.java:295) > > > com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara > cterEncodingFilter.java:112) > > root cause > > com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not > initialize main > XWiki context > Wrapped Exception: Error number 3001 in 3: Cannot load class > com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio > nManager from > param xwiki.store.migration.manager.class > Wrapped Exception: Error number 0 in 3: Exception while > hibernate execute > Wrapped Exception: invalid configuration > com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:341) > com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) > com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) > com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) > > > org.apache.struts.action.RequestProcessor.processActionPerform > (RequestProcessor.java:431) > > > org.apache.struts.action.RequestProcessor.process(RequestProce > ssor.java:236) > > > org.apache.struts.action.ActionServlet.process(ActionServlet.j > ava:1196) > > org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) javax.servlet.http.HttpServlet.service(HttpServlet.java:693) javax.servlet.http.HttpServlet.service(HttpServlet.java:806) > com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( > ConversionFilter.java:152) > com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) > com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi > lter.java:68) > > > com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq > uestRestorerFilter.java:295) > > > com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara > cterEncodingFilter.java:112) > > note The full stack trace of the root cause is available in the Apache > Tomcat/6.0.18 logs. > > _____ > > > Apache Tomcat/6.0.18 > > > > > sincerely Oskar > _______________________________________________ > users mailing list > [email protected] > http://lists.xwiki.org/mailman/listinfo/users >
------------------
This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1 _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies. While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection. KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1 _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
first at all, sory for my poor english. Second, could you attach entire stack trace? You should see CAUSED BY clause. Thats you need to see. Third, with no entire stack trace i think that the problem comes from Oracle and you need to fullfilling hibernate.cfg.xml properly with proper connection url. this is my conn url: jdbc:oracle:thin:@ (description=(address_list=(load_balance=on)(address=(protocol=tcp)(host=X.X.X.X)(port=1521))(address=(protocol=tcp)(host=X.X.X.X)(port=1521)))(connect_data=(service_name=myService.name))) hope this helps! Alonso 2010/1/19 Caleb James DeLisle <[email protected]>
unfortunately I am a little out of my league, my installation uses postgres and jetty but I would suggest you create a database called xwiki and make the user xwiki the owner of that database, It's possible that it is getting hung up in the create database part and doing it manually would make it work, hard to tell from the error log.
Caleb
Oskar Marek Rzepinski wrote:
So, we started our installation once again and it still does not work. Step-by-step: 1. We created a user xwiki on oracle with all privileges. We use oracle 10.2.0.40 2. We deployed the war file with the geronimo console. We use tomcat 6 javaee5 2.1.4 3. We than changed the configuration file, as already mentioned 4. We copied the ojdbc5.jar from oracle 11.1.0.7 and tried it also with ojdbc14.jar. 5. Then we restarted geronimo and started the xwiki container
We use the oracle installtion and the geronimo server on a sun solaris server and solaris as the operating system. We still don't get the xwiki installed, and don't understand why.
Thank you all for the pleasent help.
2010/1/19 Oskar Marek Rzepinski <[email protected]>
We have now some meetings, after them we will try once again with the jetty pack.
@Caleb James DeLisle The steps I mentioned already we have done with the war file. We deployed it with the geronimo console.
I will get back to this after we have tried the jetty pack and than I will answer and report if we were successful or not.
2010/1/19 Caleb James DeLisle <[email protected]>
XWiki is built differently for the war installation than the jetty/HSQL
pack I think If you download the war file and install that way it will work.
Caleb
PERINAUD Christophe wrote:
Here what we did is that we installed Xwiki from the pack jetty/HSQL. Once it work, we modified the hibernate configuration file to connect to Oracle DB. Here is our config file (if it helps ...) : <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" " http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <property name="show_sql">false</property> <property name="use_outer_join">true</property> <property name="dbcp.defaultAutoCommit">false</property> <property name="dbcp.maxActive">50</property> <property name="dbcp.maxIdle">5</property> <property name="dbcp.maxWait">30000</property> <property name="dbcp.whenExhaustedAction">1</property> <property name="dbcp.ps.whenExhaustedAction">1</property> <property name="dbcp.ps.maxActive">20</property> <property name="dbcp.ps.maxWait">120000</property> <property name="dbcp.ps.maxIdle">20</property> <property name="connection.url">jdbc:oracle:thin:@IP.IP.IP.IP :1521:od46</property> <property name="connection.username">xwiki</property> <property name="connection.password">*********</property> <property
name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property
name="dialect">org.hibernate.dialect.Oracle10gDialect</property>
<property
name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
<property name="connection.pool_size">2</property> <property name="statement_cache.size">2</property> <property
name="hibernate.connection.SetBigStringTryClob">true</property>
<property name="hibernate.jdbc.batch_size">0</property> <mapping resource="xwiki.oracle.hbm.xml"/> <mapping resource="feeds.oracle.hbm.xml"/> </session-factory> </hibernate-configuration>
-----Message d'origine----- De : [email protected] [mailto:[email protected]] De la part de Oskar Marek Rzepinski Envoyé : mardi 19 janvier 2010 08:13 À : XWiki Users Objet : Re: [xwiki-users] Problem with getting Xwiki to work with Oracle10g
Yes, I forgot to mention it, we copied it from the oracle folder, we copied this files:
ojdbc14.jar orai18n.jar
And we also tried it with ojdbc5.jar
It getting us really crazy on this.
2010/1/19 PERINAUD Christophe <[email protected]>
> Hi, > > Maybe stupid but did you install Oracle JDBC drivers in the WEB-INF/lib > xwiki's folder ? > > Christophe Périnaud > Windows Server 2003 SP2 in a VMWare instance > Oracle 10g > Java 1.6.0_12 > Xwiki 2.0.3 from the pack Jetty/HSQL > > >> -----Message d'origine----- >> De : [email protected] [mailto:[email protected]] >> De la part de Oskar Marek Rzepinski >> Envoyé : mardi 19 janvier 2010 07:58 >> À : [email protected] >> Objet : [xwiki-users] Problem with getting Xwiki to work with >> Oracle10g >> >> Hello everybody, >> >> >> we just stuck on installing xwiki on our devserver. We tried >> almost 10 times >> to get it work by ourselves but I didn't work. We still want to get it >> working. Here are the steps we did already: >> 1. we created a user xwiki on our DB server with the >> instructions from the >> official site >> 2. then we deployed xwiki on our server with the geronimo console >> 3. we made some changes to the hibernate configuration file, >> as you can see: >> <?xml version='1.0' encoding='utf-8'?> >> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate >> Configuration DTD//EN" >> "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> >> <hibernate-configuration> >> <session-factory> >> >> <!-- Please refer to the installation guide on >> >> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Installation for >> configuring your >> database. You'll need to do 2 things: >> 1) Copy your database driver JAR in WEB-INF/lib or in >> some shared >> lib directory >> 2) Uncomment the properties below for your specific >> DB (and comment >> the default >> database configuration if it doesn't match your DB) >> --> >> >> <!-- Generic parameters common to all Databases --> >> >> <property name="show_sql">false</ >> property> >> <property name="use_outer_join">true</property> >> >> <property name="dbcp.defaultAutoCommit">false</property> >> <property name="dbcp.maxActive">50</property> >> <property name="dbcp.maxIdle">5</property> >> <property name="dbcp.maxWait">30000</property> >> <property name="dbcp.whenExhaustedAction">1</property> >> <property name="dbcp.ps.whenExhaustedAction">1</property> >> <property name="dbcp.ps.maxActive">20</property> >> <property name="dbcp.ps.maxWait">120000</property> >> <property name="dbcp.ps.maxIdle">20</property> >> <!-- Without it, some queries fail in MS SQL. XWiki doesn't need >> scrollable result sets, anyway. --> >> <property name="jdbc.use_scrollable_resultset">false</property> >> >> <!-- Oracle configuration. >> Uncomment if you want to use Oracle and comment out >> other database >> configurations. >> Note: the 2 properties named >> "hibernate.connection.SetBigStringTryClob" and >> "hibernate.jdbc.batch_size". They are required to >> tell Oracle to >> allow CLOBs larger than >> 32K. >> --> >> <property >> name="connection.url">jdbc:oracle:thin:@10.233.106.132:1521 >> :devORA</property> >> <property name="connection.username">xwiki</property> >> <property name="connection.password">xwiki</property> >> <property >> name="connection.driver_class">oracle.jdbc.driver.OracleDriver >> </property> >> <property >> name="dialect">org.hibernate.dialect.Oracle10gDialect</property> >> <property >> name="connection.provider_class">com.xpn.xwiki.store.DBCPConne >> ctionProvider</property> >> <property name="connection.pool_size">2</property> >> <property name="statement_cache.size">2</property> >> <property >> name="hibernate.connection.SetBigStringTryClob">true</property> >> <property name="hibernate.jdbc.batch_size">0</property> >> <mapping resource="xwiki.oracle.hbm.xml"/> >> <mapping resource="feeds.oracle.hbm.xml"/> >> <mapping resource="activitystream.hbm.xml"/> >> >> <property >> name="hibernate.query.factory_class">org.hibernate.hql.classic >> .ClassicQueryTranslatorFactory</property> >> >> </session-factory> >> </hibernate-configuration> >> >> 4. We still get this error. We can simply connect to the >> xwiki users on the >> solaris console with sqlplus, but we cannot get it work. The >> user for the >> xwiki has all privileges to work the database. We cannot >> understand what >> goes wrong. Is there a simple how to how to really xwiki >> working on oracle >> 10g? Thank you very much. >> >> >> >> HTTP Status 500 - >> >> _____ >> >> >> type Exception report >> >> message >> >> description The server encountered an internal error () that >> prevented it >> from fulfilling this request. >> >> exception >> >> javax.servlet.ServletException: com.xpn.xwiki.XWikiException: >> Error number 3 >> in 0: Could not initialize main XWiki context >> Wrapped Exception: Error number 3001 in 3: Cannot load class >> com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio >> nManager from >> param xwiki.store.migration.manager.class >> Wrapped Exception: Error number 0 in 3: Exception while >> hibernate execute >> Wrapped Exception: invalid configuration >> >> >> org.apache.struts.action.RequestProcessor.processException(Req >> uestProcessor.java:535) >> >> >> org.apache.struts.action.RequestProcessor.processActionPerform >> (RequestProcessor.java:433) >> >> >> org.apache.struts.action.RequestProcessor.process(RequestProce >> ssor.java:236) >> >> >> org.apache.struts.action.ActionServlet.process(ActionServlet.j >> ava:1196) >> >> org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) javax.servlet.http.HttpServlet.service(HttpServlet.java:693) javax.servlet.http.HttpServlet.service(HttpServlet.java:806) >> com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( >> ConversionFilter.java:152) >> com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) >> com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi >> lter.java:68) >> >> >> com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq >> uestRestorerFilter.java:295) >> >> >> com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara >> cterEncodingFilter.java:112) >> >> root cause >> >> com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not >> initialize main >> XWiki context >> Wrapped Exception: Error number 3001 in 3: Cannot load class >> com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigratio >> nManager from >> param xwiki.store.migration.manager.class >> Wrapped Exception: Error number 0 in 3: Exception while >> hibernate execute >> Wrapped Exception: invalid configuration >> com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:341) >> com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) >> com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) >> com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) >> >> >> org.apache.struts.action.RequestProcessor.processActionPerform >> (RequestProcessor.java:431) >> >> >> org.apache.struts.action.RequestProcessor.process(RequestProce >> ssor.java:236) >> >> >> org.apache.struts.action.ActionServlet.process(ActionServlet.j >> ava:1196) >> >> org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) javax.servlet.http.HttpServlet.service(HttpServlet.java:693) javax.servlet.http.HttpServlet.service(HttpServlet.java:806) >> com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter( >> ConversionFilter.java:152) >> com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) >> com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFi >> lter.java:68) >> >> >> com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq >> uestRestorerFilter.java:295) >> >> >> com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara >> cterEncodingFilter.java:112) >> >> note The full stack trace of the root cause is available in the Apache >> Tomcat/6.0.18 logs. >> >> _____ >> >> >> Apache Tomcat/6.0.18 >> >> >> >> >> sincerely Oskar >> _______________________________________________ >> users mailing list >> [email protected] >> http://lists.xwiki.org/mailman/listinfo/users >> -------------------------------------------------------------- ------------------ > This e-mail is intended only for the addressee named above. It does not > bind the sender, except in the case of an existing written convention with > the addressee. This e-mail may contain material that is confidential and > privileged for the sole use of the intended recipient. Any review, reliance > or distribution by others or forwarding without express permission is > strictly prohibited and may be unlawful. If you are not the intended > recipient, please contact the sender and delete all copies. > > While reasonable precautions have been taken to ensure that this e-mail and > any attachments are free from any computer virus or similar defect, no > liability will be accepted in that respect. Anyone accessing this e-mail > must take their own precautions as to security and virus protection. > > KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, > R.C.S. Luxembourg B 6395, T (352) 47 97 1 > _______________________________________________ > users mailing list > [email protected] > http://lists.xwiki.org/mailman/listinfo/users > _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies. While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection. KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1 _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- Alonso Isidoro Roman. "La maquinaria de la corrupción se engrasa a diario con el sudor del trabajador conformista" Aristóteles.
Sorry, that I didn't answer yesterday. My message was bounced from the list. i hope it works now. This was my message: Thank you all for willing to help me. Now I checked the stack trace. You can see it below. I cannot understand the error log. It says, as far as I understand it, that it cannot load the jdbc driver, but why? I copied it into the lib folder. 2010-01-19 15:39:53,711 WARN [RequestUtils] No FormBeanConfig found under 'view' 2010-01-19 15:39:53,996 INFO [ PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server. 2010-01-19 15:39:53,996 INFO [ComponentRegistry] JBoss Cache version: JBossCache 'Malagueta' 3.2.1.GA <http://3.2.1.ga/> 2010-01-19 15:39:54,274 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server. 2010-01-19 15:39:54,274 INFO [ComponentRegistry] JBoss Cache version: JBossCache 'Malagueta' 3.2.1.GA <http://3.2.1.ga/> 2010-01-19 15:39:54,275 WARN [DefaultObservationManager] The [com.xpn.xwiki.store.XWikiCacheStore] listener has overwritten a previously registered listener [com.xpn.xwiki.store.XWikiCacheStore] since they both are registered under the same id [XWikiCacheStore]. In the future consider removing a Listener first if you really want to register it again. 2010-01-19 15:39:54,277 INFO [XWiki] Running storage migrations 2010-01-19 15:39:54,279 INFO [Configuration] configuring from resource: /WEB-INF/hibernate.cfg.xml 2010-01-19 15:39:54,299 INFO [Configuration] Reading mappings from resource : xwiki.oracle.hbm.xml 2010-01-19 15:39:54,716 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiDocument -> xwikidoc 2010-01-19 15:39:54,892 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.rcs.XWikiRCSNodeInfo -> xwikircs 2010-01-19 15:39:54,899 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.rcs.XWikiRCSNodeContent -> xwikircs 2010-01-19 15:39:54,951 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiDeletedDocument -> xwikirecyclebin 2010-01-19 15:39:54,982 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.DeletedAttachment -> xwikiattrecyclebin 2010-01-19 15:39:55,005 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiLock -> xwikilock 2010-01-19 15:39:55,007 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiLink -> xwikilinks 2010-01-19 15:39:55,009 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachment -> xwikiattachment 2010-01-19 15:39:55,012 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachmentContent -> xwikiattachment_content 2010-01-19 15:39:55,014 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachmentArchive -> xwikiattachment_archive 2010-01-19 15:39:55,015 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.classes.PropertyClass -> xwikiclassesprop 2010-01-19 15:39:55,260 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.NumberClass -> xwikinumberclasses 2010-01-19 15:39:55,290 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.StringClass -> xwikistringclasses 2010-01-19 15:39:55,291 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.DateClass -> xwikidateclasses 2010-01-19 15:39:55,292 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.PasswordClass -> xwikistringclasses 2010-01-19 15:39:55,294 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.TextAreaClass -> xwikistringclasses 2010-01-19 15:39:55,295 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.BooleanClass -> xwikibooleanclasses 2010-01-19 15:39:55,296 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.StaticListClass -> xwikislistclasses 2010-01-19 15:39:55,298 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.DBListClass -> xwikidblistclasses 2010-01-19 15:39:55,299 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.classes.BaseClass -> xwikiclasses 2010-01-19 15:39:55,301 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.BaseProperty -> xwikiproperties 2010-01-19 15:39:55,302 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.IntegerProperty -> xwikiintegers 2010-01-19 15:39:55,303 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.LongProperty -> xwikilongs 2010-01-19 15:39:55,304 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.FloatProperty -> xwikifloats 2010-01-19 15:39:55,305 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DoubleProperty -> xwikidoubles 2010-01-19 15:39:55,306 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.StringProperty -> xwikistrings 2010-01-19 15:39:55,307 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DateProperty -> xwikidates 2010-01-19 15:39:55,307 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.LargeStringProperty -> xwikilargestrings 2010-01-19 15:39:55,308 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.StringListProperty -> xwikilargestrings 2010-01-19 15:39:55,309 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DBStringListProperty -> xwikilists 2010-01-19 15:39:55,326 INFO [HbmBinder] Mapping collection: com.xpn.xwiki.objects.DBStringListProperty.list -> xwikilistitems 2010-01-19 15:39:55,353 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.BaseObject -> xwikiobjects 2010-01-19 15:39:55,354 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.DocumentStats -> xwikistatsdoc 2010-01-19 15:39:55,356 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.RefererStats -> xwikistatsreferer 2010-01-19 15:39:55,358 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.VisitStats -> xwikistatsvisit 2010-01-19 15:39:55,362 INFO [HbmBinder] Mapping class: XWiki.XWikiPreferences -> xwikipreferences 2010-01-19 15:39:55,370 INFO [HbmBinder] Mapping class: XWiki.XWikiComments -> xwikicomments 2010-01-19 15:39:55,371 INFO [HbmBinder] Mapping class: com.xpn.xwiki.store.migration.XWikiDBVersion -> xwikidbversion 2010-01-19 15:39:55,372 INFO [Configuration] Reading mappings from resource : feeds.oracle.hbm.xml 2010-01-19 15:39:55,486 INFO [HbmBinder] Mapping class: XWiki.AggregatorURLClass -> feeds_aggregatorurl 2010-01-19 15:39:55,487 INFO [HbmBinder] Mapping collection: XWiki.AggregatorURLClass.group -> feeds_aggregatorurlgroups 2010-01-19 15:39:55,488 INFO [HbmBinder] Mapping class: XWiki.AggregatorGroupClass -> feeds_aggregatorgroup 2010-01-19 15:39:55,488 INFO [HbmBinder] Mapping class: XWiki.KeywordClass -> feeds_keyword 2010-01-19 15:39:55,490 INFO [HbmBinder] Mapping class: XWiki.FeedEntryClass -> feeds_feedentry 2010-01-19 15:39:55,492 INFO [HbmBinder] Mapping collection: XWiki.FeedEntryClass.tags -> feeds_feedentrytags 2010-01-19 15:39:55,492 INFO [Configuration] Reading mappings from resource : activitystream.hbm.xml 2010-01-19 15:39:55,595 INFO [HbmBinder] Mapping class: com.xpn.xwiki.plugin.activitystream.impl.ActivityEventImpl -> activitystream_events 2010-01-19 15:39:55,599 INFO [Configuration] Configured SessionFactory: null 2010-01-19 15:39:56,207 INFO [ConnectionProviderFactory] Initializing connection provider: com.xpn.xwiki.store.DBCPConnectionProvider 2010-01-19 15:39:56,219 FATAL [DBCPConnectionProvider] Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.driver.OracleDriver' at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:766) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540) at com.xpn.xwiki.store.DBCPConnectionProvider.configure(DBCPConnectionProvider.java:193) at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124) at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56) at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:414) at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62) at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2073) at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1298) at com.xpn.xwiki.store.XWikiHibernateBaseStore.initHibernate(XWikiHibernateBaseStore.java:167) at com.xpn.xwiki.store.XWikiHibernateBaseStore.checkHibernate(XWikiHibernateBaseStore.java:562) at com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1026) at com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070) at com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68) at com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68) at com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56) at org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406) at org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver in classloader default/xwiki-enterprise-web-2.1.1/1263832972160/war at org.apache.geronimo.kernel.config.MultiParentClassLoader.loadOptimizedClass(MultiParentClassLoader.java:438) at org.apache.geronimo.kernel.config.MultiParentClassLoader.loadClass(MultiParentClassLoader.java:280) at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:164) at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:760) ... 63 more 2010-01-19 15:39:56,252 WARN [RequestProcessor] Unhandled Exception thrown: class com.xpn.xwiki.XWikiException 2010-01-19 15:39:56,252 ERROR [[action]] Servlet.service() for servlet action threw exception com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from param xwiki.store.migration.manager.class Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:341) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56) at org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406) at org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) Wrapped Exception: com.xpn.xwiki.XWikiException: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from param xwiki.store.migration.manager.class Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1045) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56) at org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406) at org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) Wrapped Exception: com.xpn.xwiki.XWikiException: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1040) at com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070) at com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68) at com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68) at com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56) at org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406) at org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) Wrapped Exception: org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.driver.OracleDriver' at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:766) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540) at com.xpn.xwiki.store.DBCPConnectionProvider.configure(DBCPConnectionProvider.java:193) at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124) at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56) at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:414) at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62) at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2073) at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1298) at com.xpn.xwiki.store.XWikiHibernateBaseStore.initHibernate(XWikiHibernateBaseStore.java:167) at com.xpn.xwiki.store.XWikiHibernateBaseStore.checkHibernate(XWikiHibernateBaseStore.java:562) at com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1026) at com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070) at com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68) at com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68) at com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56) at org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406) at org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver in classloader default/xwiki-enterprise-web-2.1.1/1263832972160/war at org.apache.geronimo.kernel.config.MultiParentClassLoader.loadOptimizedClass(MultiParentClassLoader.java:438) at org.apache.geronimo.kernel.config.MultiParentClassLoader.loadClass(MultiParentClassLoader.java:280) at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:164) at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:760) ... 63 more
hi, i have checked my /WEB-INF/lib xwiki' s folder and i dont have any orai18n.jar, pls try removing it! this message is clear, the class is not loaded! Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver 2010/1/20 Oskar Marek Rzepinski <[email protected]>
Sorry, that I didn't answer yesterday. My message was bounced from the list. i hope it works now. This was my message: Thank you all for willing to help me. Now I checked the stack trace. You can see it below. I cannot understand the error log. It says, as far as I understand it, that it cannot load the jdbc driver, but why? I copied it into the lib folder.
2010-01-19 15:39:53,711 WARN [RequestUtils] No FormBeanConfig found under 'view' 2010-01-19 15:39:53,996 INFO [ PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server. 2010-01-19 15:39:53,996 INFO [ComponentRegistry] JBoss Cache version: JBossCache 'Malagueta' 3.2.1.GA <http://3.2.1.ga/> 2010-01-19 15:39:54,274 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server. 2010-01-19 15:39:54,274 INFO [ComponentRegistry] JBoss Cache version: JBossCache 'Malagueta' 3.2.1.GA <http://3.2.1.ga/> 2010-01-19 15:39:54,275 WARN [DefaultObservationManager] The [com.xpn.xwiki.store.XWikiCacheStore] listener has overwritten a previously registered listener [com.xpn.xwiki.store.XWikiCacheStore] since they both are registered under the same id [XWikiCacheStore]. In the future consider removing a Listener first if you really want to register it again. 2010-01-19 15:39:54,277 INFO [XWiki] Running storage migrations 2010-01-19 15:39:54,279 INFO [Configuration] configuring from resource: /WEB-INF/hibernate.cfg.xml 2010-01-19 15:39:54,299 INFO [Configuration] Reading mappings from resource : xwiki.oracle.hbm.xml 2010-01-19 15:39:54,716 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiDocument -> xwikidoc 2010-01-19 15:39:54,892 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.rcs.XWikiRCSNodeInfo -> xwikircs 2010-01-19 15:39:54,899 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.rcs.XWikiRCSNodeContent -> xwikircs 2010-01-19 15:39:54,951 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiDeletedDocument -> xwikirecyclebin 2010-01-19 15:39:54,982 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.DeletedAttachment -> xwikiattrecyclebin 2010-01-19 15:39:55,005 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiLock -> xwikilock 2010-01-19 15:39:55,007 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiLink -> xwikilinks 2010-01-19 15:39:55,009 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachment -> xwikiattachment 2010-01-19 15:39:55,012 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachmentContent -> xwikiattachment_content 2010-01-19 15:39:55,014 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachmentArchive -> xwikiattachment_archive 2010-01-19 15:39:55,015 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.classes.PropertyClass -> xwikiclassesprop 2010-01-19 15:39:55,260 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.NumberClass -> xwikinumberclasses 2010-01-19 15:39:55,290 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.StringClass -> xwikistringclasses 2010-01-19 15:39:55,291 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.DateClass -> xwikidateclasses 2010-01-19 15:39:55,292 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.PasswordClass -> xwikistringclasses 2010-01-19 15:39:55,294 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.TextAreaClass -> xwikistringclasses 2010-01-19 15:39:55,295 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.BooleanClass -> xwikibooleanclasses 2010-01-19 15:39:55,296 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.StaticListClass -> xwikislistclasses 2010-01-19 15:39:55,298 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.DBListClass -> xwikidblistclasses 2010-01-19 15:39:55,299 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.classes.BaseClass -> xwikiclasses 2010-01-19 15:39:55,301 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.BaseProperty -> xwikiproperties 2010-01-19 15:39:55,302 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.IntegerProperty -> xwikiintegers 2010-01-19 15:39:55,303 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.LongProperty -> xwikilongs 2010-01-19 15:39:55,304 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.FloatProperty -> xwikifloats 2010-01-19 15:39:55,305 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DoubleProperty -> xwikidoubles 2010-01-19 15:39:55,306 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.StringProperty -> xwikistrings 2010-01-19 15:39:55,307 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DateProperty -> xwikidates 2010-01-19 15:39:55,307 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.LargeStringProperty -> xwikilargestrings 2010-01-19 15:39:55,308 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.StringListProperty -> xwikilargestrings 2010-01-19 15:39:55,309 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DBStringListProperty -> xwikilists 2010-01-19 15:39:55,326 INFO [HbmBinder] Mapping collection: com.xpn.xwiki.objects.DBStringListProperty.list -> xwikilistitems 2010-01-19 15:39:55,353 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.BaseObject -> xwikiobjects 2010-01-19 15:39:55,354 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.DocumentStats -> xwikistatsdoc 2010-01-19 15:39:55,356 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.RefererStats -> xwikistatsreferer 2010-01-19 15:39:55,358 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.VisitStats -> xwikistatsvisit 2010-01-19 15:39:55,362 INFO [HbmBinder] Mapping class: XWiki.XWikiPreferences -> xwikipreferences 2010-01-19 15:39:55,370 INFO [HbmBinder] Mapping class: XWiki.XWikiComments -> xwikicomments 2010-01-19 15:39:55,371 INFO [HbmBinder] Mapping class: com.xpn.xwiki.store.migration.XWikiDBVersion -> xwikidbversion 2010-01-19 15:39:55,372 INFO [Configuration] Reading mappings from resource : feeds.oracle.hbm.xml 2010-01-19 15:39:55,486 INFO [HbmBinder] Mapping class: XWiki.AggregatorURLClass -> feeds_aggregatorurl 2010-01-19 15:39:55,487 INFO [HbmBinder] Mapping collection: XWiki.AggregatorURLClass.group -> feeds_aggregatorurlgroups 2010-01-19 15:39:55,488 INFO [HbmBinder] Mapping class: XWiki.AggregatorGroupClass -> feeds_aggregatorgroup 2010-01-19 15:39:55,488 INFO [HbmBinder] Mapping class: XWiki.KeywordClass -> feeds_keyword 2010-01-19 15:39:55,490 INFO [HbmBinder] Mapping class: XWiki.FeedEntryClass -> feeds_feedentry 2010-01-19 15:39:55,492 INFO [HbmBinder] Mapping collection: XWiki.FeedEntryClass.tags -> feeds_feedentrytags 2010-01-19 15:39:55,492 INFO [Configuration] Reading mappings from resource : activitystream.hbm.xml 2010-01-19 15:39:55,595 INFO [HbmBinder] Mapping class: com.xpn.xwiki.plugin.activitystream.impl.ActivityEventImpl -> activitystream_events 2010-01-19 15:39:55,599 INFO [Configuration] Configured SessionFactory: null 2010-01-19 15:39:56,207 INFO [ConnectionProviderFactory] Initializing connection provider: com.xpn.xwiki.store.DBCPConnectionProvider 2010-01-19 15:39:56,219 FATAL [DBCPConnectionProvider] Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.driver.OracleDriver' at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:766) at
org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540) at
com.xpn.xwiki.store.DBCPConnectionProvider.configure(DBCPConnectionProvider.java:193) at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124) at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56) at
org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:414) at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62) at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2073) at
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1298) at
com.xpn.xwiki.store.XWikiHibernateBaseStore.initHibernate(XWikiHibernateBaseStore.java:167) at
com.xpn.xwiki.store.XWikiHibernateBaseStore.checkHibernate(XWikiHibernateBaseStore.java:562) at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1026) at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070) at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68) at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68) at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56) at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406) at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47) at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver in classloader default/xwiki-enterprise-web-2.1.1/1263832972160/war at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadOptimizedClass(MultiParentClassLoader.java:438) at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadClass(MultiParentClassLoader.java:280) at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:164) at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:760) ... 63 more 2010-01-19 15:39:56,252 WARN [RequestProcessor] Unhandled Exception thrown: class com.xpn.xwiki.XWikiException 2010-01-19 15:39:56,252 ERROR [[action]] Servlet.service() for servlet action threw exception
com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from param xwiki.store.migration.manager.class
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:341) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56) at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406) at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47) at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595)
Wrapped Exception:
com.xpn.xwiki.XWikiException: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from param xwiki.store.migration.manager.class
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1045) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56) at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406) at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47) at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595)
Wrapped Exception:
com.xpn.xwiki.XWikiException: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1040) at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070) at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68) at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68) at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56) at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406) at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47) at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595)
Wrapped Exception:
org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.driver.OracleDriver' at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:766) at
org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540) at
com.xpn.xwiki.store.DBCPConnectionProvider.configure(DBCPConnectionProvider.java:193) at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124) at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56) at
org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:414) at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62) at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2073) at
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1298) at
com.xpn.xwiki.store.XWikiHibernateBaseStore.initHibernate(XWikiHibernateBaseStore.java:167) at
com.xpn.xwiki.store.XWikiHibernateBaseStore.checkHibernate(XWikiHibernateBaseStore.java:562) at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1026) at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070) at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68) at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68) at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56) at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406) at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47) at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver in classloader default/xwiki-enterprise-web-2.1.1/1263832972160/war at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadOptimizedClass(MultiParentClassLoader.java:438) at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadClass(MultiParentClassLoader.java:280) at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:164) at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:760) ... 63 more _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- Alonso Isidoro Roman. "La maquinaria de la corrupción se engrasa a diario con el sudor del trabajador conformista" Aristóteles.
The problem is still there. We still don't get it running, even if the orai18n.jar is not in the folder. 2010/1/20 Alonso Isidoro Roman <[email protected]>
hi, i have checked my /WEB-INF/lib xwiki' s folder and i dont have any orai18n.jar, pls try removing it!
this message is clear, the class is not loaded!
Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
2010/1/20 Oskar Marek Rzepinski <[email protected]>
Sorry, that I didn't answer yesterday. My message was bounced from the list. i hope it works now. This was my message: Thank you all for willing to help me. Now I checked the stack trace. You can see it below. I cannot understand the error log. It says, as far as I understand it, that it cannot load the jdbc driver, but why? I copied it into the lib folder.
2010-01-19 15:39:53,711 WARN [RequestUtils] No FormBeanConfig found under 'view' 2010-01-19 15:39:53,996 INFO [ PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server. 2010-01-19 15:39:53,996 INFO [ComponentRegistry] JBoss Cache version: JBossCache 'Malagueta' 3.2.1.GA <http://3.2.1.ga/> 2010-01-19 15:39:54,274 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server. 2010-01-19 15:39:54,274 INFO [ComponentRegistry] JBoss Cache version: JBossCache 'Malagueta' 3.2.1.GA <http://3.2.1.ga/> 2010-01-19 15:39:54,275 WARN [DefaultObservationManager] The [com.xpn.xwiki.store.XWikiCacheStore] listener has overwritten a previously registered listener [com.xpn.xwiki.store.XWikiCacheStore] since they both are registered under the same id [XWikiCacheStore]. In the future consider removing a Listener first if you really want to register it again. 2010-01-19 15:39:54,277 INFO [XWiki] Running storage migrations 2010-01-19 15:39:54,279 INFO [Configuration] configuring from resource: /WEB-INF/hibernate.cfg.xml 2010-01-19 15:39:54,299 INFO [Configuration] Reading mappings from resource : xwiki.oracle.hbm.xml 2010-01-19 15:39:54,716 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiDocument -> xwikidoc 2010-01-19 15:39:54,892 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.rcs.XWikiRCSNodeInfo -> xwikircs 2010-01-19 15:39:54,899 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.rcs.XWikiRCSNodeContent -> xwikircs 2010-01-19 15:39:54,951 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiDeletedDocument -> xwikirecyclebin 2010-01-19 15:39:54,982 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.DeletedAttachment -> xwikiattrecyclebin 2010-01-19 15:39:55,005 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiLock -> xwikilock 2010-01-19 15:39:55,007 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiLink -> xwikilinks 2010-01-19 15:39:55,009 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachment -> xwikiattachment 2010-01-19 15:39:55,012 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachmentContent -> xwikiattachment_content 2010-01-19 15:39:55,014 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachmentArchive -> xwikiattachment_archive 2010-01-19 15:39:55,015 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.classes.PropertyClass -> xwikiclassesprop 2010-01-19 15:39:55,260 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.NumberClass -> xwikinumberclasses 2010-01-19 15:39:55,290 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.StringClass -> xwikistringclasses 2010-01-19 15:39:55,291 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.DateClass -> xwikidateclasses 2010-01-19 15:39:55,292 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.PasswordClass -> xwikistringclasses 2010-01-19 15:39:55,294 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.TextAreaClass -> xwikistringclasses 2010-01-19 15:39:55,295 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.BooleanClass -> xwikibooleanclasses 2010-01-19 15:39:55,296 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.StaticListClass -> xwikislistclasses 2010-01-19 15:39:55,298 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.DBListClass -> xwikidblistclasses 2010-01-19 15:39:55,299 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.classes.BaseClass -> xwikiclasses 2010-01-19 15:39:55,301 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.BaseProperty -> xwikiproperties 2010-01-19 15:39:55,302 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.IntegerProperty -> xwikiintegers 2010-01-19 15:39:55,303 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.LongProperty -> xwikilongs 2010-01-19 15:39:55,304 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.FloatProperty -> xwikifloats 2010-01-19 15:39:55,305 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DoubleProperty -> xwikidoubles 2010-01-19 15:39:55,306 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.StringProperty -> xwikistrings 2010-01-19 15:39:55,307 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DateProperty -> xwikidates 2010-01-19 15:39:55,307 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.LargeStringProperty -> xwikilargestrings 2010-01-19 15:39:55,308 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.StringListProperty -> xwikilargestrings 2010-01-19 15:39:55,309 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DBStringListProperty -> xwikilists 2010-01-19 15:39:55,326 INFO [HbmBinder] Mapping collection: com.xpn.xwiki.objects.DBStringListProperty.list -> xwikilistitems 2010-01-19 15:39:55,353 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.BaseObject -> xwikiobjects 2010-01-19 15:39:55,354 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.DocumentStats -> xwikistatsdoc 2010-01-19 15:39:55,356 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.RefererStats -> xwikistatsreferer 2010-01-19 15:39:55,358 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.VisitStats -> xwikistatsvisit 2010-01-19 15:39:55,362 INFO [HbmBinder] Mapping class: XWiki.XWikiPreferences -> xwikipreferences 2010-01-19 15:39:55,370 INFO [HbmBinder] Mapping class: XWiki.XWikiComments -> xwikicomments 2010-01-19 15:39:55,371 INFO [HbmBinder] Mapping class: com.xpn.xwiki.store.migration.XWikiDBVersion -> xwikidbversion 2010-01-19 15:39:55,372 INFO [Configuration] Reading mappings from resource : feeds.oracle.hbm.xml 2010-01-19 15:39:55,486 INFO [HbmBinder] Mapping class: XWiki.AggregatorURLClass -> feeds_aggregatorurl 2010-01-19 15:39:55,487 INFO [HbmBinder] Mapping collection: XWiki.AggregatorURLClass.group -> feeds_aggregatorurlgroups 2010-01-19 15:39:55,488 INFO [HbmBinder] Mapping class: XWiki.AggregatorGroupClass -> feeds_aggregatorgroup 2010-01-19 15:39:55,488 INFO [HbmBinder] Mapping class: XWiki.KeywordClass -> feeds_keyword 2010-01-19 15:39:55,490 INFO [HbmBinder] Mapping class: XWiki.FeedEntryClass -> feeds_feedentry 2010-01-19 15:39:55,492 INFO [HbmBinder] Mapping collection: XWiki.FeedEntryClass.tags -> feeds_feedentrytags 2010-01-19 15:39:55,492 INFO [Configuration] Reading mappings from resource : activitystream.hbm.xml 2010-01-19 15:39:55,595 INFO [HbmBinder] Mapping class: com.xpn.xwiki.plugin.activitystream.impl.ActivityEventImpl -> activitystream_events 2010-01-19 15:39:55,599 INFO [Configuration] Configured SessionFactory: null 2010-01-19 15:39:56,207 INFO [ConnectionProviderFactory] Initializing connection provider: com.xpn.xwiki.store.DBCPConnectionProvider 2010-01-19 15:39:56,219 FATAL [DBCPConnectionProvider] Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.driver.OracleDriver' at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:766)
at
org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
at
com.xpn.xwiki.store.DBCPConnectionProvider.configure(DBCPConnectionProvider.java:193)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56)
at
org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:414)
at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62) at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2073) at
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1298)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.initHibernate(XWikiHibernateBaseStore.java:167)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.checkHibernate(XWikiHibernateBaseStore.java:562)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1026)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver in classloader default/xwiki-enterprise-web-2.1.1/1263832972160/war at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadOptimizedClass(MultiParentClassLoader.java:438)
at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadClass(MultiParentClassLoader.java:280)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:164) at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:760)
... 63 more 2010-01-19 15:39:56,252 WARN [RequestProcessor] Unhandled Exception thrown: class com.xpn.xwiki.XWikiException 2010-01-19 15:39:56,252 ERROR [[action]] Servlet.service() for servlet action threw exception
com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from param xwiki.store.migration.manager.class
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:341) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595)
Wrapped Exception:
com.xpn.xwiki.XWikiException: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from param xwiki.store.migration.manager.class
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1045) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595)
Wrapped Exception:
com.xpn.xwiki.XWikiException: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1040)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595)
Wrapped Exception:
org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.driver.OracleDriver' at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:766)
at
org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
at
com.xpn.xwiki.store.DBCPConnectionProvider.configure(DBCPConnectionProvider.java:193)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56)
at
org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:414)
at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62) at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2073) at
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1298)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.initHibernate(XWikiHibernateBaseStore.java:167)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.checkHibernate(XWikiHibernateBaseStore.java:562)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1026)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568) at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver in classloader default/xwiki-enterprise-web-2.1.1/1263832972160/war at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadOptimizedClass(MultiParentClassLoader.java:438)
at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadClass(MultiParentClassLoader.java:280)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:164) at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:760)
... 63 more _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- Alonso Isidoro Roman.
"La maquinaria de la corrupción se engrasa a diario con el sudor del trabajador conformista"
Aristóteles. _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
Hi Oscar, i dont know about to think, only thing that i can imagine is the jar is not ok, corrupted or something like that. pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, create a user xwiki with proper grants (create database, create table, etc...), put the war into webapps jboss folder and breathe! http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101... sorry for not be able to help you anymore! regards 2010/1/20 Oskar Marek Rzepinski <[email protected]>
The problem is still there. We still don't get it running, even if the orai18n.jar is not in the folder.
2010/1/20 Alonso Isidoro Roman <[email protected]>
hi, i have checked my /WEB-INF/lib xwiki' s folder and i dont have any orai18n.jar, pls try removing it!
this message is clear, the class is not loaded!
Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
2010/1/20 Oskar Marek Rzepinski <[email protected]>
Sorry, that I didn't answer yesterday. My message was bounced from the list. i hope it works now. This was my message: Thank you all for willing to help me. Now I checked the stack trace. You can see it below. I cannot understand the error log. It says, as far as I understand it, that it cannot load the jdbc driver, but why? I copied it into the lib folder.
2010-01-19 15:39:53,711 WARN [RequestUtils] No FormBeanConfig found under 'view' 2010-01-19 15:39:53,996 INFO [ PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server. 2010-01-19 15:39:53,996 INFO [ComponentRegistry] JBoss Cache version: JBossCache 'Malagueta' 3.2.1.GA <http://3.2.1.ga/> 2010-01-19 15:39:54,274 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server. 2010-01-19 15:39:54,274 INFO [ComponentRegistry] JBoss Cache version: JBossCache 'Malagueta' 3.2.1.GA <http://3.2.1.ga/> 2010-01-19 15:39:54,275 WARN [DefaultObservationManager] The [com.xpn.xwiki.store.XWikiCacheStore] listener has overwritten a previously registered listener [com.xpn.xwiki.store.XWikiCacheStore] since they both are registered under the same id [XWikiCacheStore]. In the future consider removing a Listener first if you really want to register it again. 2010-01-19 15:39:54,277 INFO [XWiki] Running storage migrations 2010-01-19 15:39:54,279 INFO [Configuration] configuring from resource: /WEB-INF/hibernate.cfg.xml 2010-01-19 15:39:54,299 INFO [Configuration] Reading mappings from resource : xwiki.oracle.hbm.xml 2010-01-19 15:39:54,716 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiDocument -> xwikidoc 2010-01-19 15:39:54,892 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.rcs.XWikiRCSNodeInfo -> xwikircs 2010-01-19 15:39:54,899 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.rcs.XWikiRCSNodeContent -> xwikircs 2010-01-19 15:39:54,951 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiDeletedDocument -> xwikirecyclebin 2010-01-19 15:39:54,982 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.DeletedAttachment -> xwikiattrecyclebin 2010-01-19 15:39:55,005 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiLock -> xwikilock 2010-01-19 15:39:55,007 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiLink -> xwikilinks 2010-01-19 15:39:55,009 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachment -> xwikiattachment 2010-01-19 15:39:55,012 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachmentContent -> xwikiattachment_content 2010-01-19 15:39:55,014 INFO [HbmBinder] Mapping class: com.xpn.xwiki.doc.XWikiAttachmentArchive -> xwikiattachment_archive 2010-01-19 15:39:55,015 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.classes.PropertyClass -> xwikiclassesprop 2010-01-19 15:39:55,260 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.NumberClass -> xwikinumberclasses 2010-01-19 15:39:55,290 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.StringClass -> xwikistringclasses 2010-01-19 15:39:55,291 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.DateClass -> xwikidateclasses 2010-01-19 15:39:55,292 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.PasswordClass -> xwikistringclasses 2010-01-19 15:39:55,294 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.TextAreaClass -> xwikistringclasses 2010-01-19 15:39:55,295 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.BooleanClass -> xwikibooleanclasses 2010-01-19 15:39:55,296 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.StaticListClass -> xwikislistclasses 2010-01-19 15:39:55,298 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.classes.DBListClass -> xwikidblistclasses 2010-01-19 15:39:55,299 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.classes.BaseClass -> xwikiclasses 2010-01-19 15:39:55,301 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.BaseProperty -> xwikiproperties 2010-01-19 15:39:55,302 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.IntegerProperty -> xwikiintegers 2010-01-19 15:39:55,303 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.LongProperty -> xwikilongs 2010-01-19 15:39:55,304 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.FloatProperty -> xwikifloats 2010-01-19 15:39:55,305 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DoubleProperty -> xwikidoubles 2010-01-19 15:39:55,306 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.StringProperty -> xwikistrings 2010-01-19 15:39:55,307 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DateProperty -> xwikidates 2010-01-19 15:39:55,307 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.LargeStringProperty -> xwikilargestrings 2010-01-19 15:39:55,308 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.StringListProperty -> xwikilargestrings 2010-01-19 15:39:55,309 INFO [HbmBinder] Mapping joined-subclass: com.xpn.xwiki.objects.DBStringListProperty -> xwikilists 2010-01-19 15:39:55,326 INFO [HbmBinder] Mapping collection: com.xpn.xwiki.objects.DBStringListProperty.list -> xwikilistitems 2010-01-19 15:39:55,353 INFO [HbmBinder] Mapping class: com.xpn.xwiki.objects.BaseObject -> xwikiobjects 2010-01-19 15:39:55,354 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.DocumentStats -> xwikistatsdoc 2010-01-19 15:39:55,356 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.RefererStats -> xwikistatsreferer 2010-01-19 15:39:55,358 INFO [HbmBinder] Mapping class: com.xpn.xwiki.stats.impl.VisitStats -> xwikistatsvisit 2010-01-19 15:39:55,362 INFO [HbmBinder] Mapping class: XWiki.XWikiPreferences -> xwikipreferences 2010-01-19 15:39:55,370 INFO [HbmBinder] Mapping class: XWiki.XWikiComments -> xwikicomments 2010-01-19 15:39:55,371 INFO [HbmBinder] Mapping class: com.xpn.xwiki.store.migration.XWikiDBVersion -> xwikidbversion 2010-01-19 15:39:55,372 INFO [Configuration] Reading mappings from resource : feeds.oracle.hbm.xml 2010-01-19 15:39:55,486 INFO [HbmBinder] Mapping class: XWiki.AggregatorURLClass -> feeds_aggregatorurl 2010-01-19 15:39:55,487 INFO [HbmBinder] Mapping collection: XWiki.AggregatorURLClass.group -> feeds_aggregatorurlgroups 2010-01-19 15:39:55,488 INFO [HbmBinder] Mapping class: XWiki.AggregatorGroupClass -> feeds_aggregatorgroup 2010-01-19 15:39:55,488 INFO [HbmBinder] Mapping class: XWiki.KeywordClass -> feeds_keyword 2010-01-19 15:39:55,490 INFO [HbmBinder] Mapping class: XWiki.FeedEntryClass -> feeds_feedentry 2010-01-19 15:39:55,492 INFO [HbmBinder] Mapping collection: XWiki.FeedEntryClass.tags -> feeds_feedentrytags 2010-01-19 15:39:55,492 INFO [Configuration] Reading mappings from resource : activitystream.hbm.xml 2010-01-19 15:39:55,595 INFO [HbmBinder] Mapping class: com.xpn.xwiki.plugin.activitystream.impl.ActivityEventImpl -> activitystream_events 2010-01-19 15:39:55,599 INFO [Configuration] Configured SessionFactory: null 2010-01-19 15:39:56,207 INFO [ConnectionProviderFactory] Initializing connection provider: com.xpn.xwiki.store.DBCPConnectionProvider 2010-01-19 15:39:56,219 FATAL [DBCPConnectionProvider] Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.driver.OracleDriver' at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:766)
at
org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
at
com.xpn.xwiki.store.DBCPConnectionProvider.configure(DBCPConnectionProvider.java:193)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56)
at
org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:414)
at
org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62)
at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2073) at
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1298)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.initHibernate(XWikiHibernateBaseStore.java:167)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.checkHibernate(XWikiHibernateBaseStore.java:562)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1026)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver in classloader default/xwiki-enterprise-web-2.1.1/1263832972160/war at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadOptimizedClass(MultiParentClassLoader.java:438)
at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadClass(MultiParentClassLoader.java:280)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:164) at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:760)
... 63 more 2010-01-19 15:39:56,252 WARN [RequestProcessor] Unhandled Exception thrown: class com.xpn.xwiki.XWikiException 2010-01-19 15:39:56,252 ERROR [[action]] Servlet.service() for servlet action threw exception
com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from param xwiki.store.migration.manager.class
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:341) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595)
Wrapped Exception:
com.xpn.xwiki.XWikiException: Error number 3001 in 3: Cannot load class com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from param xwiki.store.migration.manager.class
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1045) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595)
Wrapped Exception:
com.xpn.xwiki.XWikiException: Error number 0 in 3: Exception while hibernate execute Wrapped Exception: Could not create a DBCP pool. There is an error in the hibernate configuration file, please review it. at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1040)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595)
Wrapped Exception:
org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.driver.OracleDriver' at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:766)
at
org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
at
com.xpn.xwiki.store.DBCPConnectionProvider.configure(DBCPConnectionProvider.java:193)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56)
at
org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:414)
at
org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62)
at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2073) at
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1298)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.initHibernate(XWikiHibernateBaseStore.java:167)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.checkHibernate(XWikiHibernateBaseStore.java:562)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1026)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1070)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:501) at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1037) at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:739) at com.xpn.xwiki.XWiki.<init>(XWiki.java:684) at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:321) at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693) at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver in classloader default/xwiki-enterprise-web-2.1.1/1263832972160/war at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadOptimizedClass(MultiParentClassLoader.java:438)
at
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadClass(MultiParentClassLoader.java:280)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:164) at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:760)
... 63 more _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- Alonso Isidoro Roman.
"La maquinaria de la corrupción se engrasa a diario con el sudor del trabajador conformista"
Aristóteles. _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- Alonso Isidoro Roman. "La maquinaria de la corrupción se engrasa a diario con el sudor del trabajador conformista" Aristóteles.
Hi Alonso. Thank you for all the hints. You are writing about creating table. How do I create the table? I thought, that xwiki is doing this after the right configuration. Am I right? Or have you a simple how-to for creating the table? I have on oracle the user xwiki with all privileges. The deployment with the geronimo consle also worked fine. I am still thinking about the oracle if I have to do something more than creating only the user with the right grants as it is said in the installation guide on the xwiki page. Thanks again regards Oskar 2010/1/20 Alonso Isidoro Roman <[email protected]>
Hi Oscar, i dont know about to think, only thing that i can imagine is the jar is not ok, corrupted or something like that.
pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, create a user xwiki with proper grants (create database, create table, etc...), put the war into webapps jboss folder and breathe!
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101...
sorry for not be able to help you anymore!
regards
The problem is definitely that XWiki can't get at the jdbc connector so I don't think creating the database will help, also XWiki uses a complicated schema so creating the tables manually is not really an option. I would go into the WEB-INF/lib and find the jdbc connector jar you added, open it with a zip program, (jar is just a special type of zip file) look inside and make sure it has the file oracle/jdbc/driver/OracleDriver.class Maybe you are using the wrong jdbc. Your persistence is admirable! Caleb Oskar Marek Rzepinski wrote:
Hi Alonso.
Thank you for all the hints. You are writing about creating table. How do I create the table? I thought, that xwiki is doing this after the right configuration. Am I right? Or have you a simple how-to for creating the table? I have on oracle the user xwiki with all privileges. The deployment with the geronimo consle also worked fine. I am still thinking about the oracle if I have to do something more than creating only the user with the right grants as it is said in the installation guide on the xwiki page. Thanks again
regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
Hi Oscar, i dont know about to think, only thing that i can imagine is the jar is not ok, corrupted or something like that.
pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, create a user xwiki with proper grants (create database, create table, etc...), put the war into webapps jboss folder and breathe!
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101...
sorry for not be able to help you anymore!
regards
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
I will look on this tommorow. I don't have the access to the dev server from my house but only from my work site. I will post the results tommorow morning, when I tried this. Thanks for now. Oskar 2010/1/20 Caleb James DeLisle <[email protected]>
The problem is definitely that XWiki can't get at the jdbc connector so I don't think creating the database will help, also XWiki uses a complicated schema so creating the tables manually is not really an option.
I would go into the WEB-INF/lib and find the jdbc connector jar you added, open it with a zip program, (jar is just a special type of zip file) look inside and make sure it has the file oracle/jdbc/driver/OracleDriver.class Maybe you are using the wrong jdbc.
Your persistence is admirable!
Caleb
Oskar Marek Rzepinski wrote:
Hi Alonso.
Thank you for all the hints. You are writing about creating table. How do I create the table? I thought, that xwiki is doing this after the right configuration. Am I right? Or have you a simple how-to for creating the table? I have on oracle the user xwiki with all privileges. The deployment with the geronimo consle also worked fine. I am still thinking about the oracle if I have to do something more than creating only the user with the right grants as it is said in the installation guide on the xwiki page. Thanks again
regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
Hi Oscar, i dont know about to think, only thing that i can imagine is the jar is not ok, corrupted or something like that.
pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, create a user xwiki with proper grants (create database, create table, etc...), put the war into webapps jboss folder and breathe!
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101...
sorry for not be able to help you anymore!
regards
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
How can I unsubscribe from this list, I no longer need to be here. Thank you Alma -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Oskar Marek Rzepinski Sent: Wednesday, January 20, 2010 12:06 PM To: XWiki Users Subject: Re: [xwiki-users] Problem with getting Xwiki to work with Oracle10g I will look on this tommorow. I don't have the access to the dev server from my house but only from my work site. I will post the results tommorow morning, when I tried this. Thanks for now. Oskar 2010/1/20 Caleb James DeLisle <[email protected]>
The problem is definitely that XWiki can't get at the jdbc connector so I don't think creating the database will help, also XWiki uses a complicated schema so creating the tables manually is not really an option.
I would go into the WEB-INF/lib and find the jdbc connector jar you added, open it with a zip program, (jar is just a special type of zip file) look inside and make sure it has the file oracle/jdbc/driver/OracleDriver.class Maybe you are using the wrong jdbc.
Your persistence is admirable!
Caleb
Oskar Marek Rzepinski wrote:
Hi Alonso.
Thank you for all the hints. You are writing about creating table. How do I create the table? I thought, that xwiki is doing this after the right configuration. Am I right? Or have you a simple how-to for creating the table? I have on oracle the user xwiki with all privileges. The deployment with the geronimo consle also worked fine. I am still thinking about the oracle if I have to do something more than creating only the user with the right grants as it is said in the installation guide on the xwiki page. Thanks again
regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
Hi Oscar, i dont know about to think, only thing that i can imagine is the jar is not ok, corrupted or something like that.
pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, create a user xwiki with proper grants (create database, create table, etc...), put the war into webapps jboss folder and breathe!
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101...
sorry for not be able to help you anymore!
regards
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
Hi, On Jan 20, 2010, at 9:11 PM, Pim, Alma wrote:
How can I unsubscribe from this list, I no longer need to be here.
See http://dev.xwiki.org/xwiki/bin/view/Community/MailingLists -Vincent
Thank you Alma
-----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Oskar Marek Rzepinski Sent: Wednesday, January 20, 2010 12:06 PM To: XWiki Users Subject: Re: [xwiki-users] Problem with getting Xwiki to work with Oracle10g
I will look on this tommorow. I don't have the access to the dev server from my house but only from my work site. I will post the results tommorow morning, when I tried this.
Thanks for now.
Oskar
2010/1/20 Caleb James DeLisle <[email protected]>
The problem is definitely that XWiki can't get at the jdbc connector so I don't think creating the database will help, also XWiki uses a complicated schema so creating the tables manually is not really an option.
I would go into the WEB-INF/lib and find the jdbc connector jar you added, open it with a zip program, (jar is just a special type of zip file) look inside and make sure it has the file oracle/jdbc/driver/OracleDriver.class Maybe you are using the wrong jdbc.
Your persistence is admirable!
Caleb
Oskar Marek Rzepinski wrote:
Hi Alonso.
Thank you for all the hints. You are writing about creating table. How do I create the table? I thought, that xwiki is doing this after the right configuration. Am I right? Or have you a simple how-to for creating the table? I have on oracle the user xwiki with all privileges. The deployment with the geronimo consle also worked fine. I am still thinking about the oracle if I have to do something more than creating only the user with the right grants as it is said in the installation guide on the xwiki page. Thanks again
regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
Hi Oscar, i dont know about to think, only thing that i can imagine is the jar is not ok, corrupted or something like that.
pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, create a user xwiki with proper grants (create database, create table, etc...), put the war into webapps jboss folder and breathe!
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101...
sorry for not be able to help you anymore!
regards
2010/1/20 Caleb James DeLisle <[email protected]>
The problem is definitely that XWiki can't get at the jdbc connector so I don't think creating the database will help, also XWiki uses a complicated schema so creating the tables manually is not really an option.
i think i did not suggest to create manually the schema!
I would go into the WEB-INF/lib and find the jdbc connector jar you added, open it with a zip program, (jar is just a special type of zip file) look inside and make sure it has the file oracle/jdbc/driver/OracleDriver.class Maybe you are using the wrong jdbc.
thats a good advice!
Your persistence is admirable!
Caleb
Oskar Marek Rzepinski wrote:
Hi Alonso.
Thank you for all the hints. You are writing about creating table. How do I create the table? I thought, that xwiki is doing this after the right configuration. Am I right? Or have you a simple how-to for creating the table? I have on oracle the user xwiki with all privileges. The deployment with the geronimo consle also worked fine. I am still thinking about the oracle if I have to do something more than creating only the user with the right grants as it is said in the installation guide on the xwiki page. Thanks again
regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
Hi Oscar, i dont know about to think, only thing that i can imagine is the jar is not ok, corrupted or something like that.
pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, create a user xwiki with proper grants (create database, create table, etc...), put the war into webapps jboss folder and breathe!
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101...
sorry for not be able to help you anymore!
regards
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- Alonso Isidoro Roman. "La maquinaria de la corrupción se engrasa a diario con el sudor del trabajador conformista" Aristóteles.
Hello everybody, now after a lot of testing I think I have to look for an another wiki. I have the right driver, I checked this. The configuration is also not the problem, all parameters are O.K. I think that we have a problem with the geronimo server that don't let us connect to the database. It is really annoying that we won't get the xwiki running. The problem is, that for performance reasons we won't use any other database system or an another container than geronimo(tomcat). Thanks to all, who tried to help me. Best regards Oskar 2010/1/20 Alonso Isidoro Roman <[email protected]>
2010/1/20 Caleb James DeLisle <[email protected]>
The problem is definitely that XWiki can't get at the jdbc connector so I don't think creating the database will help, also XWiki uses a complicated schema so creating the tables manually is not really an option.
i think i did not suggest to create manually the schema!
I would go into the WEB-INF/lib and find the jdbc connector jar you added, open it with a zip program, (jar is just a special type of zip file) look inside and make sure it has the file oracle/jdbc/driver/OracleDriver.class Maybe you are using the wrong jdbc.
thats a good advice!
Your persistence is admirable!
Caleb
Oskar Marek Rzepinski wrote:
Hi Alonso.
Thank you for all the hints. You are writing about creating table. How do I create the table? I thought, that xwiki is doing this after the right configuration. Am I right? Or have you a simple how-to for creating the table? I have on oracle the user xwiki with all privileges. The deployment with the geronimo consle also worked fine. I am still thinking about the oracle if I have to do something more than creating only the user with the right grants as it is said in the installation guide on the xwiki page. Thanks again
regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
Hi Oscar, i dont know about to think, only thing that i can imagine is the jar is not ok, corrupted or something like that.
pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, create a user xwiki with proper grants (create database, create table, etc...), put the war into webapps jboss folder and breathe!
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101...
sorry for not be able to help you anymore!
regards
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- Alonso Isidoro Roman.
"La maquinaria de la corrupción se engrasa a diario con el sudor del trabajador conformista"
Aristóteles. _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
Hi Oskar, Too bad that you couldn't get it to work. I haven't followed but you're use the xwiki oracle HBM mapping file right? AFAIK several users of xwiki are using Oracle. I know for sure it used to work and we haven't done changes to the database mapping so it would be strange it's not working anymore. What's possible though is that some features don't work without tweaking of the hibernate mapping or minor changes to the code (for ex Oracle considers NULL and empty strings as the same thing AFAIR) but the majority of features should work fine. And for features that don't work we can work together to fix them. Thanks -Vincent On Jan 21, 2010, at 1:23 PM, Oskar Marek Rzepinski wrote:
Hello everybody,
now after a lot of testing I think I have to look for an another wiki. I have the right driver, I checked this. The configuration is also not the problem, all parameters are O.K. I think that we have a problem with the geronimo server that don't let us connect to the database. It is really annoying that we won't get the xwiki running. The problem is, that for performance reasons we won't use any other database system or an another container than geronimo(tomcat). Thanks to all, who tried to help me.
Best regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
2010/1/20 Caleb James DeLisle <[email protected]>
The problem is definitely that XWiki can't get at the jdbc connector so I don't think creating the database will help, also XWiki uses a complicated schema so creating the tables manually is not really an option.
i think i did not suggest to create manually the schema!
I would go into the WEB-INF/lib and find the jdbc connector jar you added, open it with a zip program, (jar is just a special type of zip file) look inside and make sure it has the file oracle/jdbc/driver/OracleDriver.class Maybe you are using the wrong jdbc.
thats a good advice!
Your persistence is admirable!
Caleb
Oskar Marek Rzepinski wrote:
Hi Alonso.
Thank you for all the hints. You are writing about creating table. How do I create the table? I thought, that xwiki is doing this after the right configuration. Am I right? Or have you a simple how-to for creating the table? I have on oracle the user xwiki with all privileges. The deployment with the geronimo consle also worked fine. I am still thinking about the oracle if I have to do something more than creating only the user with the right grants as it is said in the installation guide on the xwiki page. Thanks again
regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
Hi Oscar, i dont know about to think, only thing that i can imagine is the jar is not ok, corrupted or something like that.
pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, create a user xwiki with proper grants (create database, create table, etc...), put the war into webapps jboss folder and breathe!
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101...
sorry for not be able to help you anymore!
regards
Hello Vincent. Thank you for your kindly reply. Yes we used the HBM file for oracle. We did all the things that were mentioned in the installtion guide for the xwiki. Creation of user on oracle, deployment, changement of the hibernate-cfg and copying the jdbc driver to the right place. I don't know if the problem is an issue of the xwiki. I would rather think that it is a problem of the geronimo server that we use. On the log of the geronimo server there is a warning that in the war file there is no geronimo-web.xml configuration. In that file you should give the geronimo server the information of using the database connection as I could read it form the geronimo doc The second big problem of using the xwiki is that we have here a deadline and there is simple no more time for trying to install it. I don't regret to try this lot on installing xwiki but I had hoped, when there is on the official page an info about xwikis compatibility for oracle that it would work. I cannot also say that we won't try xwiki in the future for an another project but currently it is because of the time. Maybe you can make some more tests in the future to really prove the oracle-support for xwiki. I think it would make it much more easier for slightly bigger companies to use xwiki if they really knew that it works properly. Altough thank you very much for the help. Best regards Oskar 2010/1/21 Vincent Massol <[email protected]>
Hi Oskar,
Too bad that you couldn't get it to work. I haven't followed but you're use the xwiki oracle HBM mapping file right?
AFAIK several users of xwiki are using Oracle. I know for sure it used to work and we haven't done changes to the database mapping so it would be strange it's not working anymore. What's possible though is that some features don't work without tweaking of the hibernate mapping or minor changes to the code (for ex Oracle considers NULL and empty strings as the same thing AFAIR) but the majority of features should work fine. And for features that don't work we can work together to fix them.
Thanks -Vincent
On Jan 21, 2010, at 1:23 PM, Oskar Marek Rzepinski wrote:
Hello everybody,
now after a lot of testing I think I have to look for an another wiki. I have the right driver, I checked this. The configuration is also not the problem, all parameters are O.K. I think that we have a problem with the geronimo server that don't let us connect to the database. It is really annoying that we won't get the xwiki running. The problem is, that for performance reasons we won't use any other database system or an another container than geronimo(tomcat). Thanks to all, who tried to help me.
Best regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
2010/1/20 Caleb James DeLisle <[email protected]>
The problem is definitely that XWiki can't get at the jdbc connector so I don't think creating the database will help, also XWiki uses a complicated schema so creating the tables manually is not really an option.
i think i did not suggest to create manually the schema!
I would go into the WEB-INF/lib and find the jdbc connector jar you added, open it with a zip program, (jar is just a special type of zip file) look inside and make sure it has the file oracle/jdbc/driver/OracleDriver.class Maybe you are using the wrong jdbc.
thats a good advice!
Your persistence is admirable!
Caleb
Oskar Marek Rzepinski wrote:
Hi Alonso.
Thank you for all the hints. You are writing about creating table. How do I create the table? I thought, that xwiki is doing this after the right configuration. Am I right? Or have you a simple how-to for creating the table? I have on oracle the user xwiki with all privileges. The deployment with the geronimo consle also worked fine. I am still thinking about the oracle if I have to do something more than creating only the user with the right grants as it is said in the installation guide on the xwiki page. Thanks again
regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
Hi Oscar, i dont know about to think, only thing that i can imagine is the jar is not ok, corrupted or something like that.
pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, create a user xwiki with proper grants (create database, create table, etc...), put the war into webapps jboss folder and breathe!
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101...
sorry for not be able to help you anymore!
regards
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
On Jan 21, 2010, at 1:52 PM, Oskar Marek Rzepinski wrote:
Hello Vincent.
Thank you for your kindly reply.
Yes we used the HBM file for oracle. We did all the things that were mentioned in the installtion guide for the xwiki. Creation of user on oracle, deployment, changement of the hibernate-cfg and copying the jdbc driver to the right place. I don't know if the problem is an issue of the xwiki. I would rather think that it is a problem of the geronimo server that we use. On the log of the geronimo server there is a warning that in the war file there is no geronimo-web.xml configuration. In that file you should give the geronimo server the information of using the database connection as I could read it form the geronimo doc
Well maybe you've configured Geronimo to use connection pools and you haven't configured xwiki to do so.
The second big problem of using the xwiki is that we have here a deadline and there is simple no more time for trying to install it.
I don't regret to try this lot on installing xwiki but I had hoped, when there is on the official page an info about xwikis compatibility for oracle that it would work. I cannot also say that we won't try xwiki in the future for an another project but currently it is because of the time. Maybe you can make some more tests in the future to really prove the oracle-support for xwiki. I think it would make it much more easier for slightly bigger companies to use xwiki if they really knew that it works properly.
Well not mean people here uses Oracle in the XWiki community. However since you mention "bigger companies" I'd recommend that you contact XWiki SAS (http://xwiki.com) who offers professional services. I'm sure they'll be able to help and quickly at that. You could also sponsor increased support for Oracle (through XWiki SAS for example). Thanks -Vincent
Altough thank you very much for the help.
Best regards Oskar
2010/1/21 Vincent Massol <[email protected]>
Hi Oskar,
Too bad that you couldn't get it to work. I haven't followed but you're use the xwiki oracle HBM mapping file right?
AFAIK several users of xwiki are using Oracle. I know for sure it used to work and we haven't done changes to the database mapping so it would be strange it's not working anymore. What's possible though is that some features don't work without tweaking of the hibernate mapping or minor changes to the code (for ex Oracle considers NULL and empty strings as the same thing AFAIR) but the majority of features should work fine. And for features that don't work we can work together to fix them.
Thanks -Vincent
On Jan 21, 2010, at 1:23 PM, Oskar Marek Rzepinski wrote:
Hello everybody,
now after a lot of testing I think I have to look for an another wiki. I have the right driver, I checked this. The configuration is also not the problem, all parameters are O.K. I think that we have a problem with the geronimo server that don't let us connect to the database. It is really annoying that we won't get the xwiki running. The problem is, that for performance reasons we won't use any other database system or an another container than geronimo(tomcat). Thanks to all, who tried to help me.
Best regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
2010/1/20 Caleb James DeLisle <[email protected]>
The problem is definitely that XWiki can't get at the jdbc connector so I don't think creating the database will help, also XWiki uses a complicated schema so creating the tables manually is not really an option.
i think i did not suggest to create manually the schema!
I would go into the WEB-INF/lib and find the jdbc connector jar you added, open it with a zip program, (jar is just a special type of zip file) look inside and make sure it has the file oracle/jdbc/driver/OracleDriver.class Maybe you are using the wrong jdbc.
thats a good advice!
Your persistence is admirable!
Caleb
Oskar Marek Rzepinski wrote:
Hi Alonso.
Thank you for all the hints. You are writing about creating table. How do I create the table? I thought, that xwiki is doing this after the right configuration. Am I right? Or have you a simple how-to for creating the table? I have on oracle the user xwiki with all privileges. The deployment with the geronimo consle also worked fine. I am still thinking about the oracle if I have to do something more than creating only the user with the right grants as it is said in the installation guide on the xwiki page. Thanks again
regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
> Hi Oscar, > i dont know about to think, only thing that i can imagine is the jar is not > ok, corrupted or something like that. > > pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, > create a user xwiki with proper grants (create database, create table, > etc...), put the war into webapps jboss folder and breathe! > > >
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101...
> > sorry for not be able to help you anymore! > > regards
On Jan 21, 2010, at 2:00 PM, Vincent Massol wrote:
On Jan 21, 2010, at 1:52 PM, Oskar Marek Rzepinski wrote:
Hello Vincent.
Thank you for your kindly reply.
Yes we used the HBM file for oracle. We did all the things that were mentioned in the installtion guide for the xwiki. Creation of user on oracle, deployment, changement of the hibernate-cfg and copying the jdbc driver to the right place. I don't know if the problem is an issue of the xwiki. I would rather think that it is a problem of the geronimo server that we use. On the log of the geronimo server there is a warning that in the war file there is no geronimo-web.xml configuration. In that file you should give the geronimo server the information of using the database connection as I could read it form the geronimo doc
Well maybe you've configured Geronimo to use connection pools and you haven't configured xwiki to do so.
The second big problem of using the xwiki is that we have here a deadline and there is simple no more time for trying to install it.
I don't regret to try this lot on installing xwiki but I had hoped, when there is on the official page an info about xwikis compatibility for oracle that it would work. I cannot also say that we won't try xwiki in the future for an another project but currently it is because of the time. Maybe you can make some more tests in the future to really prove the oracle-support for xwiki. I think it would make it much more easier for slightly bigger companies to use xwiki if they really knew that it works properly.
Well not mean people here uses Oracle in the XWiki community. However since you mention "bigger companies" I'd recommend that you contact XWiki SAS (http://xwiki.com) who offers professional services. I'm sure they'll be able to help and quickly at that.
typo: s/mean/many/ We're not mean here :) -Vincent
You could also sponsor increased support for Oracle (through XWiki SAS for example).
Thanks -Vincent
Altough thank you very much for the help.
Best regards Oskar
2010/1/21 Vincent Massol <[email protected]>
Hi Oskar,
Too bad that you couldn't get it to work. I haven't followed but you're use the xwiki oracle HBM mapping file right?
AFAIK several users of xwiki are using Oracle. I know for sure it used to work and we haven't done changes to the database mapping so it would be strange it's not working anymore. What's possible though is that some features don't work without tweaking of the hibernate mapping or minor changes to the code (for ex Oracle considers NULL and empty strings as the same thing AFAIR) but the majority of features should work fine. And for features that don't work we can work together to fix them.
Thanks -Vincent
On Jan 21, 2010, at 1:23 PM, Oskar Marek Rzepinski wrote:
Hello everybody,
now after a lot of testing I think I have to look for an another wiki. I have the right driver, I checked this. The configuration is also not the problem, all parameters are O.K. I think that we have a problem with the geronimo server that don't let us connect to the database. It is really annoying that we won't get the xwiki running. The problem is, that for performance reasons we won't use any other database system or an another container than geronimo(tomcat). Thanks to all, who tried to help me.
Best regards Oskar
2010/1/20 Alonso Isidoro Roman <[email protected]>
2010/1/20 Caleb James DeLisle <[email protected]>
The problem is definitely that XWiki can't get at the jdbc connector so I don't think creating the database will help, also XWiki uses a complicated schema so creating the tables manually is not really an option.
i think i did not suggest to create manually the schema!
I would go into the WEB-INF/lib and find the jdbc connector jar you added, open it with a zip program, (jar is just a special type of zip file) look inside and make sure it has the file oracle/jdbc/driver/OracleDriver.class Maybe you are using the wrong jdbc.
thats a good advice!
Your persistence is admirable!
Caleb
Oskar Marek Rzepinski wrote: > Hi Alonso. > > Thank you for all the hints. You are writing about creating table. How do I > create the table? I thought, that xwiki is doing this after the right > configuration. Am I right? Or have you a simple how-to for creating the > table? I have on oracle the user xwiki with all privileges. The deployment > with the geronimo consle also worked fine. I am still thinking about the > oracle if I have to do something more than creating only the user with the > right grants as it is said in the installation guide on the xwiki page. > Thanks again > > > regards Oskar > > > 2010/1/20 Alonso Isidoro Roman <[email protected]> > >> Hi Oscar, >> i dont know about to think, only thing that i can imagine is the jar is not >> ok, corrupted or something like that. >> >> pls, try downloading again the jar, put it in /WEB-INF/lib xwiki´s folder, >> create a user xwiki with proper grants (create database, create table, >> etc...), put the war into webapps jboss folder and breathe! >> >> >>
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101...
>> >> sorry for not be able to help you anymore! >> >> regards
On 01/21/2010 01:23 PM, Oskar Marek Rzepinski wrote:
Hello everybody,
now after a lot of testing I think I have to look for an another wiki. I have the right driver, I checked this. The configuration is also not the problem, all parameters are O.K. I think that we have a problem with the geronimo server that don't let us connect to the database. It is really annoying that we won't get the xwiki running. The problem is, that for performance reasons we won't use any other database system or an another container than geronimo(tomcat). Thanks to all, who tried to help me.
I would suggest preparing a complete, configured war, then deploy it to the container. This means: - unzip the xwiki war - copy the connector jar into the lib folder - configure hibernate - zip the whole folder into xwiki.war - deploy this file Some containers don't take into account changes done in a deployed war, and always use the files from inside it. -- Sergiu Dumitriu http://purl.org/net/sergiu/
I will look forward at this tommorow, but we have only time till morning midday to get a working wiki system. I will check the option with the configured war. How about the connection pool at geronimo. What do you mean by that Vincent? It would be great if you could explain in some common words how to configure xwiki for this. I will try all your new hints and whenever I will have the time at my work. For the first, if the time passes by a simple wiki like JSPwiki is fine for the beginning. But there will be in the future some new versions, so I admit that it will be good if I get the xwiki running on geronimo. Best greatings from Germany If you have some more hints, I will forward to check everything to get it working. And yes, I can say after testing about 8 wikis that xwiki is far more comfortable than the others, but I tried them all on a linux server with mysql. The current situations does not let us to install a second dbms on the server for security reasons and therefore it will be great if in the near future I will get the xwiki up and running on geronimo with oracle. : ) Thanks once again. If the installtions turns into a successful story tommorw I will post it for others that might have the same problem. Thanks once again to all and please don't mind if you have any more hints, just post them. 2010/1/21 Sergiu Dumitriu <[email protected]>
On 01/21/2010 01:23 PM, Oskar Marek Rzepinski wrote:
Hello everybody,
now after a lot of testing I think I have to look for an another wiki. I have the right driver, I checked this. The configuration is also not the problem, all parameters are O.K. I think that we have a problem with the geronimo server that don't let us connect to the database. It is really annoying that we won't get the xwiki running. The problem is, that for performance reasons we won't use any other database system or an another container than geronimo(tomcat). Thanks to all, who tried to help me.
I would suggest preparing a complete, configured war, then deploy it to the container.
This means: - unzip the xwiki war - copy the connector jar into the lib folder - configure hibernate - zip the whole folder into xwiki.war - deploy this file
Some containers don't take into account changes done in a deployed war, and always use the files from inside it.
-- Sergiu Dumitriu http://purl.org/net/sergiu/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
participants (7)
-
Alonso Isidoro Roman -
Caleb James DeLisle -
Oskar Marek Rzepinski -
PERINAUD Christophe -
Pim, Alma -
Sergiu Dumitriu -
Vincent Massol