public void execute(final OperationContext context, final ModelNode operation) throws OperationFailedException {
final ServiceController<?> controller = context.getServiceRegistry(false).getService(WebSubsystemServices.deploymentServiceName(host, path));
if (controller != null) {
final String name = node.get("servlet-name").asString();
final Context webContext = Context.class.cast(controller.getValue());
final Wrapper wrapper = Wrapper.class.cast(webContext.findChild(name));
final ModelNode response = new ModelNode();
handle(response, address.getLastElement().getValue(), (StandardWrapper) wrapper);
context.getResult().set(response);
}
context.completeStep();