| Andrew Cooke | Contents | Latest | RSS | Twitter | Previous | Next

C[omp]ute

Welcome to my blog, which was once a mailing list of the same name and is still generated by mail. Please reply via the "comment" links.

Always interested in offers/projects/new ideas. Eclectic experience in fields like: numerical computing; Python web; Java enterprise; functional languages; GPGPU; SQL databases; etc. Based in Santiago, Chile; telecommute worldwide. CV; email.

Personal Projects

Lepl parser for Python.

Colorless Green.

Photography around Santiago.

SVG experiment.

Professional Portfolio

Calibration of seismometers.

Data access via web services.

Cache rewrite.

Extending OpenSSH.

Last 100 entries

NYT Has More Details; Obvious Question; Advertising Low Cost Routes?; Similar Analysis Here; My Current Take On Surveillance Scandal; Last.fm is Hiring; How I Am 2; The back-wards compatibility fallacy; Wiggle The Mouse To Pass The Test; Python Enums on Crack, Part II; Multiple Monitors with Linux; What Is Happening In Turkey; A Simpler Enum; John Fogerty on IAmA; And You May Well Ask...; Progress on a Better Enum; I'm a MACHIIIIIIIIIIIIIIINE; Those little tab things on the side of jet engines; Re: Python's sad, unimaginative Enum; Some explanation; Printing binary trees sideways; About "Python's sad, unimaginative Enum"; Atoms in python; Some good feedback here; Frustration Understood; I agree with you #nt; What would be imaginative?; Re: Enum; this is fucking useless; Enum; Python's sad, unimaginative Enum; Possible Fix; Work, Exhaustion, Vacation; VirtualBox with Centos 6.3 to 6.4, client; Matasano - Programming Lessons Learned; PDF to HTML; Alternate Substitution; Why RSA Works; Trigger; Dreaming of Death; Example: Tracing; Using Coroutines In Protocol Simulations; Python 3.3 Only; Pure Python SHA1 and MD4 Implementations; Ubuntu on VirtualBox; Starting TOR as a service on OpenSuse 12.3; 1001 Albums; Using fail2ban on OpenSuse 12.3; PPPoE on OpenSuse 12.3; Good Article on Unified Physics; It's Police (Carabineros); Linux Software for Listening to and Exploring Music; Android is Pretty Bad; Lucky Number; 3D Printing for Casting; Cover Art for MPDroid; Who'd a thought the French were so bigoted?; PS Input Signal; Small Problem with Roksan K2 Amp; Roksan K2 Amp + ATC SCM7 Speakers; Do What Makes Sense; Re: Arguing About Tests, Still; Arguing About Tests, Still; Images; Good Article on NY Drummers; Related Bug Report; Getting Python 3.3 and Virtualenv Working in OpenSuse 12.3; How I Am; Awesome video about digital audio; The Difference Between Dimensional and Normalized Databases; The rise of the new Chinese bogeyman; Updated Syntax; Very First Steps to C-ORM; The Ideal User Interface For Music Exploration; Can The Republicans Be Saved?; Rate Limiting Calls to EchoNest; Mods to Cache; Comparing UYKFG and UYKFD/E/F; Someone Else is Concerned; EchoNest-based Playlist Generator for MPD; Example Voting Results; A Heavyweight Python Cache; Identifying Artists with EchoNest; Notes on Pregalex / Pregabalina / Lyrica; The Neil Cowley Trio; Drake - Make for Data; A Reliable Python Web Service; Useful Python Date/Time Library?; Need to Sleep, But this is Good; Command Line Set Difference; Little Details...; Linux Command Line Tricks; AutoTools Tutorial; Hangman Tactics; A Tor Proxy Embedded In A Web Page; Tree (Nested Dicts) in Python; Sleeping at Parties; I Know Someone Who Hurts Other People; Light and Tea; Description of the LCS35 Time Capsule Crypto-Puzzle; Re: I can relate to that ...

© 2006-2013 Andrew Cooke (site) / post authors (content).

Java XML dependencies, Deployment, Building etc

From: "andrew cooke" <andrew@...>

Date: Fri, 17 Mar 2006 12:33:33 -0400 (CLT)

[This from an email I just sent at work]

This is probably going to be a fairly common problem, and is something
that could affect deployment.

Java famously has a problem when different (and incompatible) versions of
jars exist on the classpath (google "Java Jar Hell").  This is
particularly true for XML libraries, which have to track rapidly evolving
standards.

