}
protected Object requestServiceWithFileRequest(QName serviceName, String fileOnClassPath) throws JBIException, TransformerException, ParserConfigurationException, IOException, SAXException {
Source content = getSourceFromClassPath(fileOnClassPath);
ServiceNameEndpointResolver resolver = new ServiceNameEndpointResolver(serviceName);
ServiceMixClient client = new DefaultServiceMixClient(container);
Object answer = client.request(resolver, null, null, content);
if (answer instanceof Source) {
answer = transformer.toDOMNode((Source) answer);