I get the following error:
C:\Users\userid\go\pkg\mod\github.com\ibm-messaging\mq-golang\v5@v5.3.0\ibmmq\mqiMQSCO.go: In function'setScoKeyRepoPassword':C:\Users\userid\go\pkg\mod\github.com\ibm-messaging\mq-golang\v5@v5.3.0\ibmmq\mqiMQSCO.go:41:7: error:'keyRepoPasswordPtr' undeclared (first use in this function); did you mean 'keyRepoPassword'?if (keyRepoPasswordPtr != NULL) {^~~~~~~~~~~~~~~~~~keyRepoPasswordC:\Users\userid\go\pkg\mod\github.com\ibm-messaging\mq-golang\v5@v5.3.0\ibmmq\mqiMQSCO.go:41:7: note: each undeclared identifier is reported only once for each function it appears in
L.S.
I get the following error:
C:\Users\userid\go\pkg\mod\github.com\ibm-messaging\mq-golang\v5@v5.3.0\ibmmq\mqiMQSCO.go: In function
'setScoKeyRepoPassword':
C:\Users\userid\go\pkg\mod\github.com\ibm-messaging\mq-golang\v5@v5.3.0\ibmmq\mqiMQSCO.go:41:7: error:
'keyRepoPasswordPtr' undeclared (first use in this function); did you mean 'keyRepoPassword'?
if (keyRepoPasswordPtr != NULL) {
^~~~~~~~~~~~~~~~~~
keyRepoPassword
C:\Users\userid\go\pkg\mod\github.com\ibm-messaging\mq-golang\v5@v5.3.0\ibmmq\mqiMQSCO.go:41:7: note: each undeclared identifier is reported only once for each function it appears in
And this is the code is use:
cno := ibmmq.NewMQCNO()
cno.Options = ibmmq.MQCNO_CLIENT_BINDING
qMgrObject, err := ibmmq.Conn(qMgrName,cno)
What is missing?
Erwin