Code Monkey home page Code Monkey logo

assistant-with-discovery's Introduction

Watson Assistant (formerly Conversation) with Discovery Build Status

This application demonstrates how you can combine the Watson Assistant and Discovery services to allow customers, employees or the public to get answers to a wide range of questions about a product, service or other topic using plain English. First, users pose a questions to the Watson Assistant service. If Watson Assistant is not able to confidently answer, the app executes a call to Discovery, which to provides a list of helpful answers.

log4j version for CVE-2021-44228

CVE-2021-44228 noted that versions of log4j2 prior to 2.16.0 allow for remote code execution. Addtionally, CVE-2021-45105 noted that versions of log4j prior to 2.17.0 did not protect from uncontrolled recursion from self-referrential lookups. You can read details about the CVE-2021-44228 here and CVE-2021-45105 here. We have updated the application (although it is deprecated) to bump the log4j version to 2.17.0. Revisions of this application prior to this update used log4j version 2.1 and thus are vunerable to this CVE. If you have forked this repository in the past, you are strongly encouraged to update your version of log4j to 2.17.0 to mitigate this security issue.

How the app works

The app has a conversational interface that can answer basic questions about a fictitious cognitive car, as well as more obscure questions whose answers can be found in the car’s manual. The app uses two Watson services: Watson Assistant and Discovery. The Watson Assistant service powers the basic Q&A using intents, relationships and natural language, and calls the Discovery app when it encounters questions it can’t answer. Discovery searches and ranks responses from the manual to answer those questions.

The application is designed and trained for chatting with your cognitive car. The chat interface is on the left, and the JSON that the JavaScript code receives from the server is on the right. A user is able to ask two primary categories of questions.

Commands may be issued to the car to perform simple operations. These commands are run against a small set of sample data trained with intents like "turn_on", "weather", and "capabilities".

Example commands that can be executed by the Watson Assistant service are:

turn on windshield wipers
play music

In addition to conversational commands, you can also ask questions that you would expect to have answered in your car manual. For example:

How do I check my tire pressure
How do I turn on cruise control
How do I improve fuel efficiency
How do I connect my phone to bluetooth

Getting Started locally

Before you begin

Create the services

  1. In IBM Cloud, create a Watson Assistant Service instance.
  1. In IBM Cloud, create a Discovery Service instance.

Building locally

To build the application:

  1. Clone the repository

    git clone https://github.com/watson-developer-cloud/assistant-with-discovery
    
  2. Navigate to the assistant-with-discovery folder

  3. For Windows, type gradlew.bat build. Otherwise, type ./gradlew build.

  4. The built WAR file (watson-assistant-with-discovery-0.1-SNAPSHOT.war) is in the assistant-with-discovery/build/libs/ folder.

Running locally

  1. Copy the WAR file generated above into the Liberty install directory's dropins folder. For example, <liberty install directory>/usr/servers/<server profile>/dropins.
  2. Navigate to the assistant-with-discovery/src/main/resources folder. Copy the server.env file.
  3. Navigate to the <liberty install directory>/usr/servers/<server name>/ folder (where < server name > is the name of the Liberty server you wish to use). Paste the server.env here.
  4. In the server.env file, in the "Watson Assistant" section.
  • Populate the "password" field.
  • Populate the "username" field.
  • Add the WORKSPACE_ID that you copied earlier.
  1. In the server.env file, in the "discovery" section.
  • Populate the "password" field.
  • Populate the "username" field.
  • Add the COLLECTION_ID and ENVIRONMENT_ID that you copied from the Discovery UI
  • (Optional) Edit the DISCOVERY_QUERY_FIELDS field if you set up a custom configuration . Learn more here.
  1. Start the server using Eclipse or CLI with the command server run <server name> (use the name you gave your server). If you are using a Unix command line, first navigate to the <liberty install directory>/bin/ folder and then ./server run <server name>.
  2. Liberty notifies you when the server starts and includes the port information.
  3. Open your browser of choice and go to the URL displayed in Step 6. By default, this is http://localhost:9080/.

Create a collection and ingest documents in Discovery

  1. Navigate to your Discovery instance in your IBM Cloud dashboard

  2. Launch the Discovery tooling

  3. Create a new data collection, name it whatever you like, and select the default configuration. The default configuration now uses Natural Language Understanding.


  • After you're done, there should be a new private collection in the UI
  1. Download and unzip the manualdocs.zip in this repo to reveal a set of JSON documents

  2. In the tooling interface, drag and drop (or browse and select) all of the JSON files into the "Add data to this collection" box

  • This may take a few minutes -- you will see a notification when the process is finished

Service Credentials

  1. Go to the IBM Cloud Dashboard and select the Watson Assistant/Discovery service instance. Once there, select the Service Credentials menu item.

  1. Select New Credential. Name your credentials then select Add.

  2. Copy the credentials (or remember this location) for later use.

Import a workspace

To use the app you're creating, you need to add a workspace to your Watson Assistant service. A workspace is a container for all the artifacts that define the behavior of your service (ie: intents, entities and chat flows). For this sample app, a workspace is provided.

For more information on workspaces, see the full Watson Assistant service documentation.

  1. Navigate to the IBM Cloud dashboard and select the Watson Assistant service you created.

  1. Click the Launch Tool button under the Manage tab. This opens a new tab in your browser, where you are prompted to login if you have not done so before. Use your IBM Cloud credentials.

  1. Download the exported JSON file that contains the Workspace contents.

  2. Select the import icon: . Browse to (or drag and drop) the JSON file that you downloaded in Step 3. Choose to import Everything(Intents, Entities, and Dialog). Then select Import to finish importing the workspace.

  3. Refresh your browser. A new workspace tile is created within the tooling. Select the menu button within the workspace tile, then select View details:

Workpsace Details

In the Details UI, copy the 36 character UNID **ID** field. This is the **Workspace ID**.

  1. Return to the deploy steps that you were following:

Adding environment variables in IBM Cloud

  1. In IBM Cloud, open the application from the Dashboard. Select Runtime and then Environment Variables.
  2. In the User Defined section, add the following Watson Assistant environment variables:
  • ASSISTANT_PASSWORD: Use your Watson Assistant service credentials
  • ASSISTANT_USERNAME: Use your Watson Assistant service credentials
  • WORKSPACE_ID: Add the Workspace ID you copied earlier.
  1. Then add the following four Discovery environment variables to this section:
  • DISCOVERY_PASSWORD: Use your Discovery service credentials
  • DISCOVERY_USERNAME: Use your Discovery service credentials
  • DISCOVERY_COLLECTION_ID: Find your collection ID in the Discovery collection you created
  • DISCOVERY_ENVIRONMENT_ID: Find your environment ID in the Discovery collection you created
  • DISCOVERY_QUERY_FIELDS: Set this value to 'none'. If you set up a custom configuration (optional), set this value to the name of your enrichment fields, separated by commas. Learn more here..
  1. Select SAVE.
  2. Restart your application.

Troubleshooting in IBM Cloud

  1. Log in to IBM Cloud, you'll be taken to the dashboard.
  2. Navigate to the the application you previously created.
  3. Select Logs.

License

This sample code is licensed under Apache 2.0. Full license text is available in LICENSE.

Contributing

See CONTRIBUTING.

Open Source @ IBM

Find more open source projects on the IBM Github Page.

assistant-with-discovery's People

Contributors

ambercraig avatar ancadumitrache avatar andresfvilla avatar ashleylord8 avatar bruceadams avatar dgterry avatar germanattanasio avatar hsaylor avatar mamoonraja avatar mediumtaj avatar michelle-miller avatar premsankar89 avatar sirspidey avatar stevenoh93 avatar sud-puth avatar ttlew avatar watson-github-bot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

assistant-with-discovery's Issues

Error 404:java.io.FileNotFoundException: SRVE0190E: File not found......

Hi, I got this error message as this pic: http://imgur.com/a/JaRqF
I don't know what this means. How can I solve it?

I can just ignore this error message and the Conversation still works well. But when Retrieve and Rank be triggered, there will be just a loading icon without any response until I enter next message.

This error occurs both on http://conversation-enhanced.mybluemix.net/ and my own deployment.
I've been trying hard to solve this problem but in vain.
Please help me, thanks!

Issues with location, day of the week, and sequences

Hi, this is Fay from the E&D team. We were trying the ASK and had the issues below. It looks like NLU is pulling the location correctly- can the Conversation team look into this?

The app doesnt work for Pittsburgh. I get an error message consistently of "we couldnt reach the weather company now". Can you please check?
Also, the day of the week doesnt seem to work (Fails consistently for Wednesday)
Also, it gets confused if I provide different cities in sequence and pulls the weather for a city entered much earlier rather than the most recent input.

401 Unauthorized when accessing watson assistant service using apikey

I am trying to access the watson assistant service in sydney region using apikey .

My assumption is that the Swagger JSON will be same across all the regions for the watson assistant service .

So i am using the JSON from
https://watson-api-explorer.ng.bluemix.net/listings/conversation-v1.json .

As part of our product we generate adapter to access assistant service . When ever i try access service , i am getting 401 unauthorized even though i pass the apikey in Authorization Header as per your defined JSON .

This is My HttpHeader request ..

Accept: application/json
Authorization : HIdLuTGbRlMopuKJ-zU97XdFeEHJISZIU5i-h2wSuCpZ
Content-Type: application/json
User-Agent: Swagger-Codegen/1.0.0/java

And in your JSON , the security definition is like ....

"securityDefinitions": {
"basicAuth": {
"type": "basic"
},
"IAM": {
"type": "apiKey",
"name": "Authorization",
"in": "header"
}
}

So , when i try the same thing using CuRL command it is working

curl -X GET "https://gateway-syd.watsonplatform.net/assistant/api/v1/workspaces?page_limit=100&include_count=false&include_audit=false&version=2018-02-16" -H "accept: application/json" -u "apiKey":"HIdLuTGbRlMopuKJ-zU97XdFeEHJISZIU5i-h2wSuCpZ"

But my question is i see the apikey has to be set in the authorization header , but when i try CuRL with same header option like

curl -X GET "https://gateway-syd.watsonplatform.net/assistant/api/v1/workspaces?page_limit=100&include_count=false&include_audit=false&version=2018-02-16" -H "accept: application/json" -H "Authorization:HIdLuTGbRlMopuKJ-zU97XdFeEHJISZIU5i-h2wSuCpZ"

It is not working...

Please need your input on this .

Note : We are generating Swagger Client code to access the service

Urgent! Please Help! App not working properly in Bluemix: GENERIC_ERROR ("Service seems to be down.Please try again after sometime or Please check the logs.") after deployment

We need to have this App running for a Business Opportunity this Week, but after deploying the App in Bluemix and setting all the Environment Variables i run into some strange Problems:

The App is online and i am able to load the Webpage

The App returns as Messages:
"This Watson app shows how the Conversation service calls on Discovery to find answers when it's not sure how to respond. Try testing this below, using the examples in the app description"

And:
"Service seems to be down.Please try again after sometime or Please check the logs."

I have identified this as "GENERIC_ERROR" in src/main/java/com/ibm/watson/apis/conversation_with_discovery/rest/ProxyResource.java everything seems to be fine with the credentials, though.

com.ibm.watson.developer_cloud.conversation.v1.model.MessageResponse is throwing an exception, there seem too be some reoccurent Error in the Logs: java.net.UnknownServiceException: Unable to find acceptable protocols

