• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Strange JBoss error

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When I start JBoss (even a clean install of JBoss), I get the following error (and the JAR file is in the right place):
"java.lang.NoClassDefFoundError: javax/activation/DataSource" (see stack below)

---------------------------------
07:38:37,399 INFO [Engine] ContextConfig[/jboss-net]: Added certificates -> request attribute Valve
07:38:37,400 INFO [Engine] ContextConfig[/jboss-net]: Configured an authenticator for method BASIC
07:38:37,457 WARN [EmbeddedCatalinaService41] Unable to invoke setDelegate on class loader rg.jboss.mx.loading.UnifiedClassLoader3@c00025{ url=file:/usr/local/jboss-3.2.2RC1_tomcat-4.1.24/server/all/deploy/jboss-net.sar/ ,addedOrder=6}
07:38:37,457 INFO [Engine] StandardManager[/jboss-net]: Seeding random number generator class java.security.SecureRandom
07:38:37,458 INFO [Engine] StandardManager[/jboss-net]: Seeding of random number generator has been completed
07:38:37,460 INFO [Engine] StandardWrapper[/jboss-net efault]: Loading container servlet default
07:38:37,461 INFO [Engine] StandardWrapper[/jboss-net:invoker]: Loading container servlet invoker
07:38:37,472 INFO [AxisService] Starting
07:38:38,168 WARN [ServiceController] Problem starting service jboss.net:service=Axis
java.lang.NoClassDefFoundError: javax/activation/DataSource
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:141)
at org.apache.axis.encoding.ser.JAFDataHandlerSerializerFactory.class$(JAFDataHandlerSerializerFactory.java:71)
at org.apache.axis.encoding.ser.JAFDataHandlerSerializerFactory.getSerializerClass(JAFDataHandlerSerializerFactory.java:86)
at org.apache.axis.encoding.ser.JAFDataHandlerSerializerFactory.<init>(JAFDataHandlerSerializerFactory.java:74)
at org.apache.axis.encoding.DefaultTypeMappingImpl.<init>(DefaultTypeMappingImpl.java:145)
at org.apache.axis.encoding.DefaultTypeMappingImpl.getSingleton(DefaultTypeMappingImpl.java:119)
at org.apache.axis.encoding.TypeMappingRegistryImpl.<init>(TypeMappingRegistryImpl.java:172)
at org.apache.axis.deployment.wsdd.WSDDDeployment.<init>(WSDDDeployment.java:517)
at org.jboss.net.axis.Deployment.<init>(Deployment.java:69)
at org.jboss.net.axis.XMLResourceProvider.buildDeployment(XMLResourceProvider.java:81)
at org.jboss.net.axis.XMLResourceProvider.configureEngine(XMLResourceProvider.java:67)
---------------------------------

The activation.jar is in the lib folder, and like I said even if I create/run a clean JBoss package I still get this error. I am running Fedora c2.

Any ideas?

Thank you,

Ken
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm seeing something similar, trying to get a SOAP example to work. It appears to be due to the method signature for javax/activation/datasource not being able to handle byte arrays.

I've got Apache SOAP 2.3.1 and the latest JAF 1.0.2 from Sun - the code where I'm seeing the error is in the soap.jar
public void setRootPart(byte[] b, String contentType)
throws MessagingException {
ByteArrayDataSource ds = new ByteArrayDataSource(b, contentType);
DataHandler dh = new DataHandler(ds);

The signature for DataHandler and a data source requires a javax.activation.datasource obj, which ByteArrayDataSource isn't?

I dunno, its maddening.
 
Andy Bach
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, just a brief, in probably unhelpful follow up - w/o changing anything, except (in Eclipse) the version of the Javs SDK used (from 1.4.2 to 1.5), I got my app to compile and run.

My guess is its a bug. There's a mention of a change to the DataHandler to fix a bug in it in the last update, so ....

a
 
Crusading Chameleon likes the size of this ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic