<< < 45 46 47 48 49 50 51 52 53 54 55 > >>   Sort: Date

evaluate-transaction.js - Evaluate Chaincode Transaction
How to write a Node.js script to evaluate a transaction defined in the Invoke method of a chaincode? Here is sample Node.js script, evaluate-transaction.js, that uses a given user identity from the local wallet to evaluate a transaction on chaincode. /* Copyright (c) FYIcenter.com */ 'use strict'; c...
2019-04-22, 1098🔥, 0💬

Types of Hyperledger Fabric Docker Containers
How many types of Hyperledger Fabric Docker Containers are there? In a typical Hyperledger Fabric network (using goleveldb instead of couchdb), you will have 4 types containers running on the Docker Engine: 1. Orderer container - In a simple Hyperledger Fabric network, there is only one Orderer cont...
2020-07-07, 1097🔥, 0💬

Initiate Google OpenID Connect Authentication Request
How to initiate Google OpenID Connect Authentication Request? The Google OpenID Connect v1.0 Authentication Request must be initiated from the end user's Web browser, because the Google OpenID Connect service needs to communicate with the Web browser to make sure that the end user is signed on to a ...
2021-03-07, 1095🔥, 0💬

Hyperledger Fabric Docker Containers
Where to find tutorials on Hyperledger Fabric Docker Containers? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Fabric Hyperledger Fabric Docker Containers. Types of Hyperledger Fabric Docker Containers Watch "orderer" Container Lo...
2020-07-07, 1094🔥, 2💬

Create Identity Wallet for Balaji
How to Create Identity Wallet for Balaji at DigiBank? Like Isabella at MagnetoCorp, Balaji at DigiBank needs prepare his system with a wallet to store his identity. He also needs to install Node.js dependencies to run applications written with Hyperledger Fabric Node.js SDK. 1. Install Node.js depen...
2019-11-08, 1094🔥, 0💬

Organization with CA Server
Should I run Fabric CA server in my organization on a multi-organization network? Yes, you should run Fabric CA server in your organization on a multi-organization network. It is your responsibility to manage membership of who can access ledger peers in your organization. Now we have a Hyperledger F...
2019-10-27, 1094🔥, 0💬

Sequence of Sub-elements in HTML
What Is the Sequence of Sub-elements? The sequence of sub-elements is the order of how each sub-element is placed inside the parent element. For most parent elements, their sub-elements can be placed in any order. But some parent elements require you to follow a predefined sequence. For example, ele...
2024-02-28, 1093🔥, 0💬

HTML 'head' Tag/Element
What Is the HTML "head" Tag/Element? The "head" element is the second element you need to learn. The "head" element is used to provide information about the XHTML document. The "head" element should not be used to contain any contents of the XHTML document. Here are some rules about the "head" tag/e...
2024-01-19, 1092🔥, 0💬

Second Admin Enroll to Create Wallet
How can the second admin create his/her own certificate and save it in a wallet? You need to pass the identity name and password of "admin2" and "WSATRHlgxxnk" to the second admin to create his/her own certificate and save it in a wallet. 1. Pass identity "admin2" and "WSATRHlgxxnk" to Amy. 2. Amy i...
2019-09-16, 1092🔥, 0💬

Getting Extra Space between Paragraphs in HTML
How To Get Extra Space between Paragraphs? By default, browsers will give a predefined white space between two paragraphs. But if you want some extra white space between two paragraphs, you can enter an extra paragraph with a &amp;nbsp; entity. Note that a true empty paragraph will not give any ...
2023-08-03, 1089🔥, 0💬

Connect to basic-network Peer
How to connect to the peer container of the basic-network? I want to see how is the peer doing. You can use the "docker exec" command to connect to the peer container of the basic-network. 1. Run "docker exec" to create an interactive connect with the peer container: $ docker exec -it peer0.org1.exa...
2020-04-14, 1086🔥, 0💬

Register Identity of "user" Type
How to register a new identity of "user" type? You can follow this tutorial to register a new identity of "user" type. 1. Go to the Fabric CA Client system where you have the "admin" wallet created in the previous tutorial. $ cd ~/fabric-ca/native-client/admi n$ export FABRIC_CA_CLIENT_HOME=~/fabric ...
2019-09-16, 1086🔥, 0💬

