ibm-cloud

Twilio IBM Watson Speech To Text Addon Callback function not getting triggered

99封情书 提交于 2019-12-24 08:26:38
问题 My objective is to get transcribe (Caller's input - IVR Conversation) using IBM Watson Speech to Text Addon which is available on Twilio platform (Twilio Add-ons feature). IBM watson speech to text add-on is installed. Problem: Callback function which defined on Callback URL is not getting triggered. I have followed the guidelines mentioned on this link I have configured my Programmable voice application as web hook function. (Using NGROK) and Callback function is also configured as a web

How can I use python > 2.6.6 with spark on BigInsights on cloud Enterprise clusters?

纵然是瞬间 提交于 2019-12-24 08:23:52
问题 The version of python with BigInsights is currently 2.6.6. How can I use a different version of Python with my spark jobs running on yarn? Note that users of BigInsights on cloud do not have root access. 回答1: Install Anaconda This script installs anaconda python on a BigInsights on cloud 4.2 Enterprise cluster. Note that these instructions do NOT work for Basic clusters because you are only able to login to a shell node and not any other nodes. Ssh into the mastermanager node, then run

How do you connect NIFI to IBM MessageHub through PublishKafka processor?

谁说胖子不能爱 提交于 2019-12-24 08:00:10
问题 I am trying to connect NIFI to IBM MessageHub but I am not getting any connection working. Does anyone have a working example on how to configure it? I get a timeout exception in the bulletinboard. I have configured a PublishKafka_0_11 1.4.0 processor . Configured it as SASL_SSL, added standard ssl context service, added the jaas.conf KafkaClient { org.apache.kafka.common.security.plain.PlainLoginModule required serviceName="Message Hub-bq" username="xxxxxx" password="xxxxxx"; }; And in the

How to display several messages on screen with Watson Conversation

99封情书 提交于 2019-12-24 07:59:13
问题 I'm working on a chatbot with Watson technology and more precisely with conversation service. It's my first application on Bluemix and with javascript and i have an issue with the display message of my chatbot. I explain: currently I have this code : var text = response.output.text[0]; // only display first value And my function displayMessage function displayMessage(text, user) { var chat = document.getElementById('chatBox'); var bubble = document.createElement('div'); bubble.className =

IBM Bluemix AppID - how log off / log out?

£可爱£侵袭症+ 提交于 2019-12-24 07:16:34
问题 When using IBM Bluemix App ID, does anyone know how to log out a user? The Node.js server SDK on GitHub sample application and README includes this reference: const LOGOUT_URL = "/ibm/bluemix/appid/logout"; I have tried various permutations but I haven't been able to find out what URL to use to log out the user (both hostname and extension). Can anyone help, please? Many thanks. 回答1: According to a posting at https://www.ibm.com/developerworks/library/iot-trs-secure-iot-solutions3/index.html

IBM Watson Assistant: How to set a 'jump to' target node dynamically (i.e. using context variables)

青春壹個敷衍的年華 提交于 2019-12-24 07:16:16
问题 I want to jump from a dialog node to a node the ID of which is stored in a context variable. I'm trying to solve a problem that has to do with a digression and which has been described here: Conditionally return from digression in watson assistant Especially this chart visualizes the problem: In my opinion, A.H. posed a very reasonable and relevant question that has got no viable answer. As far as I can see the problem can not be solved by digression settings. Either the root level node

Inconsistent issue when using docker-compose in Bluemix

独自空忆成欢 提交于 2019-12-24 07:14:51
问题 I'm having an issue deploying and linking 3 containers using docker-compose in Bluemix / IBM Containers. The compose file I am using has worked and continues to work but it is very inconsistent. When it fails, I get the following response: Recreating xxxxx_1 Recreating yyyyy_1 Creating zzzzz_1 ERROR: for server 'message' Traceback (most recent call last): File "docker-compose", line 3, in <module> File "compose/cli/main.py", line 64, in main File "compose/cli/main.py", line 116, in perform

Decrypting the payload in hyperledger

北战南征 提交于 2019-12-24 06:44:33
问题 I am currently using Developer Environment for Hyperledger Fabrics. I tried using GET to retrieve block info and it does give me a response. However, in the response, there's one component called payload, and it's in a unreadable format. Is there a way to make it readable/decrypt it? For instance, in bluemix, when you do init of party "a" and party "b", the payload shows inita100b100. Firstly, I did this transaction/REST request { "jsonrpc": "2.0", "method": "invoke", "params": { "type": 1,

Decrypting the payload in hyperledger

假如想象 提交于 2019-12-24 06:44:19
问题 I am currently using Developer Environment for Hyperledger Fabrics. I tried using GET to retrieve block info and it does give me a response. However, in the response, there's one component called payload, and it's in a unreadable format. Is there a way to make it readable/decrypt it? For instance, in bluemix, when you do init of party "a" and party "b", the payload shows inita100b100. Firstly, I did this transaction/REST request { "jsonrpc": "2.0", "method": "invoke", "params": { "type": 1,

Connecting Android application to BlueMix stored DB2 Database

烂漫一生 提交于 2019-12-24 03:42:39
问题 How can I connect an Android application to a DB2 database stored in BlueMix? I know that some Java libraries are missing in Android, so I can't use JDBC to connect to the database. Any Idea? 回答1: You can not talk directly to the SQL DB on Bluemix from your android app. You will need to create an intermediary application on bluemix that talks to the db and your android app can talk to that application. You can implement this backend as a RESTful API (Java JAX-RS, Node.js w/ Express etc). The