で説明されているように、サンプル Java アプリケーションを実行しようとしています。
liberty サーバーを適切にセットアップすることができ、自分のアカウントを使用して bluemix サーバー上にアプリを作成することができました。Eclipse でサンプル コードを実行しようとすると、watson q&a アプリ インターフェイスが表示されます。しかし、Askボタンを押すと、
Error: Connect to gateway.watsonplatform.net:443 [gateway.watsonplatform.net/23.246.237.54] failed: Connection timed out: connect
サービスの URL とユーザー名とパスワードの値を入力する以外は、コードに変更を加えていません。
設定する必要がある別のシステム プロパティはありますか?
編集: manifest.yaml
applications:
- services:
- question_and_answer
name: myDumbApp
path: webApp.war
memory: 512M
また、コマンドを実行すると
cf marketplace -s question_and_answer
分かりました
service plan description free or paid
question_and_answer_free_plan Beta free
あれは正しいですか?
編集: QuestionAndAnswer API を試す
import java.util.HashMap;
import java.util.Map;
import com.ibm.watson.developer_cloud.personality_insights.v2.PersonalityInsights;
import com.ibm.watson.developer_cloud.personality_insights.v2.model.Profile;
import com.ibm.watson.developer_cloud.question_and_answer.*;
import com.ibm.watson.developer_cloud.question_and_answer.v1.QuestionAndAnswer;
import com.ibm.watson.developer_cloud.question_and_answer.v1.model.QuestionAndAnswerDataset;
public class PersonalityInsightsExample {
public static void main(String[] args) {
QuestionAndAnswer qas = new QuestionAndAnswer();
qas.setUsernameAndPassword("uName", "Pass");
QuestionAndAnswerDataset qd = new QuestionAndAnswerDataset("TRAVEL");
/*
PersonalityInsights service = new PersonalityInsights();
service.setUsernameAndPassword("uName", "Pass");
String myProfile = "Call me Ishmael. Some years ago-never mind how long "
+ "precisely-having little or no money in my purse, and nothing "
+ "particular to interest me on shore, I thought I would sail about "
+ "a little and see the watery part of the world. It is a way "
+ "I have of driving off the spleen and regulating the circulation. "
+ "Whenever I find myself growing grim about the mouth; whenever it "
+ "is a damp, drizzly November in my soul; whenever I find myself "
+ "involuntarily pausing before coffin warehouses, and bringing up "
+ "the rear of every funeral I meet; and especially whenever my "
+ "hypos get such an upper hand of me, that it requires a strong "
+ "moral principle to prevent me from deliberately stepping into "
+ "the street, and methodically knocking people's hats off-then, "
+ "I account it high time to get to sea as soon as I can.";
Profile profile = service.getProfile(myProfile);
*/
qas.setDataset(qd);
System.out.println( qas.ask("How to get cold?"));
}
}
しかし、私はまだ得る
SEVERE: IOException
org.apache.http.conn.HttpHostConnectException: Connection to https://gateway.watsonplatform.net refused
私が実行するときに注意してください
System.out.println(qas.getEndPoint());
私は得る
https://gateway.watsonplatform.net/question-and-answer-beta/api
それは私のコードのインポートと一致していますか?