For example, Java 1.5 includes Xerces 2.6.2 (same classes, renamed to
com.sun), but Apache Commmons Pool (which several 3rd party packages
depend on) depends on Xerces 2.0.2.  Having both Xerces jars in the same
classpath causes problems.

To work around this:
- we need to exclude certain dependncies in Maven
- we need to be aware fo possible problems during deployment

I have solved (I believe) my immediate problems by blocking Xerces
dependencies in Maven.  In the POM I define dependencies like:

    <dependency>
      <groupId>some.group</groupId>
      <artifactId>some.artifact</artifactId>
      <version>version</version>
      <exclusions>
        <exclusion>
          <groupId>xerces</groupId>
          <artifactId>xerces</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

For deployment this may be insufficient.  Xerces may already be present in
JBoss, for example.

Andrew

More Details: AbstractMethodError (Xerces 2.6.2 with 2.0.2)

From: "andrew cooke" <andrew@...>

Date: Fri, 17 Mar 2006 12:35:50 -0400 (CLT)

[From an email sent to the Xerces mailing list]

I have code with the line:
  element.setIdAttribute(ID, true);
where element is an instance of org.w3c.dom.NodeList and the base document
was created via javax.xml.parsers.DocumentBuilderFactory.newInstance() \
.newDocumentBuilder().newDocument()

This gives the error:
  java.lang.AbstractMethodError:
    org.apache.xerces.dom.ElementImpl.setIdAttribute(Ljava/lang/String;Z)V

I am using Java 1.5.0_04-b05 (JAXP 1.3; Xerces-J 2.6.2) on Suse 9.3.

After some investigation it seems that this only happens when Xerces 2.0.2
appears on the classpath.  This is true even if I explcitly include (in
addition to 2.0.2) Xerces 2.6.2 (rather than relying on JAXP) and use
  -Dorg.apache.xerces.xni.parser.XMLParserConfiguration=
    org.apache.xerces.parsers.StandardParserConfiguration

Questions:
- Is there any way to avoid this error *without* cleaning old versions of
Xerces out of the claspath?
- And is cleaning old versions of Xerces out of the classpath guaranteed
to fix this?

Doesn't Carry Across to Eclipse via mvn eclipse:eclipse

From: "andrew cooke" <andrew@...>

Date: Fri, 17 Mar 2006 13:36:43 -0400 (CLT)

Unfortunately this doesn't carry across to Eclipse.  When the test runs in
Eclipse it still fails with the same error.  This is because the
dependency comes via other projects in eclipse; Eclipse's dependency
handling doesn't "know about" Mule's exclusion.

To fix this, you need to delete Xerces from the projects on which the root
project depends within Eclipse.  To see the list, use "Configure Build
Path" in the root project.  Then use the same dialogue in each sub-project
to remove Xerces.  This probably has to be repeated after each run of mvn
eclipse:eclipse.

Specifying an External/Later Xerces/Xalan

From: "andrew cooke" <andrew@...>

Date: Sat, 18 Mar 2006 09:07:37 -0400 (CLT)

To specify a later, external release of Xerces/Xalan you need to follow
the instructions here:

http://xerces.apache.org/xerces2-j/faq-dom.html#faq-7
http://xml.apache.org/xalan-j/faq.html#jdk14
http://java.sun.com/j2se/1.4.2/docs/guide/standards/

Basically, you grab the xalan tarball and place the jars in jre/lib/endorsed.

Once that is done, Java uses those implementations by default.  You can
test this by writing code as described at
http://xml.apache.org/xalan-j/faq.html#faq-N10064

HOWEVER... while this works from the command line, or in Maven, it does
not work for code executed inside Eclipse.  At least, when running junit
tests in Eclipse 3.1.0 the diagnostics reported the internal JAXP (instead
of the endorsed libraries) in the following cases:

- with the libraries deployed as above
- as above plus a "vmarg" to eclipse defining the directory
- as above plus appearing in the build path for the project
- as above plus appearing in the Java VM libraries (as defined in Eclipse)

Simple works!

From: "andrew cooke" <andrew@...>

Date: Sun, 28 May 2006 11:05:21 -0400 (CLT)

Whoa.  Whatever I was doing earlier (above) was way too complex.

I don't know what happened, but I ended up with things broken again.  So I
cleaned out everything (Eclipse config, Maven pom, Java) and started from
zero.

All that was necessary was:

- exclude xerces from any dependnecy in the pom.  This stops 2.0 being
pulled in, which messes everything up.

- declare xercesImpl 2.6.2 as a dependency

That's it.  Everything just works.  Duh.

Comment on this post