Interstage Application Server SOAPサービス ユーザーズガイド |
目次 索引 |
第11章 サンプルプログラム | > 11.3 RPC方式のサンプルプログラム |
サンプルプログラムYoung3Persons(サンプルYoung3Persons)は構造体型の配列をinoutパラメタで使用して、入力された5人の名前と年齢で、年齢の若いほうから3人の名前と年齢を表示します。
構造体を表す以下の1つのクラスを定義しています。
(1)以下のディレクトリに移動します。
(2)サンプルYoung3PersonsのWebサービス情報をWebサービス・マネージャに登録します。
soapmodifydd -set -url http://localhost:12000/soap_admin/servlet/WSContainer DeploymentDescriptor.xml
(3)以下のディレクトリに移動します。
(4)サンプルYoung3Personsクライアントプログラムを実行します。
java Young3PersonsClient http://localhost:80/soap_dev/servlet/WSContainer
上記の入力(名前と年齢)を5回繰り返します。
java Young3PersonsClient http://localhost:80/soap_dev/servlet/WSContainer
Please input the name of person-1: Jiro
Please input the age of person-1: 18
Please input the name of person-2: Goro
Please input the age of person-2: 12
Please input the name of person-3: Saburo
Please input the age of person-3: 17
Please input the name of person-4: Shiro
Please input the age of person-4: 15
Please input the name of person-5: Ichiro
Please input the age of person-5: 20
Young 3 persons:
[name=Goro, age=12]
[name=Shiro, age=15]
[name=Saburo, age=17]
目次 索引 |