Logs:
API/0
Updated app with guid 624a7e93-ecb9-4da4-bd2b-f31e83690e98 ({"route"=>"2f406a8b-cac8-41d3-a0a4-de670c0a8eec", :verb=>"add", :relation=>:routes, :related_guid=>"2f406a8b-cac8-41d3-a0a4-de670c0a8eec"})
Jun 6, 2017 12:11:24.990 AM
API/0
Updated app with guid 624a7e93-ecb9-4da4-bd2b-f31e83690e98 ({"state"=>"STARTED"})
Jun 6, 2017 12:11:46.746 AM
STG/0
Downloading dotnet-core_v1_0_13-20170330-1023...
Jun 6, 2017 12:11:47.642 AM
STG/0
Downloading go_buildpack...
Jun 6, 2017 12:11:47.643 AM
STG/0
Downloading liberty-for-java...
Jun 6, 2017 12:11:47.643 AM
STG/0
Downloading sdk-for-nodejs...
Jun 6, 2017 12:11:47.659 AM
STG/0
Downloaded go_buildpack
Jun 6, 2017 12:11:47.675 AM
STG/0
Downloaded liberty-for-java
Jun 6, 2017 12:11:47.679 AM
STG/0
Downloaded dotnet-core_v1_0_13-20170330-1023
Jun 6, 2017 12:11:47.679 AM
STG/0
Downloading noop-buildpack...
Jun 6, 2017 12:11:47.679 AM
STG/0
Downloading swift_buildpack...
Jun 6, 2017 12:11:47.679 AM
STG/0
Downloaded sdk-for-nodejs
Jun 6, 2017 12:11:47.683 AM
STG/0
Downloaded java_buildpack
Jun 6, 2017 12:11:47.704 AM
STG/0
Downloading ruby_buildpack...
Jun 6, 2017 12:11:47.704 AM
STG/0
Downloaded noop-buildpack
Jun 6, 2017 12:11:47.705 AM
STG/0
Downloading nodejs_buildpack...
Jun 6, 2017 12:11:47.705 AM
STG/0
Downloaded dotnet-core
Jun 6, 2017 12:11:47.706 AM
STG/0
Downloading binary_buildpack...
Jun 6, 2017 12:11:47.707 AM
STG/0
Downloading python_buildpack...
Jun 6, 2017 12:11:47.707 AM
STG/0
Downloaded swift_buildpack
Jun 6, 2017 12:11:47.707 AM
STG/0
Downloaded nodejs_buildpack
Jun 6, 2017 12:11:47.735 AM
STG/0
Downloaded python_buildpack
Jun 6, 2017 12:11:47.735 AM
STG/0
Downloading php_buildpack...
Jun 6, 2017 12:11:47.736 AM
STG/0
Downloading xpages_buildpack...
Jun 6, 2017 12:11:47.736 AM
STG/0
Downloaded ruby_buildpack
Jun 6, 2017 12:11:47.737 AM
STG/0
Downloading staticfile_buildpack...
Jun 6, 2017 12:11:47.737 AM
STG/0
Downloaded binary_buildpack
Jun 6, 2017 12:11:47.739 AM
STG/0
Downloading liberty-for-java_v3_8-20170308-1507...
Jun 6, 2017 12:11:47.739 AM
STG/0
Downloading liberty-for-java_v3_7-20170118-2046...
Jun 6, 2017 12:11:47.765 AM
STG/0
Downloading sdk-for-nodejs_v3_11-20170303-1144...
Jun 6, 2017 12:11:47.767 AM
STG/0
Downloaded xpages_buildpack
Jun 6, 2017 12:11:47.767 AM
STG/0
Downloading swift_buildpack_v2_0_5-20170406-2317...
Jun 6, 2017 12:11:47.767 AM
STG/0
Downloaded php_buildpack
Jun 6, 2017 12:11:47.767 AM
STG/0
Downloaded staticfile_buildpack
Jun 6, 2017 12:11:47.768 AM
STG/0
Downloaded liberty-for-java_v3_7-20170118-2046
Jun 6, 2017 12:11:47.783 AM
STG/0
Downloaded swift_buildpack_v2_0_5-20170406-2317
Jun 6, 2017 12:11:47.793 AM
STG/0
Downloaded sdk-for-nodejs_v3_11-20170303-1144
Jun 6, 2017 12:11:47.794 AM
STG/0
Creating container
Jun 6, 2017 12:11:47.794 AM
STG/0
Downloading app package...
Jun 6, 2017 12:11:48.959 AM
STG/0
Successfully created container
Jun 6, 2017 12:11:48.959 AM
STG/0
Staging...
Jun 6, 2017 12:11:49.570 AM
STG/0
Downloaded app package (10.5M)
Jun 6, 2017 12:11:49.570 AM
STG/0
-----> Retrieving IBM 1.8.0_20170215 JRE (ibm-java-jre-8.0-4.1-pxa6480sr4fp1-20170215_01-cloud.tgz) ... (0.0s)
Jun 6, 2017 12:11:50.967 AM
STG/0
Expanding JRE to .java ... (1.4s)
Jun 6, 2017 12:11:52.457 AM
STG/0
-----> Retrieving App Management 1.25.0_20170214-1539 (app-mgmt_v1.25-20170214-1539.zip) ... (0.0s)
Jun 6, 2017 12:11:52.463 AM
STG/0
Expanding App Management to .app-management (0.3s)
Jun 6, 2017 12:11:52.836 AM
STG/0
-----> Retrieving com.ibm.ws.liberty-17.0.1.1-201704191403.tar.gz ... (0.0s)
Jun 6, 2017 12:11:52.839 AM
STG/0
Installing archive ... (1.3s)
Jun 6, 2017 12:11:54.176 AM
STG/0
-----> Warning: Liberty feature set is not specified. Using the default feature set: ["beanValidation-1.1", "cdi-1.2", "ejbLite-3.2", "el-3.0", "jaxrs-2.0", "jdbc-4.1", "jndi-1.0", "jpa-2.1", "jsf-2.2", "jsonp-1.0", "jsp-2.3", "managedBeans-1.0", "servlet-3.1", "websocket-1.1"]. For the best results, explicitly set the features via the JBP_CONFIG_LIBERTY environment variable or deploy the application as a server directory or packaged server with a custom server.xml file.
Jun 6, 2017 12:11:54.215 AM
STG/0
-----> Liberty buildpack is done creating the droplet
Jun 6, 2017 12:11:54.250 AM
STG/0
Uploading droplet, build artifacts cache...
Jun 6, 2017 12:12:09.129 AM
STG/0
Staging complete
Jun 6, 2017 12:12:09.129 AM
STG/0
Exit status 0
Jun 6, 2017 12:12:09.129 AM
STG/0
Uploading droplet...
Jun 6, 2017 12:12:09.129 AM
STG/0
Uploading build artifacts cache...
Jun 6, 2017 12:12:09.130 AM
STG/0
Uploaded build artifacts cache (108B)
Jun 6, 2017 12:12:09.201 AM
STG/0
Uploaded droplet (146.7M)
Jun 6, 2017 12:12:20.412 AM
STG/0
Uploading complete
Jun 6, 2017 12:12:20.442 AM
STG/0
Destroying container
Jun 6, 2017 12:12:20.495 AM
CELL/0
Creating container
Jun 6, 2017 12:12:21.006 AM
STG/0
Successfully destroyed container
Jun 6, 2017 12:12:22.351 AM
CELL/0
Successfully created container
Jun 6, 2017 12:12:22.888 AM
APP/0
Setting JDK heap to: -Xmx384M
Jun 6, 2017 12:12:30.550 AM
APP/0
Launching defaultServer (WebSphere Application Server 17.0.0.1/wlp-1.0.16.cl170120170227-0220) on IBM J9 VM, version pxa6480sr4fp1-20170215_01 (SR4 FP1) (en_US)
Jun 6, 2017 12:12:31.629 AM
APP/0
[AUDIT ] CWWKE0001I: The server defaultServer has been launched.
Jun 6, 2017 12:12:32.031 AM
APP/0
[AUDIT ] CWWKG0028A: Processing included configuration resource: /home/vcap/app/wlp/usr/servers/defaultServer/runtime-vars.xml
Jun 6, 2017 12:12:35.878 AM
APP/0
[INFO ] CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host localhost (IPv4: 127.0.0.1) port 8080.
Jun 6, 2017 12:12:58.582 AM
APP/0
[INFO ] CWSCX0122I: Register management Bean provider: com.ibm.ws.cloudoe.management.client.provider.dump.JavaDumpBeanProvider@e8deeac.
Jun 6, 2017 12:13:00.922 AM
APP/0
[INFO ] CWSCX0122I: Register management Bean provider: com.ibm.ws.cloudoe.management.client.provider.logging.LibertyLoggingBeanProvider@c0c051a0.
Jun 6, 2017 12:13:00.922 AM
APP/0
[INFO ] SRVE0169I: Loading Web Module: com.ibm.ws.cloudoe.management.client.liberty.connector.
Jun 6, 2017 12:13:05.769 AM
APP/0
[INFO ] SRVE0250I: Web Module com.ibm.ws.cloudoe.management.client.liberty.connector has been bound to default_host.
Jun 6, 2017 12:13:05.786 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://localhost:8080/IBMMGMTRest/
Jun 6, 2017 12:13:05.815 AM
APP/0
[INFO ] SESN0176I: A new session context will be created for application key default_host/IBMMGMTRest
Jun 6, 2017 12:13:06.134 AM
APP/0
[INFO ] SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
Jun 6, 2017 12:13:06.237 AM
APP/0
[INFO ] WELD-000900: 2.4.0 (Final)
Jun 6, 2017 12:13:11.952 AM
APP/0
[AUDIT ] CWWKZ0001I: Application myapp started in 8.196 seconds.
Jun 6, 2017 12:13:12.554 AM
APP/0
[INFO ] SRVE0250I: Web Module Conversation with Discovery Demo has been bound to default_host.
Jun 6, 2017 12:13:12.554 AM
APP/0
[INFO ] CWWKO0220I: TCP Channel defaultHttpEndpoint has stopped listening for requests on host localhost (IPv4: 127.0.0.1) port 8080.
Jun 6, 2017 12:13:12.567 AM
APP/0
[AUDIT ] CWWKT0017I: Web application removed (default_host): http://localhost:8080/IBMMGMTRest/
Jun 6, 2017 12:13:12.568 AM
APP/0
[AUDIT ] CWWKT0017I: Web application removed (default_host): http://localhost:8080/
Jun 6, 2017 12:13:12.574 AM
APP/0
[INFO ] CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host * (IPv4) port 8080.
Jun 6, 2017 12:13:12.604 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://a306273e-d102-4776-44fb-eaf71e565fd6:8080/IBMMGMTRest/
Jun 6, 2017 12:13:12.605 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://a306273e-d102-4776-44fb-eaf71e565fd6:8080/
Jun 6, 2017 12:13:12.605 AM
APP/0
[INFO ] CWWKF0008I: Feature update completed in 34.298 seconds.
Jun 6, 2017 12:13:12.671 AM
APP/0
[AUDIT ] CWWKF0011I: The server defaultServer is ready to run a smarter planet.
Jun 6, 2017 12:13:12.671 AM
APP/0
[AUDIT ] CWWKF0012I: The server installed the following features: [jsp-2.3, ejbLite-3.2, managedBeans-1.0, jsf-2.2, servlet-3.1, beanValidation-1.1, jndi-1.0, jsonp-1.0, jdbc-4.1, icap:managementConnector-1.0, jaxrs-2.0, jaxrsClient-2.0, el-3.0, json-1.0, cdi-1.2, websocket-1.1, jpa-2.1, appState-2.0].
Jun 6, 2017 12:13:12.671 AM
APP/0
[AUDIT ] CWWKF0015I: The server has the following interim fixes active in the runtime: PI79275,PI77605,PI75512. For a full listing of installed fixes run: productInfo version --ifixes
Jun 6, 2017 12:13:12.671 AM
APP/0
[INFO ] SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /home/vcap/app/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
Jun 6, 2017 12:13:12.861 AM
APP/0
[INFO ] SESN0176I: A new session context will be created for application key default_host/
Jun 6, 2017 12:13:12.898 AM
APP/0
[INFO ] SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
Jun 6, 2017 12:13:12.902 AM
APP/0
[INFO ] JSPG8502I: The value of the JSP attribute jdkSourceLevel is "17".
Jun 6, 2017 12:13:12.932 AM
APP/0
2017-06-05 22:13:14,305 INFO Log4j appears to be running in a Servlet environment, but there's no log4j-web module available. If you want better web container support, please add the log4j-web JAR to your web archive or server lib directory.
Jun 6, 2017 12:13:14.312 AM
CELL/0
Container became healthy
Jun 6, 2017 12:13:14.558 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:33.238 +0000] "GET /dist/vendor.min.js HTTP/1.1" 200 0 2130978 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:47964 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:43ad3a3d-bd9c-412e-6ba8-e4c42d733be9 response_time:0.137683406 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2014416627"
Jun 6, 2017 12:14:33.376 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:35.948 +0000] "GET /dist/js/dialog.service.js HTTP/1.1" 200 0 2810 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.116:42975 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:9ab30e09-d1c1-4d68-4698-b5803d850242 response_time:0.038008969 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3245071455"
Jun 6, 2017 12:14:35.987 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:35.954 +0000] "GET /dist/js/ce.docs.js HTTP/1.1" 200 0 4283 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:44826 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:93bb22f2-3f1e-4e6a-6458-98ff23c44a45 response_time:0.047531732 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"4092221991"
Jun 6, 2017 12:14:36.002 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:35.961 +0000] "GET /dist/js/payload.js HTTP/1.1" 200 0 4497 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:30851 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:84070c94-1d22-4c77-5a9b-f6e7b45cfe92 response_time:0.044789973 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3922946463"
Jun 6, 2017 12:14:36.006 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:36.607 +0000] "GET /dist/locale/en.json HTTP/1.1" 200 0 1069 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:31177 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:66b2792a-eb2e-4bb3-5bf2-15bce58b9bb5 response_time:0.012455846 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3569577217"
Jun 6, 2017 12:14:36.620 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:36.608 +0000] "GET /img/Chat%20Button.png HTTP/1.1" 200 0 2198 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.116:40714 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:1cd12c4e-3b6b-407d-7cae-e37ff7c7bdbf response_time:0.027977496 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3245074991"
Jun 6, 2017 12:14:36.637 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:36.798 +0000] "GET /dist/img/marker_image.png HTTP/1.1" 200 0 163 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/css/app.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:31481 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:0f2bb5d0-52c7-4bb8-6102-9c73e7920102 response_time:0.015000745 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3569578049"
Jun 6, 2017 12:14:36.813 AM
APP/0
[INFO ] Setting the server's publish address to be /rest/
Jun 6, 2017 12:14:36.978 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:37.142 +0000] "GET /favicon.ico HTTP/1.1" 200 0 1150 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:31477 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:afa65e66-18a5-4b6b-7736-cad48775cc47 response_time:0.017692128 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3922964367"
Jun 6, 2017 12:14:37.161 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:36.625 +0000] "GET /rest/setup HTTP/1.1" 200 0 74 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:41754 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:a9f90337-2e2c-4ca4-7552-f8b5bb29b759 response_time:1.086951269 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3631548865"
Jun 6, 2017 12:14:37.713 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:56.858 +0000] "GET /img/loader.gif HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:32270 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:bd6c8286-f83c-491b-5483-c711840a2831 response_time:0.02123143 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"430821325"
Jun 6, 2017 12:14:56.880 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:57.646 +0000] "GET /dist/js/payload.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:47673 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:1a8c2303-15c5-4242-50a3-1679db35f2b7 response_time:0.05438922 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3631550705"
Jun 6, 2017 12:14:57.701 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:57.630 +0000] "GET /dist/js/dialog.service.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.116:40761 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:7a946a1d-dd18-4cbc-5c51-284a7c373123 response_time:0.113922963 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"1412352465"
Jun 6, 2017 12:14:57.745 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:58.429 +0000] "GET /rest/setup HTTP/1.1" 200 0 74 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.116:17249 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:9b9b2a17-34ec-4c5d-792e-9f78276b3f42 response_time:0.028507602 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2913560887"
Jun 6, 2017 12:14:58.458 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:14:58.431 +0000] "GET /img/Chat%20Button.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:27047 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:52f37425-6ac2-448d-6d8b-35ba1f0bd81d response_time:0.061210815 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3931958247"
Jun 6, 2017 12:14:58.493 AM
APP/0
[INFO ] CWSCX0162I: The property management_server_tokenValidationURL is detected as https://rtmgmt.ng.bluemix.net/rest/token/v1/check_token.
Jun 6, 2017 12:18:16.435 AM
APP/0
[INFO ] SRVE0242I: [com.ibm.ws.cloudoe.management.client.liberty.connector] [/IBMMGMTRest] [ManagmentClientServlet]: Initialization successful.
Jun 6, 2017 12:18:16.435 AM
APP/0
[INFO ] CWSCX0161I: The property management_server_url is configured with https://rtmgmt.ng.bluemix.net.
Jun 6, 2017 12:18:16.435 AM
API/0
Updated app with guid 624a7e93-ecb9-4da4-bd2b-f31e83690e98 ({"environment_json"=>"PRIVATE DATA HIDDEN"})
Jun 6, 2017 12:31:16.268 AM
CELL/0
Exit status 0
Jun 6, 2017 12:31:18.097 AM
CELL/0
Creating container
Jun 6, 2017 12:31:20.887 AM
CELL/0
Successfully created container
Jun 6, 2017 12:31:24.536 AM
CELL/0
Destroying container
Jun 6, 2017 12:31:29.080 AM
CELL/0
Successfully destroyed container
Jun 6, 2017 12:31:29.893 AM
CELL/0
Starting health monitoring of container
Jun 6, 2017 12:31:32.092 AM
APP/0
Setting JDK heap to: -Xmx384M
Jun 6, 2017 12:31:33.051 AM
APP/0
Launching defaultServer (WebSphere Application Server 17.0.0.1/wlp-1.0.16.cl170120170227-0220) on IBM J9 VM, version pxa6480sr4fp1-20170215_01 (SR4 FP1) (en_US)
Jun 6, 2017 12:31:34.247 AM
APP/0
[AUDIT ] CWWKE0001I: The server defaultServer has been launched.
Jun 6, 2017 12:31:35.300 AM
APP/0
[AUDIT ] CWWKG0028A: Processing included configuration resource: /home/vcap/app/wlp/usr/servers/defaultServer/runtime-vars.xml
Jun 6, 2017 12:31:47.390 AM
APP/0
[INFO ] CWWKE0002I: The kernel started after 23.579 seconds
Jun 6, 2017 12:31:57.153 AM
APP/0
[INFO ] CWWKF0007I: Feature update started.
Jun 6, 2017 12:31:57.786 AM
APP/0
[INFO ] CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host localhost (IPv4: 127.0.0.1) port 8080.
Jun 6, 2017 12:32:29.636 AM
APP/0
[INFO ] CWSCX0122I: Register management Bean provider: com.ibm.ws.cloudoe.management.client.provider.dump.JavaDumpBeanProvider@22aa951d.
Jun 6, 2017 12:32:32.960 AM
CELL/0
Timed out after 1m0s: health check never passed.
Jun 6, 2017 12:32:34.964 AM
CELL/0
Exit status 0
Jun 6, 2017 12:32:34.976 AM
APP/0
[INFO ] CWWKZ0018I: Starting application myapp.
Jun 6, 2017 12:32:42.831 AM
APP/0
[INFO ] SRVE0169I: Loading Web Module: com.ibm.ws.cloudoe.management.client.liberty.connector.
Jun 6, 2017 12:32:45.088 AM
APP/0
[INFO ] SRVE0250I: Web Module com.ibm.ws.cloudoe.management.client.liberty.connector has been bound to default_host.
Jun 6, 2017 12:32:45.088 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://localhost:8080/IBMMGMTRest/
Jun 6, 2017 12:32:45.102 AM
APP/0
[INFO ] SESN0176I: A new session context will be created for application key default_host/IBMMGMTRest
Jun 6, 2017 12:32:45.686 AM
APP/0
[INFO ] SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
Jun 6, 2017 12:32:45.861 AM
CELL/0
Destroying container
Jun 6, 2017 12:32:45.992 AM
CELL/0
Creating container
Jun 6, 2017 12:32:46.798 AM
CELL/0
Successfully created container
Jun 6, 2017 12:32:48.909 AM
CELL/0
Starting health monitoring of container
Jun 6, 2017 12:32:56.251 AM
APP/0
Setting JDK heap to: -Xmx384M
Jun 6, 2017 12:32:57.293 AM
APP/0
Launching defaultServer (WebSphere Application Server 17.0.0.1/wlp-1.0.16.cl170120170227-0220) on IBM J9 VM, version pxa6480sr4fp1-20170215_01 (SR4 FP1) (en_US)
Jun 6, 2017 12:32:58.186 AM
APP/0
[AUDIT ] CWWKE0001I: The server defaultServer has been launched.
Jun 6, 2017 12:32:58.690 AM
APP/0
[AUDIT ] CWWKG0028A: Processing included configuration resource: /home/vcap/app/wlp/usr/servers/defaultServer/runtime-vars.xml
Jun 6, 2017 12:33:02.192 AM
APP/0
[INFO ] CWWKE0002I: The kernel started after 6.689 seconds
Jun 6, 2017 12:33:04.480 AM
APP/0
[INFO ] CWWKF0007I: Feature update started.
Jun 6, 2017 12:33:04.819 AM
APP/0
[INFO ] CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host localhost (IPv4: 127.0.0.1) port 8080.
Jun 6, 2017 12:33:19.379 AM
APP/0
[INFO ] CWSCX0122I: Register management Bean provider: com.ibm.ws.cloudoe.management.client.provider.dump.JavaDumpBeanProvider@dcdedab1.
Jun 6, 2017 12:33:22.323 AM
APP/0
[INFO ] CWSCX0122I: Register management Bean provider: com.ibm.ws.cloudoe.management.client.provider.logging.LibertyLoggingBeanProvider@6230fb3f.
Jun 6, 2017 12:33:22.324 AM
APP/0
[INFO ] SRVE0250I: Web Module com.ibm.ws.cloudoe.management.client.liberty.connector has been bound to default_host.
Jun 6, 2017 12:33:26.886 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://localhost:8080/IBMMGMTRest/
Jun 6, 2017 12:33:26.920 AM
APP/0
[INFO ] SESN8501I: The session manager did not find a persistent storage location; HttpSession objects will be stored in the local application server's memory.
Jun 6, 2017 12:33:27.125 AM
APP/0
[INFO ] SESN0176I: A new session context will be created for application key default_host/IBMMGMTRest
Jun 6, 2017 12:33:27.125 AM
APP/0
[INFO ] SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
Jun 6, 2017 12:33:27.125 AM
APP/0
[INFO ] WELD-000900: 2.4.0 (Final)
Jun 6, 2017 12:33:35.568 AM
APP/0
[INFO ] SRVE0250I: Web Module Conversation with Discovery Demo has been bound to default_host.
Jun 6, 2017 12:33:36.155 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://localhost:8080/
Jun 6, 2017 12:33:36.156 AM
APP/0
[AUDIT ] CWWKZ0001I: Application myapp started in 10.317 seconds.
Jun 6, 2017 12:33:36.159 AM
APP/0
[INFO ] CWWKF0008I: Feature update completed in 31.721 seconds.
Jun 6, 2017 12:33:36.197 AM
APP/0
[AUDIT ] CWWKF0015I: The server has the following interim fixes active in the runtime: PI79275,PI77605,PI75512. For a full listing of installed fixes run: productInfo version --ifixes
Jun 6, 2017 12:33:36.197 AM
APP/0
[AUDIT ] CWWKF0011I: The server defaultServer is ready to run a smarter planet.
Jun 6, 2017 12:33:36.197 AM
APP/0
[AUDIT ] CWWKF0012I: The server installed the following features: [jsp-2.3, ejbLite-3.2, managedBeans-1.0, jsf-2.2, servlet-3.1, beanValidation-1.1, jndi-1.0, jsonp-1.0, jdbc-4.1, icap:managementConnector-1.0, jaxrs-2.0, jaxrsClient-2.0, el-3.0, json-1.0, cdi-1.2, websocket-1.1, jpa-2.1, appState-2.0].
Jun 6, 2017 12:33:36.197 AM
APP/0
[AUDIT ] CWWKT0017I: Web application removed (default_host): http://localhost:8080/
Jun 6, 2017 12:33:36.238 AM
APP/0
[INFO ] CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host * (IPv4) port 8080.
Jun 6, 2017 12:33:36.397 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://55f52e35-e862-4a57-6cb5-00ebfbac73bd:8080/
Jun 6, 2017 12:33:36.401 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://55f52e35-e862-4a57-6cb5-00ebfbac73bd:8080/IBMMGMTRest/
Jun 6, 2017 12:33:36.401 AM
APP/0
[INFO ] SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /home/vcap/app/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
Jun 6, 2017 12:33:36.511 AM
APP/0
[INFO ] SESN0176I: A new session context will be created for application key default_host/
Jun 6, 2017 12:33:36.566 AM
APP/0
[INFO ] SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
Jun 6, 2017 12:33:36.567 AM
APP/0
2017-06-05 22:33:37,598 INFO Log4j appears to be running in a Servlet environment, but there's no log4j-web module available. If you want better web container support, please add the log4j-web JAR to your web archive or server lib directory.
Jun 6, 2017 12:33:37.613 AM
APP/0
22:33:38.006 [Default Executor-thread-3] INFO com.ibm.watson.apis.conversation_with_discovery.listener.AppServletContextListener - Deploying ServletContextListener
Jun 6, 2017 12:33:38.014 AM
CELL/0
Container became healthy
Jun 6, 2017 12:33:38.262 AM
APP/0
22:33:40.540 [Thread-19] ERROR com.ibm.watson.apis.conversation_with_discovery.listener.SetupThread - !SetupThread.ERROR_COLLECTION_INIT!java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=[ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_2, TLS_1_1, TLS_1_0], supportsTlsExtensions=true), ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_0], supportsTlsExtensions=true), ConnectionSpec()], supported protocols=[TLSv1, TLSv1.1, TLSv1.2]
Jun 6, 2017 12:33:40.559 AM
APP/0
[INFO ] CWSCX0161I: The property management_server_url is configured with https://rtmgmt.ng.bluemix.net.
Jun 6, 2017 12:33:47.337 AM
APP/0
[INFO ] CWSCX0162I: The property management_server_tokenValidationURL is detected as https://rtmgmt.ng.bluemix.net/rest/token/v1/check_token.
Jun 6, 2017 12:33:47.348 AM
APP/0
[INFO ] SRVE0242I: [com.ibm.ws.cloudoe.management.client.liberty.connector] [/IBMMGMTRest] [ManagmentClientServlet]: Initialization successful.
Jun 6, 2017 12:33:47.382 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:35:53.644 +0000] "GET /dist/js/boot.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.27:44089 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:8358820b-c8c4-4012-7e37-b2a8f720556b response_time:0.0136154 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3774258911"
Jun 6, 2017 12:35:53.659 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:35:54.083 +0000] "GET /dist/js/app.component.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.151:11004 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:f66175e1-b97c-4443-63df-d06076e59641 response_time:0.010647484 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"1520848175"
Jun 6, 2017 12:35:54.094 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:35:54.283 +0000] "GET /dist/js/ce.docs.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.27:53961 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:e468ecf8-74f8-473f-7ad3-a141b3cca64e response_time:0.014988077 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"1178790061"
Jun 6, 2017 12:35:54.299 AM
APP/0
[INFO ] SRVE0242I: [myapp] [/] [com.ibm.watson.apis.conversation_with_discovery.rest.WinkApplication]: Initialization successful.
Jun 6, 2017 12:35:56.508 AM
APP/0
22:35:57.145 [Default Executor-thread-17] ERROR com.ibm.watson.apis.conversation_with_discovery.rest.ProxyResource - Exception on Query:java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=[ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_2, TLS_1_1, TLS_1_0], supportsTlsExtensions=true), ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_0], supportsTlsExtensions=true), ConnectionSpec()], supported protocols=[TLSv1, TLSv1.1, TLSv1.2]
Jun 6, 2017 12:35:57.153 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:36:02.055 +0000] "GET /dist/js/boot.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.27:55273 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:62c80794-91e2-445b-6d06-42dae91f1a0d response_time:0.024410462 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3774346095"
Jun 6, 2017 12:36:02.080 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:36:02.588 +0000] "GET /dist/js/ce.docs.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.27:57037 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:544814ff-4ce5-46ac-5090-9d7156246e42 response_time:0.038344165 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3774268831"
Jun 6, 2017 12:36:02.627 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:36:03.095 +0000] "GET /img/Chat%20Button.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.27:55273 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:f52c8f6f-680d-4e9f-6d80-26ad6fbfc969 response_time:0.011447375 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"1930721667"
Jun 6, 2017 12:36:03.107 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:36:03.101 +0000] "GET /dist/locale/en.json HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.151:26807 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:32ad4afc-2d86-4d72-4cee-9c8b60ce4ba3 response_time:0.043462668 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"1520923999"
Jun 6, 2017 12:36:03.145 AM
APP/0
22:36:03.447 [Default Executor-thread-29] ERROR com.ibm.watson.apis.conversation_with_discovery.rest.ProxyResource - Exception on Query:java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=[ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_2, TLS_1_1, TLS_1_0], supportsTlsExtensions=true), ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_0], supportsTlsExtensions=true), ConnectionSpec()], supported protocols=[TLSv1, TLSv1.1, TLSv1.2]
Jun 6, 2017 12:36:03.451 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:26.847 +0000] "GET /dist/index.html HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:42431 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:22b75c88-b1bb-4c03-420e-10f0c375a43d response_time:0.030199853 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3946893759"
Jun 6, 2017 12:38:26.878 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:28.245 +0000] "GET /dist/js/boot.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.116:50895 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:3013081b-deb5-4922-5d22-3f0a89c715ce response_time:0.024226345 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3268344639"
Jun 6, 2017 12:38:28.270 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:28.569 +0000] "GET /dist/js/app.component.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:43556 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:1903c3b1-0303-4ed4-6d08-6bf5b2d24f86 response_time:0.013532177 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3576357329"
Jun 6, 2017 12:38:28.583 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:28.783 +0000] "GET /dist/js/dialog.service.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:42459 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:5109f48c-8406-495b-5935-03efd94f5044 response_time:0.018715095 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3946945631"
Jun 6, 2017 12:38:28.802 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:28.958 +0000] "GET /dist/js/payload.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:36643 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:258b21ab-6a26-4fc4-46a0-31f86dd7d0b8 response_time:0.016570379 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3946954319"
Jun 6, 2017 12:38:28.978 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:29.757 +0000] "GET /img/Chat%20Button.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.116:50846 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:807c1882-4865-4cba-415b-0dc26d682862 response_time:0.047591269 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2922253367"
Jun 6, 2017 12:38:29.805 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:29.764 +0000] "GET /rest/setup HTTP/1.1" 200 0 108 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:53553 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:340104ef-7194-4584-5b33-2127e555909e response_time:0.043073033 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2002734259"
Jun 6, 2017 12:38:29.807 AM
APP/0
22:38:30.262 [Default Executor-thread-34] ERROR com.ibm.watson.apis.conversation_with_discovery.rest.ProxyResource - Exception on Query:java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=[ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_2, TLS_1_1, TLS_1_0], supportsTlsExtensions=true), ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_0], supportsTlsExtensions=true), ConnectionSpec()], supported protocols=[TLSv1, TLSv1.1, TLSv1.2]
Jun 6, 2017 12:38:30.276 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:32.666 +0000] "GET /img/loader.gif HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:53777 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:4efeb2a5-884e-4583-59df-25626dcf18c3 response_time:0.015073363 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3670386591"
Jun 6, 2017 12:38:32.682 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:32.676 +0000] "GET /dist/js/boot.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:44603 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:ceae632d-1d75-4fe0-5873-c0267d0f9297 response_time:0.020949351 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2002734483"
Jun 6, 2017 12:38:32.698 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:33.286 +0000] "GET /dist/js/dialog.service.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:52785 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:4c1b1caa-7b2b-4ea7-4db5-4333d675a96b response_time:0.015071128 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"4099963639"
Jun 6, 2017 12:38:33.302 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:33.832 +0000] "GET /dist/locale/en.json HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:56671 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:4a67fb61-b8b0-4649-535f-51c43f787efa response_time:0.009601149 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3526453465"
Jun 6, 2017 12:38:33.843 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:33.839 +0000] "GET /img/Code%20Button.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:52560 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:bd3df5f2-cace-41fa-7371-bc1a6c0f95a9 response_time:0.013135314 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3637912017"
Jun 6, 2017 12:38:33.853 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:33.845 +0000] "GET /rest/setup HTTP/1.1" 200 0 108 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.118:39958 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:7a3857d2-cc00-4d50-6aa2-e3d36053f721 response_time:0.032187185 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2019002355"
Jun 6, 2017 12:38:33.878 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:38:34.033 +0000] "GET /dist/img/marker_image.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/css/app.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:53689 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:4f884650-4837-453f-6700-2c019df0c960 response_time:0.00601153 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3637952961"
Jun 6, 2017 12:38:34.040 AM
APP/0
22:38:34.058 [Default Executor-thread-36] ERROR com.ibm.watson.apis.conversation_with_discovery.rest.ProxyResource - Exception on Query:java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=[ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_2, TLS_1_1, TLS_1_0], supportsTlsExtensions=true), ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_0], supportsTlsExtensions=true), ConnectionSpec()], supported protocols=[TLSv1, TLSv1.1, TLSv1.2]
Jun 6, 2017 12:38:34.060 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:40:24.029 +0000] "GET /dist/index.html HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:48020 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:08066307-e65b-4582-4d50-7627c99c44c4 response_time:0.007397255 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"4100787911"
Jun 6, 2017 12:40:24.037 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:40:26.018 +0000] "GET /dist/js/app.component.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.25:20928 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:125146d9-3ac0-468c-4d11-e77642c41903 response_time:0.023684516 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"381978519"
Jun 6, 2017 12:40:26.043 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:40:26.241 +0000] "GET /dist/js/dialog.response.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.25:43451 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:f97b5794-e8b1-420d-7c22-8f7435b6b0d2 response_time:0.336368345 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2502703855"
Jun 6, 2017 12:40:26.578 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:40:27.472 +0000] "GET /dist/locale/en.json HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.25:20932 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:dba2edc9-5a16-4a96-60c9-16377d7e0b62 response_time:0.009673572 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2536583709"
Jun 6, 2017 12:40:27.482 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:40:27.606 +0000] "GET /img/Chat%20Button.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 192.155.237.114:58606 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:4b5cf053-b4a0-46a9-71ca-e30c8f406a33 response_time:0.035195363 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"4100798231"
Jun 6, 2017 12:40:27.642 AM
APP/0
22:40:27.921 [Default Executor-thread-46] ERROR com.ibm.watson.apis.conversation_with_discovery.rest.ProxyResource - Exception on Query:java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=[ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_2, TLS_1_1, TLS_1_0], supportsTlsExtensions=true), ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_0], supportsTlsExtensions=true), ConnectionSpec()], supported protocols=[TLSv1, TLSv1.1, TLSv1.2]
Jun 6, 2017 12:40:27.936 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:40:27.988 +0000] "GET /dist/img/marker_image.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/css/app.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.25:20903 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:c00b7bf8-892d-4577-55d1-fba53996654a response_time:0.008263286 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2502733823"
Jun 6, 2017 12:40:27.997 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:45:03.531 +0000] "GET /dist/vendor.min.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.153:37361 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:8b32e83b-cc25-411d-4a0b-1b3ca4769497 response_time:0.088572805 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2370959161"
Jun 6, 2017 12:45:03.620 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:45:05.499 +0000] "GET /dist/js/dialog.response.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.155:13713 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:653086bd-6ac1-4468-75a9-86f5a89a4036 response_time:0.012980343 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3626276663"
Jun 6, 2017 12:45:05.513 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:45:06.720 +0000] "GET /img/Chat%20Button.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.155:21052 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:cacaaa24-774a-40a9-5e67-b7ee3cfd2fc9 response_time:0.008343348 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"1642576671"
Jun 6, 2017 12:45:06.729 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:45:06.718 +0000] "GET /dist/locale/en.json HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.153:49237 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:a5655a43-525b-4514-6fdf-03828563cd2b response_time:0.012674649 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"502576335"
Jun 6, 2017 12:45:06.731 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:45:06.720 +0000] "GET /rest/setup HTTP/1.1" 200 0 108 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.153:50038 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:034e2c87-1f06-4c12-46d0-6b7223b57255 response_time:0.017521968 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"1894899245"
Jun 6, 2017 12:45:06.739 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:45:06.730 +0000] "GET /img/Code%20Button.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.153:49597 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:d221cb3c-56d1-461e-6481-4aa0a0becdcb response_time:0.013053291 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"502576895"
Jun 6, 2017 12:45:06.744 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:45:07.054 +0000] "GET /dist/img/marker_image.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/css/app.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.153:52531 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:d374247b-a29b-4454-46fb-77e6a331ed66 response_time:0.0098362 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"502577327"
Jun 6, 2017 12:45:07.064 AM
APP/0
22:45:07.053 [Default Executor-thread-52] ERROR com.ibm.watson.apis.conversation_with_discovery.rest.ProxyResource - Exception on Query:java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=[ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_2, TLS_1_1, TLS_1_0], supportsTlsExtensions=true), ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_0], supportsTlsExtensions=true), ConnectionSpec()], supported protocols=[TLSv1, TLSv1.1, TLSv1.2]
Jun 6, 2017 12:45:07.068 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:45:07.042 +0000] "POST /rest/conversation/api/v1/workspaces/bae4368c-c1a9-4016-8353-1194c8fb998c/message HTTP/1.1" 200 21 94 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.153:49597 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:7f18aedd-d3cf-420c-4e74-9c2383ad62a8 response_time:0.040192996 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"85370583"
Jun 6, 2017 12:45:07.083 AM
STG/0
Downloading dotnet-core_v1_0_13-20170330-1023...
Jun 6, 2017 12:48:07.054 AM
STG/0
Downloading noop-buildpack...
Jun 6, 2017 12:48:07.055 AM
STG/0
Downloading binary_buildpack...
Jun 6, 2017 12:48:07.055 AM
STG/0
Downloading python_buildpack...
Jun 6, 2017 12:48:07.062 AM
STG/0
Downloaded dotnet-core_v1_0_13-20170330-1023
Jun 6, 2017 12:48:07.076 AM
STG/0
Downloading php_buildpack...
Jun 6, 2017 12:48:07.080 AM
STG/0
Downloading staticfile_buildpack...
Jun 6, 2017 12:48:07.080 AM
STG/0
Downloaded go_buildpack
Jun 6, 2017 12:48:07.080 AM
STG/0
Downloading liberty-for-java_v3_8-20170308-1507...
Jun 6, 2017 12:48:07.082 AM
STG/0
Downloaded binary_buildpack
Jun 6, 2017 12:48:07.082 AM
STG/0
Downloading liberty-for-java_v3_7-20170118-2046...
Jun 6, 2017 12:48:07.086 AM
STG/0
Downloaded python_buildpack
Jun 6, 2017 12:48:07.086 AM
STG/0
Downloading swift_buildpack_v2_0_5-20170406-2317...
Jun 6, 2017 12:48:07.106 AM
STG/0
Downloaded liberty-for-java_v3_8-20170308-1507
Jun 6, 2017 12:48:07.106 AM
STG/0
Downloaded staticfile_buildpack
Jun 6, 2017 12:48:07.106 AM
STG/0
Downloaded php_buildpack
Jun 6, 2017 12:48:07.108 AM
STG/0
Downloading java_buildpack...
Jun 6, 2017 12:48:07.108 AM
STG/0
Downloaded xpages_buildpack
Jun 6, 2017 12:48:07.109 AM
STG/0
Downloading ruby_buildpack...
Jun 6, 2017 12:48:07.109 AM
STG/0
Downloaded liberty-for-java_v3_7-20170118-2046
Jun 6, 2017 12:48:07.112 AM
STG/0
Downloading sdk-for-nodejs_v3_11-20170303-1144...
Jun 6, 2017 12:48:07.112 AM
STG/0
Downloaded swift_buildpack_v2_0_5-20170406-2317
Jun 6, 2017 12:48:07.124 AM
STG/0
Downloading sdk-for-nodejs...
Jun 6, 2017 12:48:07.125 AM
STG/0
Downloading liberty-for-java...
Jun 6, 2017 12:48:07.130 AM
STG/0
Downloaded nodejs_buildpack
Jun 6, 2017 12:48:07.130 AM
STG/0
Downloaded ruby_buildpack
Jun 6, 2017 12:48:07.133 AM
STG/0
Downloading dotnet-core...
Jun 6, 2017 12:48:07.133 AM
STG/0
Downloading swift_buildpack...
Jun 6, 2017 12:48:07.134 AM
STG/0
Downloaded java_buildpack
Jun 6, 2017 12:48:07.134 AM
STG/0
Downloaded sdk-for-nodejs_v3_11-20170303-1144
Jun 6, 2017 12:48:07.144 AM
STG/0
Downloaded sdk-for-nodejs
Jun 6, 2017 12:48:07.149 AM
STG/0
Downloaded dotnet-core
Jun 6, 2017 12:48:07.154 AM
STG/0
Downloaded liberty-for-java
Jun 6, 2017 12:48:07.156 AM
STG/0
Creating container
Jun 6, 2017 12:48:07.156 AM
STG/0
Downloaded swift_buildpack
Jun 6, 2017 12:48:07.156 AM
STG/0
Successfully created container
Jun 6, 2017 12:48:09.464 AM
STG/0
Downloading app package...
Jun 6, 2017 12:48:09.464 AM
STG/0
Downloaded app package (10.5M)
Jun 6, 2017 12:48:10.313 AM
STG/0
Downloaded build artifacts cache (108B)
Jun 6, 2017 12:48:10.538 AM
STG/0
Staging...
Jun 6, 2017 12:48:10.538 AM
STG/0
-----> Retrieving IBM 1.8.0_20170215 JRE (ibm-java-jre-8.0-4.1-pxa6480sr4fp1-20170215_01-cloud.tgz) ... (0.0s)
Jun 6, 2017 12:48:11.995 AM
STG/0
Expanding JRE to .java ... (1.5s)
Jun 6, 2017 12:48:13.550 AM
STG/0
-----> Retrieving App Management 1.25.0_20170214-1539 (app-mgmt_v1.25-20170214-1539.zip) ... (0.0s)
Jun 6, 2017 12:48:13.572 AM
STG/0
Expanding App Management to .app-management (0.1s)
Jun 6, 2017 12:48:13.742 AM
STG/0
-----> Retrieving com.ibm.ws.liberty-17.0.1.1-201704191403.tar.gz ... (0.0s)
Jun 6, 2017 12:48:13.744 AM
CELL/0
Exit status 0
Jun 6, 2017 12:48:14.802 AM
STG/0
Installing archive ... (1.7s)
Jun 6, 2017 12:48:15.454 AM
STG/0
-----> Warning: Liberty feature set is not specified. Using the default feature set: ["beanValidation-1.1", "cdi-1.2", "ejbLite-3.2", "el-3.0", "jaxrs-2.0", "jdbc-4.1", "jndi-1.0", "jpa-2.1", "jsf-2.2", "jsonp-1.0", "jsp-2.3", "managedBeans-1.0", "servlet-3.1", "websocket-1.1"]. For the best results, explicitly set the features via the JBP_CONFIG_LIBERTY environment variable or deploy the application as a server directory or packaged server with a custom server.xml file.
Jun 6, 2017 12:48:15.484 AM
STG/0
-----> Liberty buildpack is done creating the droplet
Jun 6, 2017 12:48:15.496 AM
CELL/0
Destroying container
Jun 6, 2017 12:48:25.783 AM
CELL/0
Successfully destroyed container
Jun 6, 2017 12:48:27.440 AM
STG/0
Staging complete
Jun 6, 2017 12:48:30.153 AM
STG/0
Exit status 0
Jun 6, 2017 12:48:30.153 AM
STG/0
Uploading droplet, build artifacts cache...
Jun 6, 2017 12:48:30.153 AM
STG/0
Uploading build artifacts cache...
Jun 6, 2017 12:48:30.154 AM
STG/0
Uploading droplet...
Jun 6, 2017 12:48:30.154 AM
STG/0
Uploaded build artifacts cache (108B)
Jun 6, 2017 12:48:30.432 AM
STG/0
Uploaded droplet (146.7M)
Jun 6, 2017 12:48:48.680 AM
STG/0
Uploading complete
Jun 6, 2017 12:48:48.719 AM
STG/0
Destroying container
Jun 6, 2017 12:48:48.844 AM
CELL/0
Creating container
Jun 6, 2017 12:48:50.083 AM
STG/0
Successfully destroyed container
Jun 6, 2017 12:48:50.962 AM
CELL/0
Successfully created container
Jun 6, 2017 12:48:52.952 AM
CELL/0
Starting health monitoring of container
Jun 6, 2017 12:48:58.744 AM
APP/0
[AUDIT ] CWWKE0001I: The server defaultServer has been launched.
Jun 6, 2017 12:49:00.573 AM
APP/0
[INFO ] CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host localhost (IPv4: 127.0.0.1) port 8080.
Jun 6, 2017 12:49:16.021 AM
APP/0
[INFO ] CWSCX0122I: Register management Bean provider: com.ibm.ws.cloudoe.management.client.provider.dump.JavaDumpBeanProvider@29c8158c.
Jun 6, 2017 12:49:16.954 AM
APP/0
[INFO ] SRVE0169I: Loading Web Module: com.ibm.ws.cloudoe.management.client.liberty.connector.
Jun 6, 2017 12:49:19.956 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://localhost:8080/IBMMGMTRest/
Jun 6, 2017 12:49:19.957 AM
APP/0
[INFO ] SESN8501I: The session manager did not find a persistent storage location; HttpSession objects will be stored in the local application server's memory.
Jun 6, 2017 12:49:20.055 AM
APP/0
[INFO ] SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
Jun 6, 2017 12:49:20.070 AM
APP/0
[INFO ] SRVE0250I: Web Module Conversation with Discovery Demo has been bound to default_host.
Jun 6, 2017 12:49:23.981 AM
APP/0
[INFO ] SRVE0169I: Loading Web Module: Conversation with Discovery Demo.
Jun 6, 2017 12:49:23.981 AM
APP/0
[AUDIT ] CWWKT0017I: Web application removed (default_host): http://localhost:8080/
Jun 6, 2017 12:49:24.026 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://bc5fe95c-c8db-44c3-6b7a-1fdf56a175fd:8080/IBMMGMTRest/
Jun 6, 2017 12:49:24.053 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://bc5fe95c-c8db-44c3-6b7a-1fdf56a175fd:8080/
Jun 6, 2017 12:49:24.055 AM
APP/0
[AUDIT ] CWWKZ0001I: Application myapp started in 5.183 seconds.
Jun 6, 2017 12:49:24.190 AM
APP/0
[INFO ] CWWKF0008I: Feature update completed in 19.767 seconds.
Jun 6, 2017 12:49:24.324 AM
APP/0
[AUDIT ] CWWKF0012I: The server installed the following features: [jsp-2.3, ejbLite-3.2, managedBeans-1.0, jsf-2.2, servlet-3.1, beanValidation-1.1, jndi-1.0, jsonp-1.0, jdbc-4.1, icap:managementConnector-1.0, jaxrs-2.0, jaxrsClient-2.0, el-3.0, json-1.0, cdi-1.2, websocket-1.1, jpa-2.1, appState-2.0].
Jun 6, 2017 12:49:24.324 AM
APP/0
[INFO ] JSPG8502I: The value of the JSP attribute jdkSourceLevel is "17".
Jun 6, 2017 12:49:24.405 AM
APP/0
[INFO ] SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /home/vcap/app/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
Jun 6, 2017 12:49:24.426 AM
CELL/0
Container became healthy
Jun 6, 2017 12:49:26.057 AM
APP/0
22:49:26.241 [Default Executor-thread-10] INFO com.ibm.watson.apis.conversation_with_discovery.listener.AppServletContextListener - Deploying ServletContextListener
Jun 6, 2017 12:49:26.249 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:49:47.949 +0000] "GET /dist/index.html HTTP/1.1" 304 0 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.29:31094 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:e9613736-6062-4417-611a-e967551f2623 response_time:0.620287099 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"423692397"
Jun 6, 2017 12:49:48.569 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:49:50.067 +0000] "GET /img/loader.gif HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.29:29733 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:a38aad95-8c8e-4a60-6062-5c4d00940231 response_time:0.016474745 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2349090835"
Jun 6, 2017 12:49:50.084 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:49:50.247 +0000] "GET /dist/js/boot.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.29:30624 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:5ae63667-f7f1-4a08-428c-fa1cdab95db8 response_time:0.026571325 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2942423287"
Jun 6, 2017 12:49:50.274 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:49:50.986 +0000] "GET /dist/js/dialog.service.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.29:29899 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:5084103e-186b-4fe2-61f8-2da5841aed94 response_time:0.018006916 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"423699085"
Jun 6, 2017 12:49:51.004 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:49:51.003 +0000] "GET /dist/js/ce.docs.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.25:12199 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:a1310bc8-7316-4817-7a8e-9a8201ddbc08 response_time:0.027602187 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2511600975"
Jun 6, 2017 12:49:51.031 AM
APP/0
[INFO ] Setting the server's publish address to be /rest/
Jun 6, 2017 12:49:52.471 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:50:29.706 +0000] "GET /dist/css/app.css HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.29:30667 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:63d60f53-a0ac-48f6-5281-9db5f20a8d07 response_time:0.010314446 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2942654551"
Jun 6, 2017 12:50:29.717 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:50:30.180 +0000] "GET /dist/js/boot.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.25:47344 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:e121ea98-42d5-435b-57be-7fe62440d496 response_time:0.024465613 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3619781105"
Jun 6, 2017 12:50:30.205 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:50:30.728 +0000] "GET /dist/js/dialog.service.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.29:31134 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:5702cada-ab22-47e8-50a8-66cae898b745 response_time:0.010684573 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3606505937"
Jun 6, 2017 12:50:30.740 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:50:31.307 +0000] "GET /dist/locale/en.json HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.25:26467 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:b7d76cda-81cf-4b05-797b-43a14803a1d8 response_time:0.010092796 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2512085151"
Jun 6, 2017 12:50:31.318 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:50:31.316 +0000] "GET /img/Chat%20Button.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.27:19521 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:19fca444-e18b-4379-4d73-52746da67a32 response_time:0.011074596 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2324064199"
Jun 6, 2017 12:50:31.328 AM
APP/0
[INFO ] CWSCX0162I: The property management_server_tokenValidationURL is detected as https://rtmgmt.ng.bluemix.net/rest/token/v1/check_token.
Jun 6, 2017 12:50:59.387 AM
APP/0
[INFO ] SRVE0242I: [com.ibm.ws.cloudoe.management.client.liberty.connector] [/IBMMGMTRest] [ManagmentClientServlet]: Initialization successful.
Jun 6, 2017 12:50:59.389 AM
CELL/0
Exit status 0
Jun 6, 2017 12:51:25.202 AM
CELL/0
Creating container
Jun 6, 2017 12:51:25.788 AM
CELL/0
Successfully created container
Jun 6, 2017 12:51:28.154 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:51:32.902 +0000] "GET /dist/css/app.css HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.25:26488 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:22711bcb-edd5-476d-4e35-f83dd23bdc16 response_time:0.014579303 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2512962879"
Jun 6, 2017 12:51:32.917 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:51:33.388 +0000] "GET /img/loader.gif HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.25:23684 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:6a6b97f7-d9bf-4108-58b9-746f4a9f77c4 response_time:0.012830223 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2541075725"
Jun 6, 2017 12:51:33.401 AM
CELL/0
Starting health monitoring of container
Jun 6, 2017 12:51:35.098 AM
APP/0
22:51:35.179 [Default Executor-thread-22] ERROR com.ibm.watson.apis.conversation_with_discovery.rest.ProxyResource - Exception on Query:java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=[ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_2, TLS_1_1, TLS_1_0], supportsTlsExtensions=true), ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_0], supportsTlsExtensions=true), ConnectionSpec()], supported protocols=[TLSv1, TLSv1.1, TLSv1.2]
Jun 6, 2017 12:51:35.181 AM
APP/0
Setting JDK heap to: -Xmx384M
Jun 6, 2017 12:51:36.268 AM
APP/0
[AUDIT ] CWWKE0001I: The server defaultServer has been launched.
Jun 6, 2017 12:51:38.450 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:51:42.679 +0000] "GET /dist/index.html HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 169.54.202.25:12736 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:6cd2c79c-5d60-4345-755f-51868ef2d13d response_time:0.007648889 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"3843391075"
Jun 6, 2017 12:51:42.688 AM
APP/0
[AUDIT ] CWWKG0028A: Processing included configuration resource: /home/vcap/app/wlp/usr/servers/defaultServer/runtime-vars.xml
Jun 6, 2017 12:51:47.170 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:52:16.743 +0000] "GET /dist/index.html HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.153:48388 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:16dee933-f108-4c81-58f7-d19f936a5b38 response_time:0.033793321 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"348216883"
Jun 6, 2017 12:52:16.777 AM
APP/0
[INFO ] CWSCX0122I: Register management Bean provider: com.ibm.ws.cloudoe.management.client.provider.logging.LibertyLoggingBeanProvider@2d78127c.
Jun 6, 2017 12:52:19.466 AM
APP/0
[INFO ] CWWKZ0018I: Starting application myapp.
Jun 6, 2017 12:52:23.426 AM
APP/0
[INFO ] SRVE0250I: Web Module com.ibm.ws.cloudoe.management.client.liberty.connector has been bound to default_host.
Jun 6, 2017 12:52:25.395 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://localhost:8080/IBMMGMTRest/
Jun 6, 2017 12:52:25.407 AM
APP/0
[INFO ] SESN8501I: The session manager did not find a persistent storage location; HttpSession objects will be stored in the local application server's memory.
Jun 6, 2017 12:52:25.657 AM
APP/0
[INFO ] SESN0176I: A new session context will be created for application key default_host/IBMMGMTRest
Jun 6, 2017 12:52:25.670 AM
CELL/0
Timed out after 1m0s: health check never passed.
Jun 6, 2017 12:52:35.489 AM
CELL/0
Exit status 0
Jun 6, 2017 12:52:35.529 AM
APP/0
[INFO ] SRVE0250I: Web Module Conversation with Discovery Demo has been bound to default_host.
Jun 6, 2017 12:52:42.554 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://localhost:8080/
Jun 6, 2017 12:52:42.554 AM
APP/0
[INFO ] SRVE0169I: Loading Web Module: Conversation with Discovery Demo.
Jun 6, 2017 12:52:42.554 AM
APP/0
[AUDIT ] CWWKZ0001I: Application myapp started in 19.139 seconds.
Jun 6, 2017 12:52:42.561 AM
APP/0
[INFO ] CWWKO0220I: TCP Channel defaultHttpEndpoint has stopped listening for requests on host localhost (IPv4: 127.0.0.1) port 8080.
Jun 6, 2017 12:52:42.667 AM
APP/0
[AUDIT ] CWWKT0017I: Web application removed (default_host): http://localhost:8080/IBMMGMTRest/
Jun 6, 2017 12:52:42.667 AM
APP/0
[INFO ] CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host * (IPv4) port 8080.
Jun 6, 2017 12:52:42.676 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://ae82063c-87bd-485c-4721-b19ee0c2fc62:8080/
Jun 6, 2017 12:52:42.685 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://ae82063c-87bd-485c-4721-b19ee0c2fc62:8080/IBMMGMTRest/
Jun 6, 2017 12:52:42.685 AM
APP/0
[AUDIT ] CWWKF0011I: The server defaultServer is ready to run a smarter planet.
Jun 6, 2017 12:52:42.745 AM
APP/0
[AUDIT ] CWWKF0012I: The server installed the following features: [jsp-2.3, ejbLite-3.2, managedBeans-1.0, jsf-2.2, servlet-3.1, beanValidation-1.1, jndi-1.0, jsonp-1.0, jdbc-4.1, icap:managementConnector-1.0, jaxrs-2.0, jaxrsClient-2.0, el-3.0, json-1.0, cdi-1.2, websocket-1.1, jpa-2.1, appState-2.0].
Jun 6, 2017 12:52:42.745 AM
APP/0
[INFO ] SESN0176I: A new session context will be created for application key default_host/
Jun 6, 2017 12:52:43.136 AM
APP/0
[INFO ] JSPG8502I: The value of the JSP attribute jdkSourceLevel is "17".
Jun 6, 2017 12:52:43.210 AM
APP/0
[INFO ] SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /home/vcap/app/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
Jun 6, 2017 12:52:43.260 AM
CELL/0
Destroying container
Jun 6, 2017 12:52:46.520 AM
API/0
App instance exited with guid 624a7e93-ecb9-4da4-bd2b-f31e83690e98 payload: {"instance"=>"", "index"=>0, "reason"=>"CRASHED", "exit_description"=>"2 error(s) occurred:\n\n* 1 error(s) occurred:\n\n* Exited with status 4\n* 2 error(s) occurred:\n\n* cancelled\n* process did not exit", "crash_count"=>1, "crash_timestamp"=>1496703166503032172, "version"=>"7e9b9f5e-54e1-4727-9aa9-ceb3b0a9e95b"}
Jun 6, 2017 12:52:46.542 AM
CELL/0
Creating container
Jun 6, 2017 12:52:47.430 AM
CELL/0
Successfully destroyed container
Jun 6, 2017 12:52:48.441 AM
CELL/0
Successfully created container
Jun 6, 2017 12:52:49.743 AM
CELL/0
Starting health monitoring of container
Jun 6, 2017 12:52:56.622 AM
APP/0
Setting JDK heap to: -Xmx384M
Jun 6, 2017 12:52:57.156 AM
APP/0
[AUDIT ] CWWKE0001I: The server defaultServer has been launched.
Jun 6, 2017 12:52:57.971 AM
APP/0
[AUDIT ] CWWKG0028A: Processing included configuration resource: /home/vcap/app/wlp/usr/servers/defaultServer/runtime-vars.xml
Jun 6, 2017 12:53:00.605 AM
APP/0
[INFO ] CWWKF0007I: Feature update started.
Jun 6, 2017 12:53:01.907 AM
APP/0
[INFO ] CWSCX0122I: Register management Bean provider: com.ibm.ws.cloudoe.management.client.provider.dump.JavaDumpBeanProvider@d24ca350.
Jun 6, 2017 12:53:14.306 AM
APP/0
[INFO ] CWSCX0122I: Register management Bean provider: com.ibm.ws.cloudoe.management.client.provider.logging.LibertyLoggingBeanProvider@76acedee.
Jun 6, 2017 12:53:14.316 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://localhost:8080/IBMMGMTRest/
Jun 6, 2017 12:53:17.981 AM
APP/0
[INFO ] SESN0176I: A new session context will be created for application key default_host/IBMMGMTRest
Jun 6, 2017 12:53:18.034 AM
APP/0
[INFO ] SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
Jun 6, 2017 12:53:18.053 AM
APP/0
[INFO ] WELD-000900: 2.4.0 (Final)
Jun 6, 2017 12:53:23.154 AM
APP/0
[INFO ] SRVE0169I: Loading Web Module: Conversation with Discovery Demo.
Jun 6, 2017 12:53:23.587 AM
APP/0
[AUDIT ] CWWKF0015I: The server has the following interim fixes active in the runtime: PI79275,PI77605,PI75512. For a full listing of installed fixes run: productInfo version --ifixes
Jun 6, 2017 12:53:23.681 AM
APP/0
[INFO ] CWWKF0008I: Feature update completed in 21.923 seconds.
Jun 6, 2017 12:53:23.701 AM
APP/0
[AUDIT ] CWWKF0012I: The server installed the following features: [jsp-2.3, ejbLite-3.2, managedBeans-1.0, jsf-2.2, servlet-3.1, beanValidation-1.1, jndi-1.0, jsonp-1.0, jdbc-4.1, icap:managementConnector-1.0, jaxrs-2.0, jaxrsClient-2.0, el-3.0, json-1.0, cdi-1.2, websocket-1.1, jpa-2.1, appState-2.0].
Jun 6, 2017 12:53:23.701 AM
APP/0
[AUDIT ] CWWKF0011I: The server defaultServer is ready to run a smarter planet.
Jun 6, 2017 12:53:23.701 AM
APP/0
[INFO ] CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host * (IPv4) port 8080.
Jun 6, 2017 12:53:23.703 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://55f5750c-4ad5-4ea6-5b2b-efa8e6aa83d6:8080/
Jun 6, 2017 12:53:23.706 AM
APP/0
[INFO ] SESN0176I: A new session context will be created for application key default_host/
Jun 6, 2017 12:53:23.913 AM
APP/0
[INFO ] JSPG8502I: The value of the JSP attribute jdkSourceLevel is "17".
Jun 6, 2017 12:53:23.918 AM
APP/0
[INFO ] SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /home/vcap/app/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
Jun 6, 2017 12:53:24.012 AM
APP/0
22:53:26.917 [Thread-19] ERROR com.ibm.watson.apis.conversation_with_discovery.listener.SetupThread - !SetupThread.ERROR_COLLECTION_INIT!java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=[ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_2, TLS_1_1, TLS_1_0], supportsTlsExtensions=true), ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_0], supportsTlsExtensions=true), ConnectionSpec()], supported protocols=[TLSv1, TLSv1.1, TLSv1.2]
Jun 6, 2017 12:53:26.923 AM
APP/0
[INFO ] SRVE0242I: [com.ibm.ws.cloudoe.management.client.liberty.connector] [/IBMMGMTRest] [ManagmentClientServlet]: Initialization successful.
Jun 6, 2017 12:53:34.701 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:54:47.774 +0000] "GET /dist/vendor.min.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.151:51753 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:7edb2c0f-20f1-4252-4717-4765b36808ce response_time:0.014496685 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"405237623"
Jun 6, 2017 12:54:47.790 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:54:49.413 +0000] "GET /dist/js/dialog.response.js HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.151:52604 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:5102287b-c478-451c-6dd0-dd3af12c5d8f response_time:0.034472799 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"1541304751"
Jun 6, 2017 12:54:49.449 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:22:54:50.599 +0000] "GET /img/Code%20Button.png HTTP/1.1" 304 0 0 "https://conversation-with-discovery-20170605220655859.mybluemix.net/dist/index.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0" 108.168.250.151:50795 x_forwarded_for:"213.47.1.246" x_forwarded_proto:"https" vcap_request_id:e86f3137-7102-47f8-6050-8e65b776e9fb response_time:0.013532773 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"1534933017"
Jun 6, 2017 12:54:50.613 AM
APP/0
22:54:52.240 [Default Executor-thread-18] ERROR com.ibm.watson.apis.conversation_with_discovery.rest.ProxyResource - Exception on Query:java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=[ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_2, TLS_1_1, TLS_1_0], supportsTlsExtensions=true), ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_0], supportsTlsExtensions=true), ConnectionSpec()], supported protocols=[TLSv1, TLSv1.1, TLSv1.2]
Jun 6, 2017 12:54:52.246 AM
CELL/0
Creating container
Jun 6, 2017 12:56:26.740 AM
CELL/0
Destroying container
Jun 6, 2017 12:56:36.347 AM
CELL/0
Successfully destroyed container
Jun 6, 2017 12:56:37.881 AM
CELL/0
Starting health monitoring of container
Jun 6, 2017 12:56:41.708 AM
APP/0
Launching defaultServer (WebSphere Application Server 17.0.0.1/wlp-1.0.16.cl170120170227-0220) on IBM J9 VM, version pxa6480sr4fp1-20170215_01 (SR4 FP1) (en_US)
Jun 6, 2017 12:56:49.016 AM
APP/0
[AUDIT ] CWWKG0028A: Processing included configuration resource: /home/vcap/app/wlp/usr/servers/defaultServer/runtime-vars.xml
Jun 6, 2017 12:57:01.393 AM
CELL/0
Exit status 0
Jun 6, 2017 12:57:43.266 AM
APP/0
[INFO ] CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host localhost (IPv4: 127.0.0.1) port 8080.
Jun 6, 2017 12:57:50.269 AM
CELL/0
Destroying container
Jun 6, 2017 12:57:54.346 AM
CELL/0
Successfully destroyed container
Jun 6, 2017 12:57:55.897 AM
APP/0
Setting JDK heap to: -Xmx384M
Jun 6, 2017 12:58:05.385 AM
APP/0
Launching defaultServer (WebSphere Application Server 17.0.0.1/wlp-1.0.16.cl170120170227-0220) on IBM J9 VM, version pxa6480sr4fp1-20170215_01 (SR4 FP1) (en_US)
Jun 6, 2017 12:58:06.118 AM
APP/0
[INFO ] CWWKE0002I: The kernel started after 4.194 seconds
Jun 6, 2017 12:58:09.970 AM
APP/0
[INFO ] CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host localhost (IPv4: 127.0.0.1) port 8080.
Jun 6, 2017 12:58:22.822 AM
APP/0
[INFO ] CWSCX0122I: Register management Bean provider: com.ibm.ws.cloudoe.management.client.provider.logging.LibertyLoggingBeanProvider@c52d9654.
Jun 6, 2017 12:58:24.596 AM
APP/0
[INFO ] CWWKZ0018I: Starting application myapp.
Jun 6, 2017 12:58:28.351 AM
APP/0
[INFO ] SRVE0169I: Loading Web Module: com.ibm.ws.cloudoe.management.client.liberty.connector.
Jun 6, 2017 12:58:29.052 AM
APP/0
[INFO ] SRVE0250I: Web Module com.ibm.ws.cloudoe.management.client.liberty.connector has been bound to default_host.
Jun 6, 2017 12:58:29.053 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://localhost:8080/IBMMGMTRest/
Jun 6, 2017 12:58:29.055 AM
APP/0
[INFO ] SESN8501I: The session manager did not find a persistent storage location; HttpSession objects will be stored in the local application server's memory.
Jun 6, 2017 12:58:29.130 AM
APP/0
[INFO ] SESN0176I: A new session context will be created for application key default_host/IBMMGMTRest
Jun 6, 2017 12:58:29.136 AM
APP/0
[INFO ] SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
Jun 6, 2017 12:58:29.154 AM
APP/0
[AUDIT ] CWWKT0017I: Web application removed (default_host): http://localhost:8080/IBMMGMTRest/
Jun 6, 2017 12:58:35.024 AM
APP/0
[AUDIT ] CWWKZ0001I: Application myapp started in 6.693 seconds.
Jun 6, 2017 12:58:35.024 AM
APP/0
[AUDIT ] CWWKT0017I: Web application removed (default_host): http://localhost:8080/
Jun 6, 2017 12:58:35.024 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://a5a2f44e-682c-4f80-4720-4a7286ca73db:8080/IBMMGMTRest/
Jun 6, 2017 12:58:35.075 AM
APP/0
[AUDIT ] CWWKT0016I: Web application available (default_host): http://a5a2f44e-682c-4f80-4720-4a7286ca73db:8080/
Jun 6, 2017 12:58:35.075 AM
APP/0
[INFO ] CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host * (IPv4) port 8080.
Jun 6, 2017 12:58:35.075 AM
APP/0
[AUDIT ] CWWKF0015I: The server has the following interim fixes active in the runtime: PI79275,PI77605,PI75512. For a full listing of installed fixes run: productInfo version --ifixes
Jun 6, 2017 12:58:35.126 AM
APP/0
[AUDIT ] CWWKF0011I: The server defaultServer is ready to run a smarter planet.
Jun 6, 2017 12:58:35.126 AM
APP/0
[INFO ] JSPG8502I: The value of the JSP attribute jdkSourceLevel is "17".
Jun 6, 2017 12:58:35.271 AM
CELL/0
Container became healthy
Jun 6, 2017 12:58:36.293 AM
APP/0
2017-06-05 22:58:36,597 INFO Log4j appears to be running in a Servlet environment, but there's no log4j-web module available. If you want better web container support, please add the log4j-web JAR to your web archive or server lib directory.
Jun 6, 2017 12:58:36.599 AM
APP/0
22:58:36.859 [Default Executor-thread-12] INFO com.ibm.watson.apis.conversation_with_discovery.listener.AppServletContextListener - Deploying ServletContextListener
Jun 6, 2017 12:58:36.862 AM
APP/0
[INFO ] CWSCX0161I: The property management_server_url is configured with https://rtmgmt.ng.bluemix.net.
Jun 6, 2017 12:58:56.441 AM
APP/0
[INFO ] CWSCX0162I: The property management_server_tokenValidationURL is detected as https://rtmgmt.ng.bluemix.net/rest/token/v1/check_token.
Jun 6, 2017 12:58:56.442 AM
APP/0
[INFO ] SRVE0242I: [com.ibm.ws.cloudoe.management.client.liberty.connector] [/IBMMGMTRest] [ManagmentClientServlet]: Initialization successful.
Jun 6, 2017 12:58:56.447 AM
RTR/0
conversation-with-discovery-20170605220655859.mybluemix.net - [05/06/2017:23:01:08.904 +0000] "GET / HTTP/1.1" 200 0 63 "-" "-" 192.155.237.116:52083 x_forwarded_for:"169.50.77.22" x_forwarded_proto:"http" vcap_request_id:78930563-0f19-41a9-6289-179eb6f097c4 response_time:0.156192414 app_id:624a7e93-ecb9-4da4-bd2b-f31e83690e98 x_global_transaction_id:"2687506137"
Jun 6, 2017 01:01:09.061 AM

