}
public CommanderChainer requestReceivedInDev(final String requestPath, final StringBuffer response) throws MalformedRequestException, ResourceNotFoundException, ContentProcessingException, UnsupportedEncodingException {
call(new Command() {
public void call() throws Exception {
ResponseContent content = bundlableNode.handleLogicalRequest(requestPath, new StaticContentAccessor(bundlableNode.app()), bundlableNode.root().getAppVersionGenerator().getDevVersion());
ByteArrayOutputStream pluginContent = new ByteArrayOutputStream();
content.write(pluginContent);
response.append(pluginContent.toString(BladerunnerConf.OUTPUT_ENCODING));
}
});