Corda 5 例外

问题描述 投票:0回答:1

我在corda 5中调用流程管理API时遇到此错误

/flow/{{short_hash}}

{
  "flowStatusResponses": [
    {
      "holdingIdentityShortHash": "4558C1BAA9F2",
      "clientRequestId": "test-flow-1",
      "flowId": "c05a1690-fa8e-46b4-a026-825205f086b5",
      "flowStatus": "FAILED",
      "flowResult": null,
      "flowError": {
        "type": "FLOW_FAILED",
        "message": "Execution failed with \"Failed to create the sandbox: Failed to resolve bundles: javax.activation-api [512], jaxb-api [513], com.opencsv [515]\" after 5 retry attempts."
      },
      "timestamp": "2023-09-28T15:33:14.410Z"
    }
  ]
}

有人知道这里发生了什么吗?我认为它应该可以工作,而不必添加任何额外的依赖项。

java corda corda-flow
1个回答
0
投票

我相信您的依赖库需要沙箱安全策略调整。您可以在这里找到更多解释:

https://docs.r3.com/en/platform/corda/5.0/deploying-operating/config/security-policies.html

© www.soinside.com 2019 - 2024. All rights reserved.