0

http://code.google.com/p/restful-dds/downloads/listウェブサイトから restful-dds-1.0-src.tgz ファイルをダウンロードします。Linux環境を使用しています。ReadMe.txt ファイルから、おしゃべりアプリケーション (CHATROOM TEST) を scripts/startRESTfulDDS.sh まで実行し、.html ファイルも表示しますhttp://ipaddress:8182/static/ajaxTest.html。その後、「scripts/Chatter.{sh,bat} を実行して、Tutorial ディレクトリで Chatter アプリケーションを実行します。」ここで私の問題が発生します。Tutorial フォルダ内に scripts フォルダと chatter.sh ファイルが表示されません。私が間違ったことを助けてください。

私はopensplice DDS v5.5を使用しています

GWT2.4.0, 
JDK 1.6, 
Restlet v2.0.14, 
Gson v2.2.2
4

1 に答える 1

1

Tutorial フォルダ内に scripts フォルダと chatter.sh ファイルが表示されません

作成されるTutorialフォルダは、 にある OpenSpliceDDS チュートリアルの正確なコピーです$OSPL_HOME/examples/dcps/standalone/Java/Tutorialresful-dds README実際には がないため、 とこのチュートリアルの説明の間に不一致があるようchatter.shです。ただし、実行方法を説明するディレクトリREADME.txt内にあります。TutorialChatter

Chatter [userid] [username]
  userid:   an integer number that uniquely identifies the sender of a message
            (Transmit a message with userid = -1 to terminate the MessageBoard.)
  username: the user-name other chatters will see when they receive one of your
            chat messages.

The executables classes are located in the chatroom package, but should be
started from the current directory in the following way:
...
java -classpath $OSPL_HOME/jar/dcpssaj.jar:bld chatroom.Chatter 1 Bill

この手順に従うと、 を実行できるはずですChatter。もちろん、最初に実行ospl startしてインフラストラクチャを初期化する必要があります。

ところで、Java バージョンのチュートリアルを実行する必要はありません。サポートされている言語であれば実行できます。ChatterOpenSpliceDDS のインストール自体で、さまざまな言語での実行に関する詳細情報が得られるはずです。安らかな DDS Web サービスは、元のプロセスがどの言語で記述されていても、DDS バスで見つかったすべてのデータを取得し、HTTP 経由で公開します。

于 2012-07-24T11:17:17.433 に答える