彗星/贝叶客户端问题



我们创建了.Net core Windows服务,用于使用来自Salesforce的平台事件(每当在Salesforce中创建/更新的特定对象想要获取信息时(。我们使用Cometd/bayeux客户端订阅Salesforce平台事件。

最初一切正常,每当 Salesforce 对象发生变化时,我们都会获取数据,但在空闲几个小时(大约 1-2 小时(后,没有数据得到。检查Bayeux客户端状态,它显示为已连接,但订阅未发生。当我们重新启动服务时,它开始工作。使用以下代码进行连接和订阅。 任何人都可以帮忙吗?

public void CheckAndSubscribe()
{
if (!_bayeuxClient.IsConnected())
{
_logger.LogInformation("Bayeux client not connected. trying to connect...");
try
{
SalesforceSession salesforceSessionData = _sfSessionAdapter.GetSalesforceSession();
_bayeuxClient.Connect(salesforceSessionData.Url, salesforceSessionData.SessionId);
List<string> sfChannels = _syncSalesforceConfiguration.BayeuxClientConfiguration.ExternalChannels;
foreach (string channel in sfChannels)
{
_bayeuxClient.Subscribe(channel, _messageListener);
}
_logger.LogInformation("Bayeux client connected and channels subscribed...");
}
catch (Exception ex)
{
_logger.LogException(ex);
}
}
}
public class BayeuxClientAdapter : IBayeuxClientAdapter
{
BayeuxClient _bayeuxClient = null;
private readonly SyncSalesforceConfiguration _syncSalesforceConfiguration;
public BayeuxClientAdapter(IOptions<SyncSalesforceConfiguration> syncSalesforceConfiguration)
{
_syncSalesforceConfiguration = syncSalesforceConfiguration.Value;
}
public bool IsConnected()
{
return _bayeuxClient?.Connected ?? false;
}
public void Connect(string instanceUrl, string authToken)
{
int readTimeOut = 120 * 1000;
string streamingEndpointURI = _syncSalesforceConfiguration.BayeuxClientConfiguration.StreamingEndpointUri;
IDictionary<string, object> options = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase)
{
{ ClientTransport.TIMEOUT_OPTION, readTimeOut },
{ ClientTransport.MAX_NETWORK_DELAY_OPTION, 120000 }
};
var headers = new NameValueCollection { { HttpRequestHeader.Authorization.ToString(), $"OAuth {authToken}" } };
var clientTransport = new LongPollingTransport(options, headers);
var serverUri = new Uri(instanceUrl);
String endpoint = String.Format("{0}://{1}{2}", serverUri.Scheme, serverUri.Host, streamingEndpointURI);
_bayeuxClient = new BayeuxClient(endpoint, new[] { clientTransport });
}
public void DisConnect()
{
if (IsConnected())
{
_bayeuxClient?.ResetSubscriptions();
_bayeuxClient?.Disconnect();
_bayeuxClient?.WaitFor(1000, new[] { BayeuxClient.State.DISCONNECTED });
}
}
public void Subscribe(string channel, IMessageListener listener)
{
_bayeuxClient.Handshake();
_bayeuxClient.WaitFor(1000, new[] { BayeuxClient.State.CONNECTED });
var sfChannel = _bayeuxClient.GetChannel(channel);
sfChannel.Subscribe(listener);
}
}

只要通道上没有活动,服务器就会在特定时间后关闭连接。

在此期间,客户端会收到403(未知客户端(状态代码,客户端必须在 110 秒内再次握手。

默认情况下,CometD 尝试在没有任何用户交互的情况下重新连接,如果客户端未在预期时间内重新连接,服务器将删除客户端的 CometD 会话。

连接重新连接后,ComedD 将删除所有频道订阅,我们必须再次订阅频道才能接收事件。

为此,我们必须使用meta/握手回调再次重新订阅频道。

我发现我必须订阅meta/不成功的事件并重新建立CometD连接和订阅。这允许客户端从Salesforce服务器断开连接中完全恢复。

你为BayeuxClient使用哪个nuget包?我需要使用 c# .net 从频道使用 salesforce 自定义平台事件

相关内容

  • 没有找到相关文章

最新更新