我遇到了一个基于M13的问题。请帮我修一下。您有一种将所有类添加到白名单中的通用方法吗?
我使用customCriteria如下所示:
val customCriteria1 = QueryCriteria.VaultCustomQueryCriteria( builder{ LegalContractSchemaV1.PersistentLegalContractState::contractTitle.equal(test.legalEntity)})
这是我的白名单。
class AppPlugin: CordaPluginRegistry() {
override fun c
我正在尝试使用该组件连接到Corda,并使用Apache的Corda组件再次向Apache发送数据。
科达跑得很好。特别是,cardapp应用程序示例正在运行,公证- PartyA - PartyB和PartyC还活着.我可以用他们的终端查询。ActiveMQ工作正常,我用另一个输入源测试它。我还尝试连接所有四个节点的不同本地主机端口,以及Camel的corda组件网页中显示的示例。
public class CordaConnector {
public void ConnectToCorda() throws Exception {
CamelContext con
在Corda3.1中,我正在运行一个带有验证公证人的网络。当公证人将事务作为FinalityFlow的一部分进行验证时,将抛出以下异常。是什么导致了这种异常?
java.lang.UnsupportedOperationException: Serialization scheme not supported.
at net.corda.nodeapi.internal.serialization.NotSupportedSerializationScheme.doThrow(SerializationScheme.kt:19) ~[corda-node-api-3.1-corda.j
Corda包含一个名为的类,其实现方式如下:
abstract class CommonQueryCriteria : QueryCriteria() {
abstract val status: Vault.StateStatus
open val relevancyStatus: Vault.RelevancyStatus = Vault.RelevancyStatus.ALL
open val constraintTypes: Set<Vault.ConstraintInfo.Type> = emptySet()
open val constr
当我试图构建一个CorDapp示例时,我得到了以下错误消息。如果是因为证书缺少表头和表尾而导致的,如何才能获得正确的认证?
Logs can be found in : /opt/corda/samples/cordapp-example/workflows-java/build/nodes/PartyA/logs
java.io.IOException: Sequence tag error
... ...
at net.corda.node.Corda.main(Corda.kt:13)
Exception in thread "mai
当在Corda Enterprise 4.1上运行单元测试时,以前的工作流单元测试会崩溃,并出现以下异常: java.lang.IllegalArgumentException: Transaction context is missing. This might happen if a suspendable method is not annotated with @Suspendable annotation.
at net.corda.node.services.statemachine.FlowStateMachineImpl.checkDbTransaction(Flow
我编写了以下流程,以方便双方- issuer和subscriber之间的事务。在Gathering the counterparty's signature.阶段,我得到了这个错误:
java.lang.IllegalArgumentException: The Initiator of CollectSignaturesFlow must have signed the transaction.
堆栈跟踪:
java.lang.IllegalArgumentException: The Initiator of CollectSignaturesFlow must have sign
我试图通过获取一个空列表来通过lineaId获取一个状态:我的代码:
val queryCriteria = QueryCriteria.LinearStateQueryCriteria(uuid = listOf(linearId.id))
val customerAuditor = serviceHub.vaultService.queryBy<CustomerAuditor>(queryCriteria).states.single()
错误:
java.util.NoSuchElementException: List is empty.
at kotlin.col