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 Cryostat.Net 데이터 서비스 형식입니다.
다음과 같은 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, username, password 및 command는 다음과 같이 정의됩니다.
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>
애플리케이션을 실행할 때 스ampel 출력이 표시됩니다.
Flight information: Airline ID: AA Aircraft Type: 747-400 Departure city: new york Departure airport: JFK Destination city: SAN FRANCISCO Destination airport: SFO