英文:
Is it possible to kill hanging Flows in a corda node via another node?
问题
是可能从 Corda 流程内部终止 PartyA 节点上挂起的流程吗?
英文:
I have a scenario, where partyA rpc connection is not available on client side and all calls are forwarded via another corda node using flows.
Is it possible to kill hanging flows in PartyA node from inside a corda flow?
答案1
得分: 1
这是不可能的。不同的节点通常属于不同的实体,因此不支持通过P2P协议进行管理访问。您需要通过RPC访问节点才能终止流程。
英文:
No,this is not possible. Different nodes typically belong to different entities, so allowing adminstrative access via the p2p protocoll is not supported.
You need RPC access to a node to be able to kill flows.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论