Capture Google OpenID Connect Authentication Response
How to capture the Google OpenID Connect Authentication Response? If you are use the Google-OpenID-Connect-Test-Pag e.htmltest Web form using "response_type=id_token" to test the implicit flow, you can capture the id_token value with the browser. 1. Run Google-OpenID-Connect-Test-Pag e.htmlin a Web ...
2022-03-29, 1084🔥, 0💬

What Is Alpine Linux Docker Image
What is Alpine Linux Docker Image? Alpine Linux Docker Image is a minimal Docker image of the Alpine Linux operating system. with only 5 MB in size. You can use Alpine Linux as the base image to build new Docker images for your own applications. Main features of Alpine Linux are: SMALL - Alpine Linu...
2019-04-03, 1084🔥, 0💬

Default core.yaml in Peer Docker Image
What is the Default core.yaml file in Peer Docker Image? The default core.yaml file in the Peer Docker Image is the default version of core.yaml, which provides settings to control the behavior of the Ledger peer. If you deploy the Peer Docker container without your own version of core.yaml, the def...
2019-05-10, 1082🔥, 0💬

HTML Elements with PCDATA Contents
What Are the HTML Elements Defined with PCDATA Contents? The following HTML elements are defined to use the PCDATA content model: &lt;title&gt; - Element to provide a title to the document. &lt;style&gt; - Element to provide a CSS to the document. &lt;script&gt; - Element to ...
2024-04-14, 1081🔥, 0💬

orderer.yaml - Orderer Peer Configuration File
What is the Orderer Peer Configuration File, orderer.yaml? The Orderer Peer Configuration File, orderer.yaml, provides settings to control the behavior of the Orderer peer. You can take a copy of the orderer.yaml provided in Fabric binary and sample package: $ cd fabric-orderer $ cp ~/hyperledger-bi...
2019-09-04, 1081🔥, 0💬

Closing XHTML 'meta' Tags
What Is wrong with my &lt;meta&gt; Tags? If you are converting existing HTML documents to XHTML format, you may find some &lt;meta&gt; tags are written as: &lt;meta name="Author" content="FYICenter.com"&gt ;&lt;meta name="Description" content="Tutorials, FAQs and Tips on ...
2024-04-07, 1080🔥, 0💬

Setup Node.js for WYFA Tests
How to Setup Node.js for WYFA (Write Your First Application) Tests? Before performing any Node.js SDK tests on the WYFA network, you need to setup the Node.js on your local host. 1. Make sure Node.js is installed: $ node --version v8.10.0 2. Install required packages: $ cd hyperledger-binaries/fabri...
2020-02-07, 1080🔥, 0💬

Setting Up Orderer Peer Manually
Where to find tutorials on Setting Up an Orderer Peer Manually? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Setting Up an Orderer Peer Manually. Steps of Setting Up Orderer Peer Pull Hyperledger Fabric Orderer Image Create Orderer Organizat...
2019-09-04, 1079🔥, 0💬

ENTRYPOINT [...] - Specify Entrypoint Executable
How to specify the executable program to the ENTRYPOINT instruction in DockerFile? The ENTRYPOINT instruction has two different syntax formats. 1. Executable Program Format - Executable Program Format allows you to specify the path name of an executable program file and its parameters in a JSON arra...
2019-02-09, 1079🔥, 0💬

Add App Secret Keys on Azure AD
How to add a secret key in an app registration on Azure AD? Secret keys in an app registration on Azure AD are used to authenticate the access token request in the authentication code flow. You can add a new secret key in your app registration on Azure AD by following these steps: 1. Sign in to the ...
2022-03-29, 1078🔥, 0💬

Start CLI Container for MagnetoCorp Admin
How to Start CLI Container for the MagnetoCorp Administrator? If you are the administrator from MagnetoCorp and want to manage the PaperNet Hyperledger Fabric network, you can follow this tutorial. 1. Create a new terminal window and run the docker-compose command to start the CLI container: (magnet...
2019-12-19, 1077🔥, 0💬

"docker image list" - List All Images
How to list all images in the local repository with "docker image list" command? The default "docker image list", "docker image ls", or "docker images" command lists all Docker images in the local repository. fyicenter$ docker image list REPOSITORY TAG IMAGE ID CREATED SIZE alpine latest 055936d3920...
2019-03-23, 1077🔥, 0💬

<< < 45 46 47 48 49 50 51 52 53 54 55 > >>   Sort: Date