<< < 13 14 15 16 17 18 19 20 21 22 23 > >>   Sort: Rank

"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, 816🔥, 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, 804🔥, 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, 817🔥, 0💬

View "console.log()" Output in Playground
How to view "console.log()" Output in Hyperledger Composer Playground? If you use "console.log()" to print out debug information in your transaction process functions, you can follow this tutorial to see the "console.log()" in Hyperledger Composer Playground. 1. Add the following CTO modeling file t...
2021-06-05, 786🔥, 0💬

Decode Azure AD v1 id_token
How to decode the id_token value received from Azure AD v1.0 authentication response? According to the "RFC 7519 - JWT (JSON Web Token)" standard, the "id_token" value received from Azure AD authentication response should be decoded as below: Splitting the encoded string into 3 components: Header, B...
2021-05-16, 1662🔥, 0💬

Azure AD v1 id_token Decoded Example
Where to find an Azure AD v1.0 id_token decoded example? Here is an example of an "id_token" value returned from Azure AD v1.0 after Base64URL decoded: Header = { "typ": "JWT", "alg": "RS256", "x5t": "i6lGk3FZzxRcUb2C3nEQ7syHJlY", "kid": "i6lGk3FZzxRcUb2C3nEQ7syHJlY" } Body = { "aud": "ef1da9d4-ff77...
2021-05-16, 1406🔥, 0💬

Build Implicit Flow with Azure AD v1
How to implement the OpenID Implicit Flow with Azure AD v1.0 service? If you want to implement the OpenID Implicit Flow in your Web application to use Azure AD service, you should follow these steps: 1. Building the Azure AD v1.0 Sign-on authentication request: Register your Web application to the A...
2021-05-16, 1323🔥, 0💬

Validate Azure AD v1 id_token
How to validate the id_token value received from Azure AD v1.0 authentication response? As you can see from the previous tutorials, you can easily decode the "id_token" value received from Azure AD authentication response using a simple PHP script. After decoding, you can get all information about t...
2021-05-16, 1314🔥, 0💬

Validate Azure AD v1 id_token Signature
How to validate the id_token signature received from Azure AD v1.0 authentication response? You can use some existing libraries to perform the Azure AD "id_token" signature validation using libraries of different programming languages as suggested in "Azure Active Directory access tokens" article" ....
2021-05-16, 1272🔥, 0💬

Install Composer Prerequisites on Ubuntu
How to install Hyplerledger Composer Prerequisites on Ubuntu? The best way to install Hyplerledger Composer Prerequisites on Ubuntu is to download and run the prereqs-ubuntu.sh script. 1. Verify your Ubuntu version: $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: U...
2021-05-04, 980🔥, 0💬

Install Hyperledger Composer on UBuntu
How to install Hyplerledger Composer on Ubuntu? You can follow this tutorial to install Hyplerledger Composer on Ubuntu 1. Install Hyplerledger Composer CLI: $ sudo npm install -g composer-cli ... installation messages ... $ composer --version v0.20.8 2. Install Hyplerledger Composer REST API Server...
2021-05-04, 877🔥, 0💬

Install Hyplerledger Composer Environment
Where to find tutorials on installing Hyplerledger Composer Environment on Ubuntu. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on installing Hyplerledger Composer Environment on Ubuntu. Hyplerledger Composer Environment Requirement Install Com...
2021-05-04, 866🔥, 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, 829🔥, 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, 798🔥, 0💬

Hello-2.0.epub Created with WinRAR
How to create Hello-2.0.epub with WinRAR? I have all required files to create Hello-2.0.epub. To create the EPUB 2.0.1 example, Hello-2.0.epub, you need to collect all files mentioned from previous tutorials: |-- mimetype |-- package.opf |-- content.xhtml |-- navigation.xml |-- META-INF |-- containe...
2021-04-15, 2876🔥, 0💬

Hello-2.0.epub Validation by EpubCheck
How to validate an EPUB 2.0.1 file with EpubCheck 4.0.2? If you want to validate an EPUB 2.0.1 book file, you can try this command: C:\fyicenter&gt; java -jar epubcheck-4.0.2\epubcheck.jar Hello-2.0.epub Validating using EPUB version 2.0.1 rules. No errors or warnings detected. epubcheck complet...
2021-04-15, 1932🔥, 0💬

EPUB 2.0 Package Metadata
Where to find tutorials on EPUB 2.0 Package Metadata? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on EPUB 2.0 Package Metadata. What Is EPUB 2.0 Package Metadata EPUB 2.0 Metadata - dc:identifier Element EPUB 2.0 Metadata - dc:title Element EP...
2021-04-15, 1920🔥, 0💬

Hello-2.0.epub - Navigation File: navigation.xml
How to create a navigation file like navigation.xml for an EPUB 2.0.1 book? At least one navigation file, like navigation.xml, is required for an EPUB 2.0.1 book in the book ZIP container. It provides navigation information like a table of contents of the book. Here is the requirement on a navigatio...
2021-04-15, 1818🔥, 0💬

Hello-2.0.epub Displayed in Calibre
How to display Hello-2.0.epub in Calibre? Once you have Hello-2.0.epub created, you can follow this tutorial to open and read it in Calibre. 1. Search and run Calibre on your Windows computer. You see the Calibre main screen. 2. Click "Add books" icon. You see the open file screen. 3. Locate and sel...
2021-04-15, 1727🔥, 0💬

Hello-2.0.epub - Content File: content.xhtml
How to create a content file like content.xhtml for an EPUB 2.0.1 book? At least one content file, like content.xhtml, is required for an EPUB 2.0.1 book in the book ZIP container. It provides the content of the book. Here is the requirement on a content file: 1. A content file must be named with .x...
2021-04-04, 1847🔥, 0💬

Issue to Install "npm 5.x" on Ubuntu 18
Why I can only install "npm 3.5.2" on Ubuntu 18? If you are running Ubuntu 18, the default "apt install npm" command will only insatlle "npm 3.5.2: $ sudo apt install npm ... installing the "npm" package $ sudo apt install npm Reading package lists... Done Building dependency tree Reading state info...
2021-04-04, 1116🔥, 0💬

Start/Stop Hyperledger Fabric Dev Environment
How to start and stop Hyplerledger Fabric Dev Environment? You can follow this tutorial to start and stop Hyplerledger Fabric on Ubuntu. 1. Make sure the Docker Engine is running: $ ps -e | grep dockerd 17939 ? 00:39:58 dockerd $ docker info Containers: 6 Running: 4 Paused: 0 Stopped: 2 Images: 88 S...
2021-04-04, 918🔥, 0💬

Warning on Incompatible "npm" Version
Why I am getting the Incompatible "npm" Version warning with installating Hyplerledger Composer CLI on Ubuntu? You may get the Incompatible "npm" Version warning, if you install Hyplerledger Composer CLI with the "@0.20" version option: $ sudo npm install -g composer-cli@0.20 WARN engine composer-cl...
2021-04-04, 851🔥, 0💬

Install Hyperledger Fabric on UBuntu
How to install Hyplerledger Fabric on Ubuntu? You can follow this tutorial to install Hyplerledger Fabric on Ubuntu. 1. Download the Hyplerledger Fabric Dev Environment package: $ mkdir fabric-dev-servers $ cd fabric-dev-servers $ curl -O https://raw.githubusercontent. com/hyperledger/composer-tools...
2021-04-04, 781🔥, 0💬

<< < 13 14 15 16 17 18 19 20 21 22 23 > >>   Sort: Rank