Yes, 4.7 embedding. The jsp page looks like this:
<%@ page language="java" contentType="text/html; charset=UTF-8"
import="org.orbeon.oxf.fr.embedding.servlet.API"
pageEncoding="US-ASCII"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Insert title here</title>
</head>
<body>
<h1>Demo of an embedded form (New instance)</h1>
<h2> This is form type cpf/fdsa</h2>
<%
API.embedFormJava(
request, // HttpServletRequest: incoming HttpServletRequest
out, // Writer: where the embedded form is written
"cpf", // String: Form Runner form name
"fdsa", // String: Form Runner app name
"new", // String: Form Runner action name
null, // String: Form Runner document id (optional)
null, // String: query string (optional)
null // Map<String, String>: custom HTTP headers (optional)
);
%>
</body>
</html>