是否可以收集来自适配器并最终发送到客户端的最终JSON数据输出。目标是在输出最终发送回浏览器/客户端之前操纵输出。例如:
/* security { errors: ['SomeError'], isSuccesful: true } */
分为:
/* security { errors: [''], isSuccesful: true } */
这个功能在J2EE过滤器中可用,我不知道我们是否想要达到这个低级别。
是否可以在此方案中使用身份验证器?
例如:
public class CustomAuthenticator implements WorkLightAuthenticator {
public AuthenticationResult processRequest(HttpServletRequest request, HttpServletResponse response, boolean isAccessToProtectedResource)
throws IOException, ServletException { }
}
答案 0 :(得分:1)
如果您使用的是JavaScript适配器,则没有内置选项可以执行此操作。但是,可以按照建议将WARlet过滤器添加到WAR中。
如果您正在使用Java适配器(启动MobileFirst Platform Foundation 7.0),那么有一个" WLFilter"这与servlet过滤器非常相似,只是它不必在WAR文件中 - 它在适配器本身(因为它是 Java 适配器)。