Voiceglue 期待 '='在 cookie 属性名称之后

发布于 2024-12-14 13:52:26 字数 212 浏览 2 评论 0原文

我在 /var/log/dynlog/dynlog

15:35:54:525 EROR OPEN_VXI luke---- callid=[58] |1098905920|58|SEVERE|swi:SBinet|257|SBinet 中执行时遇到以下 Voiceglue 错误: cookie 属性后需要有“=”名称|attributeSpec=HttpOnly|属性=HttpOnly\n

I am getting following Voiceglue error while executing in /var/log/dynlog/dynlog

15:35:54:525 EROR OPEN_VXI luke---- callid=[58] |1098905920|58|SEVERE|swi:SBinet|257|SBinet: Expecting '=' after cookie attribute's name|attributeSpec=HttpOnly|attribute=HttpOnly\n

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

み零 2024-12-21 13:52:26

我没有答案,但我已经找到了产生问题的代码。也许我们可以共同努力找出发生这种情况的原因。我是一名开发人员,但还不了解这款 SB* 和朋友浏览器的工作原理。

if (hasValue)
{
  // Now we have to deal with attributes of the form x=y
  if ((p = SBinetHttpUtils::expectChar(p,"=")) == NULL || !*p)
  {
    if (logger)
      logger->Error(257, L"%s%S%s%S", L"attributeSpec", attributeSpec,L"attribute", attribute);
    return NULL;
  }
  p++;

位于openvxi-3.4+vglue/src/inet/SBinetCookie.cpp

如果你想停止由未处理的错误引起的无限循环。正确的方法是将标签添加到无限抛出的 java 错误引发的未处理事件中。这是默认值,但在 ampersand.com 的示例中则不然

<error>
  <log expr="'*** unhandled event ' + _event + ' thrown : ' + _message + ' ***'"/>
  <prompt bargein="false">
    A technical problem just occurred,
    Please check the logs for more information.
  </prompt>
  <exit/>
</error>

I don't have the answer, but I have located the code that produces the issue. Maybe we can work together to find out why this happens. I am a Developer but don't yet have an understanding of how this SB* and friends browser works.

if (hasValue)
{
  // Now we have to deal with attributes of the form x=y
  if ((p = SBinetHttpUtils::expectChar(p,"=")) == NULL || !*p)
  {
    if (logger)
      logger->Error(257, L"%s%S%s%S", L"attributeSpec", attributeSpec,L"attribute", attribute);
    return NULL;
  }
  p++;

Located in openvxi-3.4+vglue/src/inet/SBinetCookie.cpp

If you want to stop the infinite looping caused by unhandled errors. The proper way is to add the tag to the unhandled event thrown by java errors that get thrown infinitely. This is in the defaults but not in the example from ampersand.com

<error>
  <log expr="'*** unhandled event ' + _event + ' thrown : ' + _message + ' ***'"/>
  <prompt bargein="false">
    A technical problem just occurred,
    Please check the logs for more information.
  </prompt>
  <exit/>
</error>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文