Proxy configure

Hi Davi, good morning.

erro barramento proxy

Where can I enter my proxy data?
Because they had to free me for general access to the internet instead of going through the proxy, I would like to know where I can add the settings.

Compile error

I use the gradle docker image to compile the application. The following are the error I got. Can anyone offer some help? Thanks.

[1] https://hub.docker.com/_/gradle/

[email protected] node_modules/angular2
:gulp_build
[18:45:01] Using gulpfile /conversation-with-discovery/gulpfile.js
[18:45:01] Starting 'build-ts'...
[18:45:01] Starting 'build-css'...
[18:45:01] Starting 'build-img'...
[18:45:01] Starting 'build-fonts'...
[18:45:01] Starting 'build-locale'...
[18:45:03] Finished 'build-locale' after 1.48 s
[18:45:03] css all files 33.7 kB
[18:45:03] Finished 'build-css' after 1.73 s

events.js:141
      throw er; // Unhandled 'error' event
      ^
Error: spawn /conversation-with-discovery/node_modules/gulp-imagemin/node_modules/imagemin/node_modules/imagemin-gifsicle/node_modules/gifsicle/vendor/gifsicle ENOENT
    at exports._errnoException (util.js:873:11)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:178:32)
    at onErrorNT (internal/child_process.js:344:16)
    at nextTickCallbackWith2Args (node.js:442:9)
    at process._tickCallback (node.js:356:17)
