<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.6.2">
  <TITLE>Does this work with Oracle or NOT?</TITLE>
</HEAD>
<BODY>
On Wed, 2005-04-06 at 11:14 -0500, Bryan Cantwell wrote:<BR>
<BLOCKQUOTE TYPE=CITE>
    <FONT SIZE="2"><FONT COLOR="#0000ff">Has anyone ever actually made OpenCMS work in Oracle? </FONT></FONT><FONT COLOR="#000000"> </FONT><BR>
    <FONT SIZE="2"><FONT COLOR="#0000ff">I have Oracle 9IAS and 817 db. I have deployed the war file it seems fine. I step thru the setup wizard and all goes fine, even creates the tables fine... But when the workspace import comes it </FONT></FONT><BR>
</BLOCKQUOTE>
We use OpenCMS with Oracle 10g. The problem you are having is related to the XML parser. Oracle provides its own implementation and it is very difficult to change it (and not recommended). What makes it blow up is at line 478 of org.opencms.configuration.CmsConfigurationManager (I'm looking at current CVS).<BR>
Change the line from:<BR>
<BR>
m_digester.setValidating(true);<BR>
<BR>
to<BR>
<BR>
m_digester.setValidating(false);<BR>
<BR>
and it should work.<BR>
<BR>
Tristan
</BODY>
</HTML>