> XJB cannot test EJB's with local interfaces only
> ------------------------------------------------
>
> Key: XJB-5
> URL:
http://jira.codehaus.org/browse/XJB-5> Project: XJB
> Issue Type: Bug
> Environment: Latest snapshot
> Reporter: Thorbjørn Ravn Andersen
>
> The following ejb-jar.xml snippet causes XjbEjbJarParser().read() to fail with a NullPointerException.
> <session>
> <description>Common</description>
> <ejb-name>Common</ejb-name>
> <local-home>com.axsscm.ejb.CommonHome</local-home>
> <local>com.axsscm.ejb.Common</local>
> <ejb-class>com.axsscm.ejb.CommonBean</ejb-class>
> <session-type>Stateless</session-type>
> <transaction-type>Container</transaction-type>
> </session>