<< < 55 56 57 58 59 60 61 62 > >>   Sort: Date

Basic Sample Business Network - SampleTransaction
How to submit SampleTransaction request to Basic Sample Business Network? You can follow this tutorial to submit SampleTransaction request to Basic Sample Business Network. 1. Open Hyperledger Composer Playground and go to Basic Sample Business Network home page, as shown in the previous tutorial. 2...
2020-12-22, 849🔥, 0💬

Building Business Network with Hyperledger Composer
Where to find tutorials on Building Business Network with Hyperledger Composer. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Building Business Network with Hyperledger Composer. "yo" Command to Generate Business Network "composer archive" to...
2021-02-04, 847🔥, 0💬

Business Network CTO Modeling Language
Where to find tutorials on Business Network CTO Modeling Language. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Business Network CTO Modeling Language. What Is CTO Modeling Language CTO Language Statements "participant" CTO Statement Syntax ...
2022-02-19, 846🔥, 0💬

Explorer Hyplerledger Composer Environment
Where to find tutorials on Explorering Hyplerledger Composer Environment on Ubuntu. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Explorering Hyplerledger Composer Environment on Ubuntu. Control Hyplerledger Composer Environment Versions of H...
2020-07-22, 845🔥, 0💬

"yo" Command to Generate Business Network
How to generate required source code files for a new business network with Hyperledger Composer command line tools? You can use the "yo" command line tool to generate required source code files for a new business network as shown below. 1. Run "yo" command with the "hyperledger-composer:business netw...
2021-02-04, 842🔥, 0💬

Hyplerledger Composer Environment Requirement
What are requirements for installing the a Hyplerledger Composer development environment? Here are requirements for installing the a Hyplerledger Composer development environment: Operating System - Ubuntu Linux 14.04 / 16.04 LTS, or Mac OS 10.12. Docker Engine - Version 17.03 or higher. Docker Engi...
2021-05-04, 837🔥, 0💬

Modify Business Network in Playground
How to modify Business Network in Hyperledger Composer Playground? You can follow this tutorial to modify a Business Network in Hyperledger Composer Playground and deploy it back to the Hyperledger Fabric simulator or server. 1. Open Hyperledger Composer Playground and go to Basic Sample Business Ne...
2020-12-15, 836🔥, 0💬

Business Network Source Code Architecture
What Is Business Network Source Code Architecture? Business Network Source Code Architecture can be summarized in the following diagram: Hyperledger Composer offers tools to help you developing hyperledger application, called business network, with following source code files: Model Files (*.cto) - ...
2022-02-19, 835🔥, 0💬

