This is wrong application design. Besides, web and ejb classes have different classloaders. Shared classes, api's, libraries should be packaged into library jars and put into ear's library directory.
META-INF/appplication.xml :
<application xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_6.xsd"
version="6">
<module>
<ejb>ejb.jar</ejb>
</module>
<module>
<web>
<web-uri>web.war</web-uri>
<context-root>/</context-root>
</web>
</module>
<library-directory>libs</library-directory>
</application>
Create directory libs in ear archive and put there all the shared classes. They will be available both to ejb and web classloaders.