List<Operation> operations =
filterOperationsByHttpMethod(interfaceContract, bindingContext.getHttpRequest().getMethod());
Operation operation = findOperation(path, operations);
final JavaOperation javaOperation = (JavaOperation)operation;
final Method method = javaOperation.getJavaMethod();
if (path != null && path.length() > 0) {
if (method.getAnnotation(Path.class) != null) {
msg.setBody(new Object[] {path});
}