gpt4 book ai didi

java - 在 Xpages 中。如何将值从 serviceBean(由 extlib REST 服务调用)传递回 Notes 文档

转载 作者:行者123 更新时间:2023-12-02 01:20:59 25 4
gpt4 key购买 nike

在 Xpages (9.0.1FP9) 中。我正在使用 extlib 从支付网关 (Braintree) 接收 Webhook。 REST 服务/serviceBean。我从 webhook 获取包并且可以解析信息。但我无法在 JAVA 中获取 Domino session 的句柄,因此我无法创建或更新 Notes 文档。
我的JAVA技能有限,所以我陷入困境。任何帮助将不胜感激。

Xpage
{
<xe:restService id="JSONSearch" pathInfo="test1" state="false">
<xe:this.service>
<xe:customRestService contentType="application/json"
serviceBean="com.mydomain.bt_Webhook1">
</xe:customRestService>
</xe:this.service>
</xe:restService>
}

package com.mydomain;

import java.io.IOException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.ibm.domino.services.ServiceException;
import com.ibm.domino.services.rest.RestServiceEngine;
import com.ibm.xsp.extlib.component.rest.CustomService;
import com.ibm.xsp.extlib.component.rest.CustomServiceBean;
import com.braintreegateway.*;
import lotus.domino.*;

public class bt_Webhook1 extends CustomServiceBean{

//=====================================================================
String btMerchantID = "abcdefgh1i2jk3lm";
String btPrivateKey = "abcdefghijkl2mnopq3rstuv4wxyz";
String btPublicKey = "zyxwvutsr1qpo2nm";

BraintreeGateway gateway = new BraintreeGateway(
Environment.SANDBOX, //Environment.SANDBOX or Environment.PRODUCTION
btMerchantID, //Merchant ID
btPublicKey, //Public Key
btPrivateKey //Private Key
);
//=====================================================================
@Override


//wissel.net; http://dominoherald.blogspot.com/2016/02/rest-via-service-bean.html
public void renderService(CustomService service, RestServiceEngine engine) throws ServiceException {
HttpServletRequest request = engine.getHttpRequest();
HttpServletResponse response = engine.getHttpResponse();

response.setHeader("Content-Type", "application/json; charset=UTF-8");
response.setStatus(200);

try {
String btsignature = request.getParameter("bt_signature");
String btpayload = request.getParameter("bt_payload");

WebhookNotification webhookNotification = gateway.webhookNotification().parse(
btsignature,
btpayload
);

String tKind = webhookNotification.getKind().toString();
String tTimeStamp = webhookNotification.getTimestamp().getTime().toString();
String tMerchantAcctID = webhookNotification.getMerchantAccount().getId();

System.out.println("------------------------------------------------");
System.out.println("tMerchantAcctID: " + tMerchantAcctID);
System.out.println("tKind: " + tKind);
System.out.println("tTimeStamp: " + tTimeStamp);
System.out.println("------------------------------------------------");

/*
//There is no way to create a new Domino Session in a Java Code element.
//The current Domino Session object must be passed as a parameter to the method via the global session object. (TLCC Java courseware)

Session session = getCurrentSession(); // -- ERROR The method getCurrentSession() is undefined for the type bt_Webhook1
Database db = session.getCurrentDatabase();
Document doc = db.createDocument();
doc.replaceItemValue("Form", "Webhook");
doc.replaceItemValue("webhook_Timestamp", "Timestamp");
doc.replaceItemValue("webhook_Kind", "Kind");
doc.replaceItemValue("webhook_MerchantAccountID", "MerchantAccountID");
doc.save();

doc.recycle();
db.recycle();
*/

response.getWriter().close();
System.out.println("done");
return;
} catch (IOException e) {
// TODO Auto-generated catch block
System.out.println(e.toString());
return;
}
}
}

最佳答案

您可以通过从 XPages 运行时解析 session 对象来获取它,例如Session s = (Session) ExtLibUtil.resolveVariable("session");

这是从 Eric McCormick 的博客文章 https://edm00se.io/xpages-servlets/servlets-handling-data-round-house-kick/ 中的代码扩展而来的。 。 ExtLibUtil 提供了使用 FacesContext 的快捷方式。

关于java - 在 Xpages 中。如何将值从 serviceBean(由 extlib REST 服务调用)传递回 Notes 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57695632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com