RE: XMLC Taskdef jdk1.4.1_02

[email protected]
Newsgroups gmane.comp.java.enhydra.barracuda.general
Message-ID <[email protected]>
And we also switched to Ant 1.5.3beta, will check wat it does with 1.5.2 or
1.5.1...

-----Original Message-----
From: [email protected] [mailto:[email protected]]
Sent: Tuesday, 8 April 2003 15:37
To: [email protected]
Subject: RE: [Barracuda] XMLC Taskdef jdk1.4.1_02


Appologies for the delay, but it is something strange. After deleting all
the screen target directories everything works fine (even witf forcebuild
etc) with jdk1.4.1_02. I will try to find out wat exactly went wrong.
 
Regards,
Merg

-----Original Message-----
From: Jacob Kjome [mailto:[email protected]]
Sent: Friday, 4 April 2003 09:57
To: [email protected]
Subject: Re: [Barracuda] XMLC Taskdef jdk1.4.1_02



Nope, that's not the problem.  The org.enhydra.pache.xerces package, because
it is wrapped inside the enhydra package, no longer clashes with the regular
xerces packages.  That's the beauty of XMLC-2.2.  No more worries about
endorsed packages and Xerces2 clashing with XMLC's xerces version.

The issue is the that it can't find the xmlc options file.   Stefan, this
was the patch that you sent to me and I applied to XMLC's version of the
Xmlc taskdef.  Remember...where the options file  could be in a parent
directory and the taskdef would just look back up the directory path until
it finds the file?  Apparently, no file has been provided in the path.
Either that, or there is a bug in the patch or the way I patched it.

So, the solution is one of two things.

1.  Make sure the xmlc options file is somewhere in the directory path where
the Xmlc taskdef can find it.  It needs to be in one of the following paths
(based on the stacktrace):

\dvl\Java\gtsc\global\src\com\jnj\gtsc\global\barracuda\accountreport\screen
s
or
\dvl\Java\gtsc\global\html\global\accountreport

2.  If it does exist and still isn't finding it, maybe there is a bug and
you can look at the XMLC CVS to see the source for it.
http://debian-sf.objectweb.org/cvs/?group_id=
<http://debian-sf.objectweb.org/cvs/?group_id=49>  49
<http://debian-sf.objectweb.org/cvs/?group_id=49> 


Jake

At 09:30 AM 4/4/2003 +0200, you wrote:


Hi,

