291.6. 例
この例では、インターネット 経由 でオンラインで入手できる SAP のフライトデモの例を使用しています。
以下のルートでは、次の URL を使用して SAP NetWeaver デモサーバーをリクエストします。
https://sapes1.sapdevcenter.com/sap/opu/odata/IWBEP/RMTSAMPLEFLIGHT_2/
そして、次のコマンドを実行したい
FlightCollection(AirLineID='AA',FlightConnectionID='0017',FlightDate=datetime'2012-08-29T00%3A00%3A00')
特定のフライトのフライトの詳細を取得します。コマンド構文は、MS ADO.Net Data Service 形式です。
次の Camel ルートがあります
from("direct:start") .setHeader(NetWeaverConstants.COMMAND, constant(command)) .toF("sap-netweaver:%s?username=%s&password=%s", url, username, password) .to("log:response") .to("velocity:flight-info.vm")
URL、ユーザー名、パスワード、およびコマンドは次のように定義されます。
private String username = "P1909969254"; private String password = "TODO"; private String url = "https://sapes1.sapdevcenter.com/sap/opu/odata/IWBEP/RMTSAMPLEFLIGHT_2/"; private String command = "FlightCollection(AirLineID='AA',FlightConnectionID='0017',FlightDate=datetime'2012-08-29T00%3A00%3A00')";
パスワードが無効です。デモを実行するには、最初に SAP でアカウントを作成する必要があります。
速度テンプレートは、基本的な HTML ページへのレスポンスをフォーマットするために使用されます
<html> <body> Flight information: <p/> <br/>Airline ID: $body["AirLineID"] <br/>Aircraft Type: $body["AirCraftType"] <br/>Departure city: $body["FlightDetails"]["DepartureCity"] <br/>Departure airport: $body["FlightDetails"]["DepartureAirPort"] <br/>Destination city: $body["FlightDetails"]["DestinationCity"] <br/>Destination airport: $body["FlightDetails"]["DestinationAirPort"] </body> </html>
アプリケーションを実行すると、サンプル出力が得られます。
Flight information: Airline ID: AA Aircraft Type: 747-400 Departure city: new york Departure airport: JFK Destination city: SAN FRANCISCO Destination airport: SFO