:gulp_build FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':gulp_build'.
> Process 'command '/conversation-with-discovery/.gradle/nodejs/node-v4.4.7-linux-x64/bin/node'' finished with non-zero exit value 1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

Error when i compile the project

Hi i m using the project but when i compile the project with the command in the console show this:

npmSetup SKIPPED
:npmInstall
npm WARN deprecated [email protected]: This version of Angular has been deprecated. Use @angular/core instead.
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: Use mz or fs-extra^3.0 with Promise Support
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue

I suppose that I need to install I new version of those packages but is with the command npm install ?

Bot sends back `CEPayload` even when it understood the input

After once asking bot something it does not know it will always show list of findings instead of real answer.

Steps to reproduce:

  1. Open demo page: http://conversation-enhanced.mybluemix.net/
  2. say switch off the lights (works as expected)
  3. say how are things? (works as expected - bot does not know the answer and shows some random articles that mention "things")
  4. say switch lights on

Expected:

Bot should say "Ok. Turning on the lights."

Actual:

List of articles on "switch on" search query shown.

Example response from Watson:

{
  "context": {
    "conversation_id": "a339359e-0eda-407e-a401-2b1be3048a91",
    "system": {
      "dialog_stack": [
        "root"
      ],
      "dialog_turn_counter": 5,
      "dialog_request_counter": 5
    },
    "default_counter": 0,
    "reprompt": true,
    "call_retrieve_and_rank": true
  },
  "entities": [
    {
      "entity": "appliance",
      "location": [
        7,
        13
      ],
      "value": "lights"
    }
  ],
  "intents": [
    {
      "confidence": 0.7631506905028111,
      "intent": "turn_on"
    }
  ],
  "output": {
    "log_messages": [],
    "text": [
      "",
      "Ok. Turning on the lights."
    ],
    "nodes_visited": [
      "node_1_1467232431348",
      "node_2_1467232480480",
      "node_1_1467749020340"
    ],
    "CEPayload": [
      {
        "title": "Warning Lamps and Indicators",
        "body": "The following warning lamps and indicators will alert you to a vehicle condition that may become serious. Some lamps will light when you start your vehicle to make sure they work. If any lamps remain on after starting your vehicle, refer to the respective system warning lamp for further information.<br><br>On (white light): Lights when you turn the adaptive cruise control system on. Turns off when you turn the speed control system off.<br><br>",
        "sourceUrl": "http://www.fordservicecontent.com/Ford_Content/vdirsnet/OwnerManual/Home/Content?bookCode=O28450&languageCode=en&marketCode=US&viewTech=IE&chapterTitleSelected=G1518901&subTitleSelected=G1746332&topicHRef=G1746333&div=f&vFilteringEnabled=True",
        "highlight": "\" malfunction. Have an authorized dealer check the system immediately.<br><br>To confirm the lamp is working, it will also <em>light</em> momentarily when you <em>switch</em> on\"",
        "id": "73",
        "confidence": "0.9736655289893887"
      },
      {
        "title": "Charging the High Voltage Battery",
        "body": "Your vehicle is equipped with a standard 120 volt convenience cord. Lift the load floor carpet in the rear of your vehicle to access the 120 volt convenience cord.<br><br> We recommend upgrading to the optional 240 volt charging station for faster more efficient charging.  It takes approximately 2.5 hours to completely charge an empty battery using a 240 volt charging station.<br><br>",
        "sourceUrl": "http://www.fordservicecontent.com/Ford_Content/vdirsnet/OwnerManual/Home/Content?bookCode=O28450&languageCode=en&marketCode=US&viewTech=IE&chapterTitleSelected=G1525717&subTitleSelected=G1525718&topicHRef=G1525719&div=f&vFilteringEnabled=True",
        "highlight": "\" thumb to open and close the door.<br><br>The <em>light</em> ring located around the charge port indicates the charge status of the high voltage battery in your\"",
        "id": "110",
        "confidence": "0.18123331239496135"
      },
      {
        "title": "Autolamps",
        "body": "When the lighting control is in the autolamps position, the headlamps automatically turn on in low light situations or when the wipers activate.<br><br>The headlamps remain on for a period of time after you switch the ignition off. Use the information display controls to adjust the period of time that the headlamps remain on. See Information Displays. <br><br>",
        "sourceUrl": "http://www.fordservicecontent.com/Ford_Content/vdirsnet/OwnerManual/Home/Content?bookCode=O28450&languageCode=en&marketCode=US&viewTech=IE&chapterTitleSelected=G1518885&subTitleSelected=G1662500&topicHRef=G1632990&div=f&vFilteringEnabled=True",
        "highlight": "\" windshield wipers on and the <em>lighting</em> control is in the autolamps position. They turn off approximately 60 seconds after you <em>switch</em> the windshield wipers off\"",
        "id": "57",
        "confidence": "0.034579484890305615"
      },
      {
        "title": "Daytime Running Lamps",
        "body": "Switch the daytime running lamps on or off using the information display controls. See  General Information. <br><br>The other lighting control switch positions do not activate the daytime running lamps, and you can use them to temporarily override autolamp control.<br><br>",
        "sourceUrl": "http://www.fordservicecontent.com/Ford_Content/vdirsnet/OwnerManual/Home/Content?bookCode=O28450&languageCode=en&marketCode=US&viewTech=IE&chapterTitleSelected=G1518885&subTitleSelected=G1662501&topicHRef=G1628345&div=f&vFilteringEnabled=True",
        "highlight": "\"<em>Switch</em> the daytime running lamps on or off using the information display controls. See  General Information. <br><br>The other <em>lighting</em> control\"",
        "id": "60",
        "confidence": "0.014238458065079252"
      },
      {
        "title": "Automatic High Beam Control",
        "body": "The system will automatically turn on your high beams if it is dark enough and no other traffic is present. When it detects the headlights of an approaching vehicle, the tail lamps of the preceding vehicle or street lighting, the system will turn off the high beams before they distract other drivers. The low beams remain on.<br><br>A camera sensor, centrally mounted behind the windshield of your vehicle, continuously monitors conditions to decide when to switch the high beams off and on.<br><br>",
        "sourceUrl": "http://www.fordservicecontent.com/Ford_Content/vdirsnet/OwnerManual/Home/Content?bookCode=O28450&languageCode=en&marketCode=US&viewTech=IE&chapterTitleSelected=G1518885&subTitleSelected=G1560458&topicHRef=G1560459&div=f&vFilteringEnabled=True",
        "highlight": "\">Use the information display menu to permanently deactivate the system, or turn the <em>lighting</em> control <em>switch</em> from autolamps to headlamps.<br><br>\"",
        "id": "61",
        "confidence": "0.0"
      }
    ]
  },
  "input": {
    "text": "switch lights on"
  }
}

