anonymous wrote :
| I'll follow up with a separate JIRA and test case for this.
|
| Error: Unresolved dependencies are not reported when deployed via JMX.
|
| S,
| ALR
|
|
Isn't that just this TODO in the ServiceDeployer
|
| /**
| * Create a new ServiceDeployer.
| *
| * @param controller the service controller
| * @throws IllegalArgumentException for a null controller
| */
| public ServiceDeployer(ServiceController controller)
| {
| super(ServiceMetaData.class);
| if (controller == null)
| throw new IllegalArgumentException("Null controller");
| this.controller = controller;
| setComponentsOnly(true);
| // TODO setUseUnitName(true);
| }
|
i.e. tell the deployment layer which JMX contexts are part of the deployment
so it can do the ICDE properly
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4142635#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...