首页 > 解决方案 > Corda 异常 - com.sc.corda.server.exception.CordaFlowException

问题描述

我是 Corda 的新手,这是我的第一篇文章。有时在新的干净部署之后 - 我在 Corda 中遇到问题。在哪里确定

[ERROR] 2018-09-26T06:26:00,545 [http-nio-3034-exec-7] ExposureController - com.sc.corda.node.exception.SCFlowException: Unable to Notarize Security Transactions! SignedTransaction(id=42F7307C39AA5B027E087D92934955D0D8EC2AECB0B41C23E98B537DCB14837F) [[13BC1048B86C401A5850F0E4169487F03C6AA7813FAFD9E3F1AC9729AFEEA094A86B8FCB8459729CC7F09AE379AE353DA3EADC9518D569E695F337B69909B10C]]
[ERROR] 2018-09-26T06:26:00,563 [http-nio-3034-exec-7] [dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is com.sc.corda.server.exception.CordaFlowException: com.sc.corda.node.exception.SCFlowException: Unable to Notarize Security Transactions! SignedTransaction(id=42F7307C39AA5B027E087D92934955D0D8EC2AECB0B41C23E98B537DCB14837F) [[13BC1048B86C401A5850F0E4169487F03C6AA7813FAFD9E3F1AC9729AFEEA094A86B8FCB8459729CC7F09AE379AE353DA3EADC9518D569E695F337B69909B10C]]] with root cause
com.sc.corda.server.exception.CordaFlowException: com.sc.corda.node.exception.SCFlowException: Unable to Notarize Security Transactions! SignedTransaction(id=42F7307C39AA5B027E087D92934955D0D8EC2AECB0B41C23E98B537DCB14837F) [[13BC1048B86C401A5850F0E4169487F03C6AA7813FAFD9E3F1AC9729AFEEA094A86B8FCB8459729CC7F09AE379AE353DA3EADC9518D569E695F337B69909B10C]]
	at com.sc.corda.server.controller.ExposureController.allocateAutomatedExposure(ExposureController.java:666) ~[classes!/:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_161]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_161]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_161]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_161]

n 功能最初按要求工作,但在新部署后或如果服务器上几天没有活动,那么我开始收到异常或流程无法按预期工作。我目前收到以下异常 - com.sc.corda.server.exception.CordaFlowException: com.sc.corda.node.exception.SCFlowException: Unable to Notarize Security Transactions!附件有完整的例外。谁能帮我找到解决方案

标签: exceptiondeploymentcorda

解决方案


com.sc.corda.server不是 Corda 的错误前缀之一。并且Unable to Notarize Security Transactions!不是 Corda 的错误信息之一。

它是由您实现的服务器生成的。我的猜测是您的服务器尝试启动流程,但流程失败,您自定义的错误消息表明它无法公证安全交易。


推荐阅读