我需要实现一个要求,其他非后备应用程序将向我的bb应用程序发送HTTP POST请求。有一些预处理&验证将要完成,然后根据结果将客户端重定向到登录页面或错误页面。
在backbase中实现此功能的最佳方法是什么?
答案 0 :(得分:0)
您需要查看有关 Integration Services 的文档。 有关您的完整文档可在此处找到:https://my.backbase.com/docs/product-documentation/documentation//portal/5.6.2/develop_integrationservices.html
该文档将帮助您开发自己的服务(我更喜欢使用Camel Java DSL方式),您将获得如下网址:
http://localhost:7777/portalserver/services/rest/v1/myService
。
这里是Java实现服务的例子:
public class MyCamelService extends RouteBuilder {
@Override
public void configure() throws Exception {
from("restlet:/v1/myService")
.setBody().constant("<html><body><b>Hello World!</b></body></html>")
.setHeader("Content-Type", constant("text/html"));
}
}