-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
1.0.0.CR3
-
Workaround Exists
-
Deployment of an EJB JAR failes with a NullPointerException in org.jboss.arquillian.container.glassfish.clientutils.GlassFishClientService.doDeploy.
The issue can be reproduced by a deployment like this:
@Deployment(testable = false)
public static Archive<?> createDeployment()
The classes UserInfoBean and UserInfo define a simple stateless bean, but that is not important here: The NullPointerException is thrown regardless of the actual contents of the deployed jar file.
Obviously subComponents is assigned null in doDeploy (line 219):
Map<String, String> subComponents = (Map<String, String>) subComponentsResponce.get("properties");