Uploading conversation workspace fails

Hi,

I'm trying to get this demo setup in my environment. When I try to upload the conversation workspace.json file, it fails complaining that the file may not be valid json. I've tried this in several instances of the conversation service.

Build Fails during deployment

Build fails when I deploy as-is. I did deploy it few days back and it worked successfully. Did some one change the code?

Deploy to bluemix

Hi,

I am interested in creating a similar deploy to bluemix button for the watson conversation simple version. However i am running into issue with creating the services, do you have any information on how i can achieve this?

Build issue with conversation-4.2.1.jar

Hi - am getting build issues when I use version 4.2.1 of the jar, for this code. The following imports are not available.

com.ibm.watson.developer_cloud.conversation.v1.ConversationService
com.ibm.watson.developer_cloud.discovery.v1.model.query.QueryResponse

But it works fine with version 3.8 of the jar. Pls guide me on which is the correct one to proceed with. The grade build though points to version 3.8.

Thanks.

Always call R&R API false

Hello, Thanks for your sharing the code and i could enable to deploy with my own conversation locally.
I have a issue to call R&R API
Whatever, i input i am not enable call the API Rertive and Rank, which always return false.
I have setup the rankID,Cluster ID etc to the server.env file, but it not works.
If someone could tell me what to do to call my R&R API with my own conversation?

