FW: [jboss-svn-commits] JBoss Common SVN: r2116 -common-old/branches/Branch_1_0/src/main/org/jboss/util/xml
by Dimitris Andreadis
This latest update to org/jboss/util/xml/DOMWriter.java breaks the build
of common Branch_1_0 because it changes the package of DOMWriter. It
would also break whoever is referencing this class in the jboss code.
-----Original Message-----
From: jboss-svn-commits-bounces(a)lists.jboss.org
[mailto:jboss-svn-commits-bounces@lists.jboss.org] On Behalf Of
jboss-svn-commits(a)lists.jboss.org
Sent: Tuesday, October 10, 2006 7:26 PM
To: jboss-svn-commits(a)lists.jboss.org
Subject: [jboss-svn-commits] JBoss Common SVN: r2116
-common-old/branches/Branch_1_0/src/main/org/jboss/util/xml
Author: thomas.diesler(a)jboss.com
Date: 2006-10-10 12:26:27 -0400 (Tue, 10 Oct 2006) New Revision: 2116
Modified:
common-old/branches/Branch_1_0/src/main/org/jboss/util/xml/DOMWriter.jav
a
Log:
[JBWS-762] DOMUtils.parse skips peer comments on Document node
Modified:
common-old/branches/Branch_1_0/src/main/org/jboss/util/xml/DOMWriter.jav
a
===================================================================
---
common-old/branches/Branch_1_0/src/main/org/jboss/util/xml/DOMWriter.jav
a 2006-10-10 12:16:40 UTC (rev 2115)
+++
common-old/branches/Branch_1_0/src/main/org/jboss/util/xml/DOMWriter.jav
a 2006-10-10 16:26:27 UTC (rev 2116)
@@ -53,7 +53,7 @@
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
-package org.jboss.util.xml;
+package org.jboss.ws.utils;
...
19 years, 6 months
HEAD testsuite
by Kabir Khan
Is there any reason why the testsuite in jboss-head is compiled using source
1.4? Is it ok to change this to be 1.5?
19 years, 6 months
latest xb and mc-1.0.2
by Alexey Loubyansky
Running jboss-4.0.5.CR1 with the latest XB snapshot revealed a problem.
I haven't investigated the cause yet but it looks like a consequence of
the global model group binding support Adrian added recently.
The error looks similar to the ones I fixed yesterday in the PojoServer
testcase in the testsuite of the AS. I had to fix the SchemaBinding
initialization in the test to make it work.
That means if you want to use the latest XB in the AS you will have to
use the latest MC. This is going to affect the next WS release at least.
The error I got was
Caused by: org.jboss.xb.binding.JBossXBException: Failed to parse
source: jar:file:/E:/cvsroot/Branch_4_0/buil
d/output/jboss-4.0.5.CR1-ejb3/server/default/tmp/deploy/tmp13277jbossws.beans!/META-INF/jboss-beans.xml@27,86
at
org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:164)
at
org.jboss.xb.binding.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:112)
at
org.jboss.deployment.SchemaBindingSimpleSubDeployerSupport.parseMetaData(SchemaBindingSimpleSubDepl
oyerSupport.java:51)
... 71 more
Caused by: java.lang.ClassCastException:
org.jboss.beans.metadata.plugins.AbstractPropertyMetaData
at
org.jboss.kernel.plugins.deployment.xml.BeanSchemaBinding$ValueMetaDataElementInterceptor.add(BeanS
chemaBinding.java:1242)
at
org.jboss.xb.binding.sunday.unmarshalling.SundayContentHandler.endElement(SundayContentHandler.java
:1011)
at
org.jboss.xb.binding.sunday.unmarshalling.SundayContentHandler.endElement(SundayContentHandler.java
:156)
at
org.jboss.xb.binding.parser.sax.SaxJBossXBParser$DelegatingContentHandler.endElement(SaxJBossXBPars
er.java:295)
at
org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
at
org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown
Source)
at
org.apache.xerces.xinclude.XIncludeHandler.emptyElement(Unknown Source)
at
org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown
So
urce)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown
Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown
Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown
Source)
at
org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
at
org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:160)
... 73 more
19 years, 6 months