"participant" CTO Statement Syntax
What is the syntax of the "participant" CTO Statement The "participant" CTO statement declares a participant data type to represent someone who can interact with the business network under access control rules. Here is the syntax of a "participant" statement: [abstract] participant type_name [identi...
2021-08-01, 835🔥, 0💬

Hyperledger Composer Playground Server
Where to find tutorials on Hyperledger Composer Playground Server. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Composer Playground Server. What is Hyperledger Composer Playground Server Start Hyperledger Composer Playground Serv...
2021-02-17, 835🔥, 0💬

Peer Log Messages - Start Environment
How to verify peer node log messages to ensure my Hyperledger Composer developer environment is started correctly? You can follow this tutorial to verify peer node log messages generated during the Hyperledger Composer developer environment start up process. 1. Stop the environment: $ cd fabric-dev-...
2020-12-02, 835🔥, 0💬

"enum" CTO Statement Syntax
What is the syntax of the "enum" CTO Statement The "enum" statement declares an enumeration data type to represent data values with predefined options. Here is the syntax of an "enum" statement: enum type_name [extends super_type] { o value_option ... } Syntax elements used in a "transaction" CTO St...
2021-06-19, 832🔥, 0💬

Business Network JS Scripting Language
Where to find tutorials on Business Network JS Scripting Language. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Business Network JS Scripting Language. What Is JS Scripting Language "transaction" Process Function Syntax "transaction" Data Ty...
2021-06-19, 832🔥, 0💬

Hyperledger Composer Log Files
Where to find tutorials on Hyperledger Composer Log Files. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Composer Log Files. Hyperledger Composer Log File Location Peer Node Log File Location Peer Log Messages - Start Environment ...
2020-12-02, 832🔥, 0💬

"transaction" CTO Statement Syntax
What is the syntax of the "transaction" CTO Statement The "transaction" statement declares the input message structure of a transaction type, which can be submitted to the business network for processing. Here is the syntax of an "transaction" statement: transaction type_name [extends super_type] { ...
2021-08-01, 831🔥, 0💬

Spaces in Path Name on Windows Images
How to manage spaces in path names on Windows images? Spaces in path names are not allowed on Linus systems. But spaces in path names are allowed on Windows systems. There are 2 general rules you have to remember to manage spaces in path names in the Dockerfile to build Windows images. 1. Using the ...
2021-11-30, 829🔥, 0💬

"transaction" Process Function Defined in JS
How to define a "transaction" process function in the JS scripting file? If you want your Hyplerledger Composer business network to process a business transaction, you need to the "function" JavaScript statement to define a "transaction" process function in a JS scripting file. When Hyplerledger Com...
2021-06-05, 828🔥, 0💬

ERROR(PKG-006) - Mimetype Not the First
How to fix the "ERROR(PKG-006) - Mimetype file entry is missing or is not the first file ..." error? When you validate a EPUB 2.0 package with EpubCheck, you may see the following error: C:\fyicenter&gt; java -jar epubcheck.jar Error-Mimetype-Not-First-2.0.e pubValidating using EPUB version 2.0....
2022-04-21, 825🔥, 0💬

"transaction" Process Function Syntax
What is the syntax of "transaction" process function in the JavaScript file? A "transaction" process function is a regular JavaScription function that has two extra decorators: "@transaction" and "@param". Here is the syntax of a "transaction" process function statement: /* @transaction * @param {tr...
2021-06-05, 823🔥, 0💬

Hyperledger Composer Environment Orgs and Users
What Orgs and Users are included in my Hyperledger Composer Environment? The fabric-dev-servers.tar.gz package includes two default organizations and one admin user for each organization: org1.example.com - "org1.example.com" is the organization owns the peer node "peer0.org1.example.com". "org1.exa...
2020-07-14, 821🔥, 0💬

What Is JS Scripting Language
What is Business Network JS Scripting Language? Business Network JS Scripting Language is the standard JavaScript language to define business logics on how each transaction is processed. JavaScript source code can be stored in a single or multiple files with the *.js file extension. Each JavaScript ...
2021-06-05, 815🔥, 0💬

"transaction" Data Type Declared in CTO
How to declare a "transaction" data type in the CTO model file? If you want your Hyplerledger Composer business network to accept a business transaction, you need to use the "transaction" CTO statement to declare a "transaction" data type in a CTO model file. The "transaction" data type specifies ho...
2021-06-05, 815🔥, 0💬

Hyperledger Composer Components
What components are included in Hyperledger Composer? Here are major components included in Hyperledger Composer: Composer Runtime - Runs on top of the Hyperledger Fabric framework to run ledger applications called business networks. Composer Playground - Runs in a Web browser providing a Hyperledge...
2021-12-28, 813🔥, 0💬

Verify Hyperledger Composer Prerequisites on Ubuntu
How to verify Hyplerledger Composer Prerequisites on Ubuntu? You can use the following commands to verify Hyplerledger Composer Prerequisites on Ubuntu: 1. Verify Docker Engine: $ docker --version Docker version 18.09.2, build 6247962 $ ps -e | grep dockerd 17939 ? 00:39:58 dockerd 2. Verify Docker ...
2021-05-04, 810🔥, 0💬

<< < 55 56 57 58 59 60 61 62 > >>   Sort: Date