Thanks so much!

Gradlew build failed

Hi,
When I was using the script ./gradlew build, on my Raspberry Pi 3B, it came with this

:sourcesJar

:cleanWar
:nodeSetup UP-TO-DATE
:installGulp/home/pi/assistant-with-discovery/.gradle/nodejs/node-v4.4.7-linux-x86/bin/node: 1: /home/pi/assistant-with-discovery/.gradle/nodejs/node-v4.4.7-linux-x86/bin/node: Syntax error: "(" unexpected
 FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':installGulp'.
 Process 'command '/home/pi/assistant-with-discovery/.gradle/nodejs/node-v4.4.7-linux-x86/bin/node'' finished with non-zero exit value 2

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 18.287 secs` Is there any way to stop it, or make it work? Thanks.

Response of Discovery service is not optimized

I'm trying to build Customer Support Agent with Watson Conversation and Discovery Service and uploading FAQs documents (.docx, .pdf, .html) to Discovery service.

I would like to know, how can I have the right answer of a question asked, from documents (html, docx, pdf, ...) uploaded on discovery service ? How can I configure discovery service or discovery.query (){} to return the best answer of user's question ? Should I use another service such as WKS or not ? Please find below my discovery.js file code:

 function sendToDiscovery(query) {
  return new Promise(function(resolve, reject) {
    var DiscoveryV1 = require('watson-developer-cloud/discovery/v1');

    var discovery = new DiscoveryV1({
      username: process.env.DISCOVERY_USERNAME,
      password: process.env.DISCOVERY_PASSWORD,
      version_date: '2018-03-05'
    });

    var environment_id = process.env.ENVIRONMENT_ID;
    var collection_id = process.env.COLLECTION_ID;
    var params = {query: query,
        //natural_language_query: query
        //filter: score>0.8,
        highlight: true,
        passages_count: 1,
        passages: true,
        return_fields: ['text'],
        count:1,
        return: 'text'
        //aggregation:
        //'[term(enriched_text.entities.text).term(enriched_text.sentiment.document.label),' +
        //'term(enriched_text.categories.label).term(enriched_text.sentiment.document.label),' +
        //'term(enriched_text.concepts.text).term(enriched_text.sentiment.document.label),' +
        //'term(enriched_text.keywords.text).term(enriched_text.sentiment.document.label),' +
        //'term(enriched_text.entities.type).term(enriched_text.sentiment.document.label)]'
    }
    discovery.query({
      environment_id: environment_id,
      collection_id: collection_id,
      configuration_id: process.env.DISCOVERY_CONFIGURATION_ID,
      query : params
    }, function(error, response) {
        if (error) {
          reject(error);
        } else {
          if (response.results == null) {
            console.log("The call to the Discovery service is complete, but he has not returned any replies. Check the format of the data injected into the Discovery service.");
            reject(error);
          } else {
            console.log(response.results[0].text);
            resolve(response.results[0].text);
          }
        }
    });
  });
}
module.exports = sendToDiscovery;

Could you help me please ?

Best regards.

Formatting of detailed content from RnR

Hi,
Could I please request a new feature?
Could I kindly ask for the appearance of the detailed content from RnR within the conversation enhanced app to match the formatting from within the RnR tool. e.g. headings, spacing, italics to b present?

Thanks in advance.

Error

Hi Davi,
Today i try execute locally after edit the conversation in my bluemix, and, when I execute the command "server run" in /wlp/bin, and try to open the localhost in the browser, it presents the error that is in the print:

erro server ri

Can someone kindly suggest a solution to Resolved issue #69?

The author of the issue only mentioned the cause, and no solution. In addition, the code he mentioned at DiscoveryQuery.query(String userQuery) should be:

        sb.append("searchText:");
        sb.append(userQuery);
        sb.append(",");
        sb.append("enrichedText:");
        sb.append(userQuery);`

