cancel
Showing results for 
Search instead for 
Did you mean: 

adapter specific properties (http receiver adapter)

Former Member
0 Kudos

Hi,

does anybody know the technical name for the HTTP destination of a http receiver adapter.

The documentation lists only the names URLParamOne to URLParamSix and HeaderFieldOne to HeaderFieldSix.

Neither the technical name for URL nor for a HTTP destiantion are mentioned.

Regards,

Marc

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi,

browsing through the Adapter-Metadata of the HTTP-Adapter within the SAP BASIS Software Component, I found the technical names.

Technical name for HTTP-Destination is 'HTTPDest'.

Technical name for URL is 'TargetURL'.

Regards,

Marc

Former Member
0 Kudos

Hi Moorthy,

in my case HTTP destination means a destination that is configured using transaction SM59 on the ABAP-Stack. This can be referenced by a communication channel.

In my case I want to reference different HTTP destinations depending on the payload using the dynamic configuration.

So I just need the technical name for that.

Regards,

Marc

Former Member
0 Kudos

Hello Moorthy,

I know this part of the documentation.

So I set the indicator within the communication channel.

Now, I have to fill the dynamic configuration during my mapping. My code looks like following:


DynamicConfigurationKey keyURL =  DynamicConfigurationKey.create("http://sap.com/xi/XI/System/HTTP", <b>XXXXX</b>);

// access dynamic configuration
DynamicConfiguration conf = (DynamicConfiguration) param.get (StreamTransformationConstants.DYNAMIC_CONFIGURATION);

// set value
conf.put(keyURL, url);

So what has to be filled instead of XXXXX ?

Regards,

Marc

moorthy
Active Contributor
0 Kudos

Hi Marc,

In your case technical name of the Http destination means..target system name or header information?

This blog may give some hints-

/people/william.li/blog/2006/04/18/dynamic-configuration-of-some-communication-channel-parameters-using-message-mapping

Regards,

Moorthy

moorthy
Active Contributor
0 Kudos

HI Marc,

<i>

If you want to use an HTTP destination or URL set by the mapping, set the URL or HTTP Destination indicator. (The indicator displayed depends on the Addressing Type you selected above). If you set the indicator, the URL or HTTP destination set dynamically is called by HTTP.</i>

From SAP help-

http://help.sap.com/saphelp_nw2004s/helpdata/en/43/64dbb0af9f30b4e10000000a11466f/content.htm

Regards,

Moorthy