Brandon, We're using the Oracle XML Parser V2. I know that that's not much to go on.
Thanks, Richard -----Original Message----- From: Brandon Goodin [mailto:[EMAIL PROTECTED] Sent: Thursday, February 24, 2005 2:51 PM To: ibatis-user-java@incubator.apache.org Subject: Re: java.lang.NoSuchMethodError at com.ibatis.common.xml.NodeletP arse r.processNodelet(NodeletParser.java:112) Sorry, The 1.4 exception handling has been changed. It is now 1.3 compatible. Yes, it is in the 2.0.9b release. If you still get the error it is possible you have a xml parser problem. What xml parser implementation are you using? Brandon On Thu, 24 Feb 2005 22:36:09 -0000, Yee, Richard K, CTR,, DMDCWEST <[EMAIL PROTECTED]> wrote: > Brandon, > Thanks for your reply. Which release is it fixed in? 2.0.9b? Which > problem are you referring to? I tried replacing the call to > RuntimeException(Object, > Throwable) on line 112 with a RuntimeException(String) and still got the > same error. I want to know if the exception that is thrown when > nodelet.process(Node) is called on line 110. > > Thanks, > > Richard > > > -----Original Message----- > From: Brandon Goodin [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 24, 2005 2:11 PM > To: ibatis-user-java@incubator.apache.org > Subject: Re: java.lang.NoSuchMethodError at > com.ibatis.common.xml.NodeletParse > r.processNodelet(NodeletParser.java:112) > > This is a known problem. It has been fixed for the next release. > > Brandon > > On Thu, 24 Feb 2005 21:50:26 -0000, Yee, Richard K, CTR,, DMDCWEST > <[EMAIL PROTECTED]> wrote: > > Hello list, > > I'm using JDK 1.3.1_04 and Oracle Application Server 9.0.2. I'm > > getting the following error: > > > > 2/24/05 1:31 PM: java.lang.NoSuchMethodError > > 2/24/05 1:31 PM: at > > com.ibatis.common.xml.NodeletParser.processNodelet(NodeletParser.java:112) > > 2/24/05 1:31 PM: at > > com.ibatis.common.xml.NodeletParser.process(NodeletParser.java:94) > > 2/24/05 1:31 PM: at > > com.ibatis.common.xml.NodeletParser.process(NodeletParser.java:91) > > 2/24/05 1:31 PM: at > > com.ibatis.common.xml.NodeletParser.process(NodeletParser.java:91) > > 2/24/05 1:31 PM: at > > com.ibatis.common.xml.NodeletParser.parse(NodeletParser.java:61) > > 2/24/05 1:31 PM: at > > com.ibatis.common.xml.NodeletParser.parse(NodeletParser.java:49) > > 2/24/05 1:31 PM: at > > com.ibatis.sqlmap.engine.builder.xml.SqlMapConfigParser.parse(SqlMap > > Co > > nfigPa > > rser.java:77) > > 2/24/05 1:31 PM: at > > > com.ibatis.sqlmap.engine.builder.xml.SqlMapConfigParser.parse(SqlMapCo > nfigPa > > rser.java:68) > > 2/24/05 1:31 PM: at > > > com.ibatis.sqlmap.client.SqlMapClientBuilder.buildSqlMapClient(SqlMapC > lientB > > uilder.java:78) > > 2/24/05 1:31 PM: at > > > com.ibatis.dao.engine.transaction.sqlmap.SqlMapDaoTransactionManager.c > onfigu > > re(SqlMapDaoTransactionManager.java:52) > > 2/24/05 1:31 PM: at > > > com.ibatis.dao.engine.builder.xml.XmlDaoManagerBuilder.parseTransactio > nManag > > er(XmlDaoManagerBuilder.java:190) > > 2/24/05 1:31 PM: at > > > com.ibatis.dao.engine.builder.xml.XmlDaoManagerBuilder.parseContext(Xm > lDaoMa > > nagerBuilder.java:154) > > 2/24/05 1:31 PM: at > > > com.ibatis.dao.engine.builder.xml.XmlDaoManagerBuilder.buildDaoManager > (XmlDa > > oManagerBuilder.java:99) > > > > Here is the code for processNodelet() from > > com.ibatis.common.xml.NodeletParser.java > > private void processNodelet(Node node, String pathString) { > > Nodelet nodelet = (Nodelet) letMap.get(pathString); > > if (nodelet != null) { > > try { > > nodelet.process(node); > > } catch (Exception e) { > > throw new RuntimeException("Error parsing XPath '" + > > pathString + "'. Cause: " + e); > > } > > } > > } > > > > One thing I know is that the call to new RuntimeException(String, > > Throwable) is a 1.4 specific method signature. I'm trying to find > > the problem thats causing the application to fail in the first > > place. The same application and sqlMap files work on JDeveloper 10g. > > Is this a XML library compatibility problem? > > > > Thanks, > > > > Richard > > > > >