but is different...

Unless I am mistaken, this is what it looks like now:

public QueryResponse query(String userQuery) throws Exception {
    QueryRequest.Builder queryBuilder = new QueryRequest.Builder(environmentId, collectionId);
    
    StringBuilder sb = new StringBuilder();
    
    if(queryFields == null || queryFields.length() == 0 || queryFields.equalsIgnoreCase("none")) {
      sb.append(userQuery);
    } else {
      StringTokenizer st = new StringTokenizer(queryFields, ",");
      while (st.hasMoreTokens()) {
        sb.append(st.nextToken().trim());
        sb.append(":");
        sb.append(userQuery);
        if (st.hasMoreTokens()) {
          sb.append(",");
        }
      }
    }

    queryBuilder.query(sb.toString());
    QueryResponse queryResponse = discovery.query(queryBuilder.build()).execute();

    return queryResponse;
  }

I'm still experiencing this issue, but when I enter "How do I check my tire pressure" my CEPayload looks like:

 "CEPayload": [
      {
        "body": "empty",
        "bodySnippet": "empty",
        "confidence": "0.0",
        "sourceUrl": "empty",
        "title": "No results found"
      }
    ] 

Instead of "CEPayload": []

Even though CEPayload should have returned 3 paragraphs like in the demo.
A solution would be much appreciated.

