> > While StAX is indeed part of JDK6, its more likely that you're simply > missing the stax-api and woodstox jars on your classpath. Woodstox is an > implementation > of StAX for JDKs <6. > > With maven they are correctly added to the classpath as transitive > dependencies. :)
Hi Holger, thanks. That did the trick. I already had those libraries on my project. I just forgot to include the stax-api-1.0.1.jar and stax2-api-3.0.1.jar when updating the dependencies in IntelliJ IDEA, so during deployment those jar-files didn't get copied over to the exploded folder. I'm not familiar with StaX myself and Googling for the missing class pointed me to the JDK docs first. The dependencies are listed here: http://tapestry.apache.org/tapestry5.1/tapestry-core/dependencies.html So even though that list was generated by Maven I can still happily keep ignoring it for my own projects :o) regards, Onno