JDK 1.4 comes with XML classes itself. These are more recent, than those
XMLC wants to use. Since JDKs XML implementation has a higher priority
for the classloader, the new ones are used.
You could override that behaviour by using the "endorsed" mechanism (see
http://java.sun.com/j2se/1.4.1/docs/guide/standards/index.html
<http://java.sun.com/j2se/1.4.1/docs/guide/standards/index.html> ). 

org.enhydra.xml.xmlc.metadata.MetaDataElement extends
org.enhydra.apache.xerces.dom.ElementImpl. The latter is located in
xerces-1.4.4-xmlc-2.2.jar.

So, I'd try to put xerces-1.4.4-xmlc-2.2.jar into the endorsed
directory.

Regards,
Stefan

Am Fre, 2003-04-04 um 07.58 schrieb [email protected]:
> When using XMLC (the one that comes with Barracuda) with jdk1.4.1_02
> and ant 1.5.1 I get the error below. Everything runs fine with jdk
> 1.3.1 Am I overlooking something?
>  
>  
> This is the taskdef
>  
> <path id="xmlc.class.path">
>   <pathelement path="${lib-dir}/gnu-regexp-1.1.4.jar"/>
>   <pathelement path="${lib-dir}/jtidy-r7-xmlc-2.2.jar"/>
>   <pathelement path="${lib-dir}/xerces-1.4.4-xmlc-2.2.jar"/>
>   <pathelement path="${lib-dir}/xmlc-2.2.jar"/>
>   <pathelement path="${lib-dir}/xmlc-taskdef-xmlc-2.2.jar"/>
>  </path>
> 
> <taskdef name="xmlc" classname="org.enhydra.barracuda.taskdefs.Xmlc"
> classpathref="xmlc.class.path"/>
> 
> 
>  
> The error we get:
>  
> xmlc_globalaccountreport:
>      [xmlc] No options file could not be located for AccountList.html
> in paths
>
\dvl\Java\gtsc\global\src\com\jnj\gtsc\global\barracuda\accountreport\screen
s, \dvl\Java\gtsc\global\
> html\global\accountreport
>      [xmlc] Invoke XMLC on
> \dvl\Java\gtsc\global\html\global\accountreport\AccountList.html
>      [xmlc] java.lang.reflect.InvocationTargetException
>      [xmlc]     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
> Method)
>      [xmlc]     at
>
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
)
>      [xmlc]     at
>
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)
>      [xmlc]     at java.lang.reflect.Method.invoke(Method.java:324)
>      [xmlc]     at
> org.enhydra.barracuda.taskdefs.Xmlc.execute(Xmlc.java:591)
>      [xmlc]     at org.apache.tools.ant.Task.perform(Task.java:319)
>      [xmlc]     at
> org.apache.tools.ant.Target.execute(Target.java:309)
>      [xmlc]     at
> org.apache.tools.ant.Target.performTasks(Target.java:336)
>      [xmlc]     at
> org.apache.tools.ant.Project.executeTarget(Project.java:1306)
>      [xmlc]     at
> org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:371)
>      [xmlc]     at
> org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:143)
>      [xmlc]     at org.apache.tools.ant.Task.perform(Task.java:319)
>      [xmlc]     at
> org.apache.tools.ant.Target.execute(Target.java:309)
>      [xmlc]     at
> org.apache.tools.ant.Target.performTasks(Target.java:336)
>      [xmlc]     at
> org.apache.tools.ant.Project.executeTarget(Project.java:1306)
>      [xmlc]     at
> org.apache.tools.ant.Project.executeTargets(Project.java:1250)
>      [xmlc]     at org.apache.tools.ant.Main.runBuild(Main.java:610)
>      [xmlc]     at org.apache.tools.ant.Main.start(Main.java:196)
>      [xmlc]     at org.apache.tools.ant.Main.main(Main.java:235)
>      [xmlc] Caused by: java.lang.VerifyError: (class:
> org/enhydra/xml/xmlc/metadata/MetaDataElement, method: mergeElement
> signature: (Lorg/enhydra/xml/xmlc/metadata/MetaDataElement
> ;)V) Incompatible object argument for function call
>      [xmlc]     at java.lang.Class.forName0(Native Method)
>      [xmlc]     at java.lang.Class.forName(Class.java:140)
>      [xmlc]     at
>
org.enhydra.xml.xmlc.metadata.MetaDataDocument.class$(MetaDataDocument.java)
>      [xmlc]     at
>
org.enhydra.xml.xmlc.metadata.MetaDataDocument.<clinit>(MetaDataDocument.jav
a:89)
>      [xmlc]     at
>
org.enhydra.xml.xmlc.commands.options.OptionsParser.getMetaData(OptionsParse
r.java:337)
>      [xmlc]     at
>
org.enhydra.xml.xmlc.commands.options.OptionsParser.parse(OptionsParser.java
:315)
>      [xmlc]     at
>
org.enhydra.xml.xmlc.commands.xmlc.XMLCOptionsParser.parse(XMLCOptionsParser
.java:75)
>      [xmlc]     at
> org.enhydra.xml.xmlc.commands.xmlc.XMLC.parseArgs(XMLC.java:78)
>      [xmlc]     at
> org.enhydra.xml.xmlc.commands.xmlc.XMLC.compile(XMLC.java:97)
>      [xmlc]     at
> org.enhydra.xml.xmlc.commands.xmlc.XMLC.compileHandleErrors(XMLC.java:118)
>      [xmlc]     at
> org.enhydra.xml.xmlc.commands.xmlc.XMLC.main(XMLC.java:129)
>      [xmlc]     ... 19 more
>  
> BUILD FAILED
> file:C:/Dvl/Java/gtsc/global/build.xml:628
<file://C:\Dvl\Java\gtsc\global\build.xml:628> :
> java.lang.reflect.InvocationTargetException

_______________________________________________
Barracuda mailing list
[email protected]
http://barracudamvc.org/lists/listinfo/barracuda
<http://barracudamvc.org/lists/listinfo/barracuda>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.