Conversation

Hello,
if i dont use the Retrieve and Rank services to use Watson, which files have to use?

Thanks.

does not search in collection

When submitting "How do I check my tire pressure?", the reply was "That question is out of scope for this application, take a look at the Conversation Enhanced application to handle questions like these."

Discovery service was configured per instruction. Run app locally.

Discovery service returns no results for long-tail questions sent from Conversation service

Hello,

I have run into an issue - Discovery service not returning results for long-tail questions.

After deploying this application on Bluemix, following the delpoyment instructions, the answer for "How do I check my tire pressure" is "That question is out of scope for this application, take a look at the Conversation Enhanced application to handle questions like these.", which is not expected. Doing a direct query on the Discovery service returns relevant results from the car manual

Also, when asking the same question on the official application page (at http://conversation-with-discovery.mybluemix.net/dist/index.html) the answer is "Great question. I found some ideas for you:", followed by relevant sections from the car manual.

The value for "CEPayload" (on the right pane, "Watson understands" section) is empty in the first case (the application deployed on my Bluemix account) and contains the relevant sections from the car manual in the second case (official website).

Please see attached screenshots below.

conversationwithdiscoverybluemixdeployment_issue
discoveryservicequerybluemixdeployment_working
conversationwithdiscoveryofficialwebsite_working

Thank you.

Embedding into html

Hey great work here! Wanted to ask about embedding into an html page. I have a dialog setup and running on watson. In this repository, have you created the frontend UI yourself, and then calling the services via REST?

How to handle access denied due to invalid credentials error?

I followed all the steps you asked me to. But still get a error saying access denied due to invalid credentials.
I am using a trial account for discovery and conversation.

  1. I have uploaded my documents in discovery.
  2. Created a conversation workspace in trail conversation service.
  3. created a app, 'Liberty java' pasted the username and passwords of discovery and conversation service in
    environment variables under runtime.
  4. generated war file using "gradlew.bat build" command
  5. modified the server.env file with my username and passwords.
  6. placed the war file and server.env files in specified folders mentioned.
  7. started the liberty server instance.
  8. visited http://localhost:9080/dist/index.html but i get invalid credentials error

error
connections1
conv1

I see that in the liberty app, under connections, there is a provision to add existing service. I selected conversations service from there. But that has different credentials. So what are the right credentials?

custom config instructions

In the custom.config instructions, under the Normalize section, the fields "body_enriched.keywords.text" and "body_enriched.concepts.text" may need to be changed to fields: "enriched_body.keywords.text" and "enriched_body.concepts.text" (the latter fields are supplied in the dropdown menu).

Returns error when asking a discovery related question

When customer use examples provided like:

"How do I improve fuel efficiency"
OR
How do I check my tire pressure
OR
How do I turn on cruise control
OR
How do I connect my phone to bluetooth

Return Error:

Service seems to be down.Please try again after sometime or Please check the logs.

WORKSPACE_ID not recognized

I'm running the add-discovery branch. my apologies if it's not ready to tinker with.

WORKSPACE_ID is set in environment variables via console
and set in server.env prior to cf push

App loads until it tries to GET /rest/setup
{"setup_status_message":"Testing Service Credentials","setup_step":"0","setup_state":"not_ready","setup_phase":"Error: WORKSPACE_ID not set","setup_message":"Please check the logs"}

Nothing special appears in the app logs -- all 200s for resources

Error

Hello,
I can not find where places workspace_id and displays this error when I run

Error:WORKSPACE_ID not set
See steps on Github for adding an environment variable

Getting TLS related error

Hi, after going through all the steps, I am getting the TLS related error in the Bluemix log. Please let me know how this issue can be fixed:


14:55:28.092 [Default Executor-thread-8] ERROR com.ibm.watson.apis.conversation_with_discovery.rest.ProxyResource - Exception on Query:java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=[ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_2, TLS_1_1, TLS_1_0], supportsTlsExtensions=true), ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA], tlsVersions=[TLS_1_0], supportsTlsExtensions=true), ConnectionSpec()], supported protocols=[TLSv1, TLSv1.1, TLSv1.2]

Build fails while trying to deploy on blue mix

I could deploy this App when Blue mix was on DEA , Now after it moved to Diego when I try to deploy it again it was showing the following error .

Download http://repo1.maven.org/maven2/xalan/xalan/2.6.0/xalan-2.6.0.jar
Download http://repo1.maven.org/maven2/com/ibm/icu/icu4j/2.6.1/icu4j-2.6.1.jar
:findbugsMain FAILED

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':findbugsMain'.

FindBugs rule violations were found. See the report at: file:///home/pipeline/f1354224-5d67-4a0e-99fe-25a53aef37f3/build/reports/findbugs/main.xml

  • Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 3 mins 27.22 secs

Finished: FAILED**

BrowserlistError when executing gradle build

Before BrowserlistError I had a failed execution of "installGulp" but I fixed that by specifying the node version that I was using in the "build.gradle" file, I changed to version "'6.11.3", after fixing that, I get this error, any solution ?

BrowerslistError: Unknown browser query basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
at error (C:\Users\L31303\Desktop\conversation-with-discovery-master\node_modules\browserslist\index.js:37:11)
at C:\Users\L31303\Desktop\conversation-with-discovery-master\node_modules\browserslist\index.js:222:9
at Array.forEach (native)
at browserslist (C:\Users\L31303\Desktop\conversation-with-discovery-master\node_modules\browserslist\index.js:196:13)
at cleanBrowsersList (C:\Users\L31303\Desktop\conversation-with-discovery-master\node_modules\caniuse-api\dist\utils.js:56:59)
at setBrowserScope (C:\Users\L31303\Desktop\conversation-with-discovery-master\node_modules\caniuse-api\dist\index.js:29:43)
at Object. (C:\Users\L31303\Desktop\conversation-with-discovery-master\node_modules\caniuse-api\dist\index.js:91:1)
at Module._compile (module.js:570:32)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
:gulp_build FAILED
:gulp_build (Thread[main,5,main]) completed. Took 1.533 secs.

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':guild_build'

wrong service names in manifest.yml

I just forked this project by using the "deploy to bluemix"-button and noticed that the Deploy-stage failed since it wasn't able to bind the services. The services that are automatically created are named "conversation-service" and "discovery-service" but in the manifest.yml they are named "my-conversation-service" and "my-discovery-service", so I had to rename them to make it work.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.