Welcome to Java SDK for Hyperledger project. This is a summary of steps required to get you started with building and using the Java SDK. Please note that this is not the API documentation or a tutorial for the SDK, this will only help you familiarize to get started with the SDK if you are new in this domain.
The 1.0 sdk is currently under development and the api is still subject to change. It is likely any code depending on this 1.0 version preview many need updating
with subsequent updates of this sdk.
Hyperledger Fabric v1.0 is currently under active development and the very latest Hyperledger Fabric builds may not work with this sdk. You should use the following commit levels of the Hyperledger projects:
| Project | Commit level | Date |
|---|---|---|
| fabric | f27a039e012d87bd51f3536dcb87a9107ab6730f | Mar 8 15:41:31 2017 +0000 |
| fabric-ca | f18b6b769b80c889cb6b82ce34d755d9303ec881 | Mar 4 23:51:45 2017 +0000 |
You can clone these projects by going to the Hyperledger repository.
As SDK developement continues, this file will be updated with compatible Hyperledger Fabric and Fabric-ca commit levels.
Once you have cloned fabric and fabric-ca, use the git reset --hard commitlevel to set your repositories to the correct commit.
Do the following if you want to run the Fabric components ( peer, orderer, fabric-ca ) in Vagrant:
-
Follow the instructions here to setup the development environment.
-
Open the file
Vagrantfileand verify that the followingconfig.vm.networkstatements are set:
config.vm.network :forwarded_port, guest: 7050, host: 7050 # fabric orderer service
config.vm.network :forwarded_port, guest: 7051, host: 7051 # fabric peer vp0 service
config.vm.network :forwarded_port, guest: 7056, host: 7056 # fabric peer vp1 service
config.vm.network :forwarded_port, guest: 7053, host: 7053 # fabric peer event service
config.vm.network :forwarded_port, guest: 7054, host: 7054 # fabric-ca service
config.vm.network :forwarded_port, guest: 5984, host: 15984 # CouchDB service
**Most likely the second peer vp1 port 7056 is missing **
-
ssh into vagrant,
- go to $GOPATH/src/github.com/hyperledger/fabric
- run
make dockerto create the docker images for peer and orderer - go to $GOPATH/src/github/hyperledger/fabric-ca
- run
make dockerto create the docker image for Fabric_ca
-
On your native system where you have the sdk installed you need to copy the docker compose file that starts the services to the directory mapped to vagrant On your native system from the sdk directory:
- cp ./test/fixture/src/docker-compose.yml <directory where fabric was installed >
-
The fabric service creation may have created some files for testing that need to be removed.
- rm -rf /var/hyperledger/*
-
Now start the needed fabric services in vagrant. In the vagrant system:
- cd /hyperledger
- docker-compose up
SDK depends on few third party libraries that must be included in your classpath when using the JAR file. To get a list of dependencies, refer to pom.xml file or run
mvn dependency:tree or mvn dependency:list.
Alternatively, mvn dependency:analyze-report will produce a report in HTML format in target directory listing all the dependencies in a more readable format.
The SDK test cases use a chaincode in the SDK source tree. Set the GOPATH environment variable to <fullpath to your sdk directory>/src/test/fixture
The sdk jar is in target/fabric-sdk-java-1.0-SNAPSHOT.jar and you will need the additional dependencies listed above.
When the SDK is published to Maven you will be able to simply include it in a your application's pom.xml.
To build this project, the following dependencies must be met
- JDK 1.8 or above
- Apache Maven
Once your JAVA_HOME points to your installation of JDK 1.8 (or above) and JAVA_HOME/bin and Apache maven are in your PATH, issue the following command to build the jar file:
mvn install
or
mvn install -DskipTests
if you don't want to run the unit tests
To run the unit tests, please use mvn test or mvn install which will run the unit tests and build the jar file.
You must be running a local peer and orderer to be able to run the unit tests.
You must be running local instances of Fabric-ca and Fabric to be able to run the integration tests. See above for running these services in Vagrant.
Use this maven command to run the integration tests:
- mvn failsafe:integration-test -DskipITs=false
The src/test/java/org/hyperledger/fabric/sdkintegration/End2endIT.java integration test is an example of installing, instantiating, invoking and querying a chaincode.
It constructs the Hyperledger Chain, deploys the GO chain code and initializes the ledger with to variables A= "100", B= "200".
It then invokes the chain code function move that transfers 100 from A to B on the ledger.
It then queries the ledger to see if B is now 300.
Directory cacerts contains the default CA certificates used by Hyperledger Fabric for signature validation.
These certificates are copied from the directories
- hyperledger/fabric/msp/sampleconfig/admincerts
- hyperledger/fabric/msp/sampleconfig/cacerts
The SDK loads these certificates into its CryptoPrimitives trust store and uses them when validating signed messages from peer nodes.
Policies are described in the Fabric Endorsement Policies document. You create a policy using a Fabric tool ( an example is shown in JIRA issue FAB-2376) and give it to the SDK either as a file or a byte array. The SDK, in turn, will use the policy when it creates chaincode instantiation requests.
To input a policy to the SDK, use the ChaincodeEndorsementPolicy class.
For testing purposes, there are 2 policy files in the src/test/resources directory
- policyBitsAdmin ( which has policy AND(DEFAULT.admin) meaning '1 signature from the DEFAULT MSP admin' is required )
- polibBitsMember ( which has policy AND(DEFAULT.member) meaning '1 signature from a member of the DEFAULT MSP is required' )
A chain code configuration files (src/test/fixture/foo.configtx src/test/fixture/bar.configtx)is needed when creating a new Chain. This is created with Hyperledger Fabric configtxgen tool.
For the sample in the End2endIT.java the command run was
build/bin/configtxgen -outputCreateChannelTx foo.configtx -profile SampleSingleMSPSolo -channelID foo
If build/bin/configtxgen tool is not present run make configtxgen
Before running this you may need to modify common/configtx/tool/configtx.yaml changing the 127.0.0.1 address that match
your servers. For Docker environment OrdererDefaults Addresses 127.0.0.1 changed to orderer and Organizations
AnchorPeers Hosts 127.0.0.1 to vp0. Repeat the Host's section to add second peer vp1
#Basic Troubleshooting identity or token do not match
Keep in mind that you can perform the enrollment process with the membership services server only once, as the enrollmentSecret is a one-time-use password. If you have performed a user registration/enrollment with the membership services and subsequently deleted the crypto tokens stored on the client side, the next time you try to enroll, errors similar to the ones below will be seen.
Error: identity or token do not match
Error: user is already registered
To address this, remove any stored crypto material from the CA server by following the instructions here which typically involves deleting the /var/hyperledger/production directory and restarting the membership services. You will also need to remove any of the crypto tokens stored on the client side by deleting the KeyValStore . That KeyValStore is configurable and is set to ${user.home}/test.properties within the unit tests.
When running the unit tests, you will always need to clean the membership services database, and delete the KeyValStore file, otherwise the unit tests will fail.
java.security.InvalidKeyException: Illegal key size
If you get this error, this means your JDK does not capable of handling unlimited strength crypto algorithms. To fix this issue, You will need to download the JCE libraries for your version of JDK. Please follow the instructions here to download and install the JCE for your version of the JDK.
#Communicating with developers and fellow users. Sign into Hyperledger project's Rocket chat For this you will also need a Linux Foundation ID
Join the fabric-sdk-java channel.
#Reporting Issues If your issue is with building Fabric development environment please discuss this on rocket.chat's #fabric-dev-env channel.
To report an issue please use: Hyperledger's JIRA. To login you will need a Linux Foundation ID (LFID) which you get at The Linux Foundation if you don't already have one.
JIRA Fields should be:
- Type
- Bug or New Feature
- Component
- fabric-sdk-java
- Fix Versions
- v1.0.0
Pleases provide as much information that you can with the issue you're experiencing: stack traces logs.