Soheel Chughtai
Soheel Chughtai
Please format your code so it is readable. You don't need to include line numbers.
I suspect that when your code is nested inside the Nest.JS class that the environment variables are not visible. In lieu of setting ``` process.env['MQIJS_NOUSECTL'] = 'true'; ``` before the...
Just took a closer look at your code. I think you need to rearrange your imports to set the environment variable before loading ibmmq. ie. ``` process.env['MQIJS_NOUSECTL'] = 'true'; import...
RE: ```` cno.Options |= MQC.MQCNO_CLIENT_BINDING; ```` Is your application running on the same machine as the queue manager?
That code, as you have already proven, should connect successfully. Which implies that your application is either not using the same code (add a check by logging something in that...
That seems to be your platform's equivalent to a `LD_LIBRARY_PATH` related issue. From the README.md > For Windows and Linux x64, the npm installation process tries to access > the...
Check that the setting was inherited by the application by logging the value in your code. eg. ```` debug_info("LD_LIBRARY_PATH : ", process.env.LD_LIBRARY_PATH); ````
```` waiting for readiness check to succeed: failed to make TCP connection to 10.247.6.198:3000 ```` suggests that your express app failed to start. The rest of the logs show some...
That is odd, because if the call is good, then the data response, no matter what it is is put on msg.features. I.e. Even if it says 'you have run...
Please provide an example for clarification. Sequential is an option on the Conversation dialog editor, so don't know how it would relate to node-red. What happens if you clear out...