|
Issue in Fabric SDK Node 1.2.2 - error response status thrown away
#fabric-sdk-node
#fabric
Hello, In Fabric SDK Node 1.2.2, when response with Status less than 400 is returned from chaincode, the resulting response contains only error message and stack trace. Would it be possible to fix thi
Hello, In Fabric SDK Node 1.2.2, when response with Status less than 400 is returned from chaincode, the resulting response contains only error message and stack trace. Would it be possible to fix thi
|
By
...
· #4832
·
|
|
Issue in Fabric SDK Node 1.2.2 - error response status thrown away
#fabric-sdk-node
#fabric
Just to double check here ... you actually are talking about the behavior when the status is >= 400, correct? ----------------------------------------- Gari Singh Distinguished Engineer, CTO - IBM Blo
Just to double check here ... you actually are talking about the behavior when the status is >= 400, correct? ----------------------------------------- Gari Singh Distinguished Engineer, CTO - IBM Blo
|
By
...
· #4833
·
|
|
how certificates get derived from the real fabric-ca-server certificate in hfc-key-store in hyperledger?
#fabric
#fabricca
#fabric-sdk-node
I'd like to explain what I understand correctly first and if I'm right, please tell me the truth and if I'm mistaken, tell me also that I'm mistaken. My explanation is about how hyperledger network an
I'd like to explain what I understand correctly first and if I'm right, please tell me the truth and if I'm mistaken, tell me also that I'm mistaken. My explanation is about how hyperledger network an
|
By
...
· #4874
·
|
|
How to get the ledger height of channel in real time?
#fabric-sdk-node
As we know, one channel can have multiple peers, and when we query ledger height , we need to specify one peer in the channel, but if this peer's ledger is not up to date(e.g. not a leader peer, netwo
As we know, one channel can have multiple peers, and when we query ledger height , we need to specify one peer in the channel, but if this peer's ledger is not up to date(e.g. not a leader peer, netwo
|
By
andychen.chen@...
· #5076
·
|
|
答复: [Hyperledger Fabric] How to get the ledger height of channel in real time?
#fabric-sdk-node
I have a same concern here, a proposed new feature to provide a more updated block height is expose a query service from orderer, instead of from peer. For who is current leader peer, I gues it could
I have a same concern here, a proposed new feature to provide a more updated block height is expose a query service from orderer, instead of from peer. For who is current leader peer, I gues it could
|
By
...
· #5156
·
|
|
How to get the ledger height of channel in real time?
#fabric-sdk-node
yes, you maybe can not get the latest info about height. But if the channel is alive the height will not be static. There are always transactions around. I am not sure how much sense it will make to k
yes, you maybe can not get the latest info about height. But if the channel is alive the height will not be static. There are always transactions around. I am not sure how much sense it will make to k
|
By
Michael Wang
· #5157
·
|
|
How to develop custom Node SDK for new Business Application
#fabric-sdk-node
Hello All, I am working on a project where I developed a Business Application using the Hyperledger Fabric and Hyperledger Composer. Now, I am looking forward to develop Node SDK for that application.
Hello All, I am working on a project where I developed a Business Application using the Hyperledger Fabric and Hyperledger Composer. Now, I am looking forward to develop Node SDK for that application.
|
By
bhawana.1441@...
· #5234
·
|
|
答复: [Hyperledger Fabric] How to develop custom Node SDK for new Business Application
#fabric-sdk-node
Hi Bhawana I guess this is not a Fabric topic that you need a help in build your application sdk instead of using fabric-sdk-node. You can chose your own implementation, such as using express.js as ht
Hi Bhawana I guess this is not a Fabric topic that you need a help in build your application sdk instead of using fabric-sdk-node. You can chose your own implementation, such as using express.js as ht
|
By
...
· #5239
·
|
|
How to send fabric chaincode events received in node.js application to angular application?
#fabric-sdk-node
Hi guys, I'm using registerChaincodeEvent(ccid, eventCallBack, errorCallBack, options) to listen to events from my blockchain. The problem with this is that the eventCallBack function is not able to a
Hi guys, I'm using registerChaincodeEvent(ccid, eventCallBack, errorCallBack, options) to listen to events from my blockchain. The problem with this is that the eventCallBack function is not able to a
|
By
Prasanth Sundaravelu
· #5364
·
|
|
答复: [Hyperledger Fabric] How to send fabric chaincode events received in node.js application to angular application?
#fabric-sdk-node
That is a general nodejs function, not specific for fabric. But AFAIK, you could use outside function and variable inside callback with `closure` pattern or even directly using the context scope. Best
That is a general nodejs function, not specific for fabric. But AFAIK, you could use outside function and variable inside callback with `closure` pattern or even directly using the context scope. Best
|
By
...
· #5365
·
|
|
答复: [Hyperledger Fabric] How to send fabric chaincode events received in node.js application to angular application?
#fabric-sdk-node
Thanks for reply. I have tried passing in an outside function as a parameter for registerChaincodeEvent now it does not recognize it as eventCallback function and throws error like "eventCallback para
Thanks for reply. I have tried passing in an outside function as a parameter for registerChaincodeEvent now it does not recognize it as eventCallback function and throws error like "eventCallback para
|
By
Prasanth Sundaravelu
· #5366
·
|
|
Question regarding user enrollment using Fabric-CA node sdk
#fabric-sdk-node
#fabric
#fabricca
Hello Team, I have created my fabric network which includes 2 Orgs having 2 peers each and used Fabric-CA for generating crypto material for peers and orderer. Now my question is, how to enroll and re
Hello Team, I have created my fabric network which includes 2 Orgs having 2 peers each and used Fabric-CA for generating crypto material for peers and orderer. Now my question is, how to enroll and re
|
By
HLF POC
· #5470
·
|
|
Defining permissions to assets within an organization
#fabric
#fabric-sdk-node
#fabric-ca
Hi, Is it possible to define access control to an asset within an organization at the fabric level using user identities? The one solution I can think of is maintaining permission to the asset within
Hi, Is it possible to define access control to an asset within an organization at the fabric level using user identities? The one solution I can think of is maintaining permission to the asset within
|
By
Mrudav Shukla
· #5858
·
|
|
configtxlator does not stdout with node SDK ('child_process').exec
#fabric-sdk-node
Hi, From Node SDK, is there anyway to get stdout from configtxlator as it is possible in shell ? It seems that the --output option can not be omitted using (child_process) exec. Thanks a lot for you h
Hi, From Node SDK, is there anyway to get stdout from configtxlator as it is possible in shell ? It seems that the --output option can not be omitted using (child_process) exec. Thanks a lot for you h
|
By
Jonathan C.
· #5863
·
|
|
configtxlator does not stdout with node SDK ('child_process').exec
#fabric-sdk-node
You may start configtxlator as a server, and invoke its functions as REST APIs. This is the preferred integration option for Node SDK -- see https://fabric-sdk-node.github.io/tutorial-channel-create.h
You may start configtxlator as a server, and invoke its functions as REST APIs. This is the preferred integration option for Node SDK -- see https://fabric-sdk-node.github.io/tutorial-channel-create.h
|
By
...
· #5864
·
|
|
Supplying custom CSR with EnrolmentRequest in node-sdk fails
#fabric-ca
#fabric-sdk-node
#fabricca
#fabric
I have a single-org setup running with one Fabric CA. CA Server is running with MySQL. I'm using NodeSDK to connect and issue transactions to chaincode. I'm able to set Country, State, Locality, Organ
I have a single-org setup running with one Fabric CA. CA Server is running with MySQL. I'm using NodeSDK to connect and issue transactions to chaincode. I'm able to set Country, State, Locality, Organ
|
By
Mrudav Shukla
· #5903
·
|
|
Use wallet identity to login,
#fabric-ca
#fabric-sdk-node
Hello, It is possible to verify user credentials during the login using the wallet identity: 1) User enters login id/password 2) Using the login id we get the identity info 3) How can i verify using t
Hello, It is possible to verify user credentials during the login using the wallet identity: 1) User enters login id/password 2) Using the login id we get the identity info 3) How can i verify using t
|
By
Nick Frunza
· #5999
·
|
|
how to Add new org in exciting channel using node js
#fabric
#fabric-sdk-node
#fabric-questions
hi team, i am not able to add new org in existing hyperledger fabric channel using node js help help me to resolve this problem. thanks, Puneeth V
hi team, i am not able to add new org in existing hyperledger fabric channel using node js help help me to resolve this problem. thanks, Puneeth V
|
By
...
· #6313
·
|
|
how to Add new org in exciting channel using node js
#fabric
#fabric-sdk-node
#fabric-questions
please take a look at this page. The fabric interop working group has already developed the process and code to help out with this. https://wiki.hyperledger.org/display/fabric/Fabric+Interop+Working+G
please take a look at this page. The fabric interop working group has already developed the process and code to help out with this. https://wiki.hyperledger.org/display/fabric/Fabric+Interop+Working+G
|
By
Tong Li
· #6314
·
|
|
Unable to connect to the Peer using Node SDK
#fabric
#fabric-sdk-node
#grpc
HI Team, While running the node gateway.js , i am getting the below error - ranjan@ubuntuVMServer1:~/LDBCApp/sdk/gateway$ node gateway.js start setupGateway begin setupGateway 1 setupGateway 2 setupGa
HI Team, While running the node gateway.js , i am getting the below error - ranjan@ubuntuVMServer1:~/LDBCApp/sdk/gateway$ node gateway.js start setupGateway begin setupGateway 1 setupGateway 2 setupGa
|
By
...
· #6331
·
|