Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

SAP

...

NetWeaver

...

Gateway

...

component

...

Available

...

as

...

of

...

Camel

...

2.12

...

The

...

sap-netweaver

...

integrates

...

with

...

the

...

SAP

...

NetWeaver

...

Gateway

...

using

...

HTTP

...

transports.

...

This

...

camel

...

component

...

supports

...

only

...

producer

...

endpoints.

...

Maven

...

users

...

will

...

need

...

to

...

add

...

the

...

following

...

dependency

...

to

...

their

...

pom.xml

...

for

...

this

...

component:

Code Block
xml
xml

{code:xml}
<dependency>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-sap-netweaver</artifactId>
    <version>x.x.x</version>
    <!-- use the same version as your Camel core version -->
</dependency>
{code}

h3. URI format

The URI scheme for a sap netweaver gateway component is as follows

{code

URI format

The URI scheme for a sap netweaver gateway component is as follows

Code Block
}
sap-netweaver:https://host:8080/path?username=foo&password=secret
{code}

You

...

can

...

append

...

query

...

options

...

to

...

the

...

URI

...

in

...

the

...

following

...

format,

...

?option=value&option=value&...

Prerequisites

You would need to have an account to the SAP NetWeaver system to be able to leverage this component. SAP provides a demo setup where you can requires for an account.

This component uses the basic authentication scheme for logging into SAP NetWeaver.

Component and endpoint options

Div
classconfluenceTableSmall

Name

Default Value

Description

username

 

Username for account. This is mandatory.

password

 

Password for account. This is mandatory.

json

true

Whether to return data in JSON format. If this option is false, then XML is returned in Atom format.

jsonAsMap

true

To transform the JSON from a String to a Map in the message body.

flatternMap

true

If the JSON Map contains only a single entry, then flattern by storing that single entry value as the message body.

Message Headers

The following headers can be used by the producer.

Div
classconfluenceTableSmall

Name

Type

Description

CamelNetWeaverCommand

String

Mandatory: The command to execute in MS ADO.Net Data Service format.

Examples

This example is using the flight demo example from SAP, which is available online over the internet here.

In the route below we request the SAP NetWeaver demo server using the following url

Code Block
}}

h3. Prerequisites

You would need to have an account to the SAP NetWeaver system to be able to leverage this component. SAP provides a [demo setup|http://scn.sap.com/docs/DOC-31221#section6] where you can requires for an account.

This component uses the basic authentication scheme for logging into SAP NetWeaver.


h3. Component and endpoint options
{div:class=confluenceTableSmall}
|| Name || Default Value || Description ||
| {{username}} |  | Username for account. This is mandatory. |
| {{password}} |  | Password for account. This is mandatory. |
| {{json}} | {{true}} | Whether to return data in JSON format. If this option is false, then XML is returned in [Atom] format. |
| {{jsonAsMap}} | {{true}} | To transform the JSON from a String to a Map in the message body. |
| {{flatternMap}} | {{true}} | If the JSON Map contains only a single entry, then flattern by storing that single entry value as the message body. |
{div}

h3. Message Headers

The following headers can be used by the producer.

{div:class=confluenceTableSmall}
|| Name || Type || Description ||
| {{CamelNetWeaverCommand}} | {{String}} | *Mandatory*: The command to execute in [MS ADO.Net Data Service|http://msdn.microsoft.com/en-us/library/cc956153.aspx] format. |
{div}

h3. Examples

This example is using the flight demo example from SAP, which is available online over the internet [here|http://scn.sap.com/docs/DOC-31221].

In the route below we request the SAP NetWeaver demo server using the following url
{code}
https://sapes1.sapdevcenter.com/sap/opu/odata/IWBEP/RMTSAMPLEFLIGHT_2/
{code}

And

...

we

...

want

...

to

...

execute

...

the

...

following

...

command

{
Code Block
}
FlightCollection(AirLineID='AA',FlightConnectionID='0017',FlightDate=datetime'2012-08-29T00%3A00%3A00')
{code}

To

...

get

...

flight

...

details

...

for

...

the

...

given

...

flight.

...

The

...

command

...

syntax

...

is

...

in

...

MS

...

ADO.Net

...

Data

...

Service format.

We have the following Camel route

Code Block
|http://msdn.microsoft.com/en-us/library/cc956153.aspx] format.

We have the following Camel route
{code}
from("direct:start")
    .toF("sap-netweaver:%s?username=%s&password=%s", url, username, password)
    .to("log:response")
    .to("velocity:flight-info.vm")
{code}

Where

...

url,

...

username,

...

and

...

password

...

is

...

defined

...

as:

{
Code Block
}
    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')";
{code}

The

...

password

...

is

...

invalid.

...

You

...

would

...

need

...

to

...

create

...

an

...

account

...

at

...

SAP

...

first

...

to

...

run

...

the

...

demo.

...

The

...

velocity

...

template

...

is

...

used

...

for

...

formatting

...

the

...

response

...

to

...

a

...

basic

...

HTML

...

page

Code Block
xml
xml

{code:xml}
<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>
{code}

When

...

running

...

the

...

application

...

you

...

get

...

sampel

...

output:

{
Code Block
}
Flight information:
Airline ID: AA
Aircraft Type: 747-400
Departure city: new york
Departure airport: JFK
Destination city: SAN FRANCISCO
Destination airport: SFO
{code}

{include:Endpoint See Also}
- [HTTP]
Include Page
Endpoint See Also
Endpoint See Also