cancel
Showing results for 
Search instead for 
Did you mean: 

Message Header details ?

Former Member
0 Kudos

Hi Guys,

Our business partner is unable to process the MessageHeader, they proposed to use the MessageHeader that they send in the request message to fill in the header of the response. Is this possible in the ccBPM.

I need to put everything that is under <SenderParty> in the Request into <RecipientParty> of the response, and everything that is under <RecipientParty> in the request under <SenderParty> of the response, we need to create an exact “mirror” MessageHeader regarding Party-Tags so that they can process the message successfully.

any help would be appreciated

Thanks,

srini

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Srini !

Check the Receiver Agreement object in Integration Directory.

There you can specifiy new headers.

Regards,

Matias.

Former Member
0 Kudos

Hi Matias,

I have filled the sender & receiver party and service details in the receiver agreement and i have used java mapping to extract these runtime parameters.

I am able to see sender party details but the receiver party is null. I am using the following code to retreive the runtime parameters

Rceiver Party

String constant;

java.util.Map map;

map = container.getTransformationParameters();

constant = (String) map.get(StreamTransformationConstants.RECEIVER_PARTY);

return constant;

Receiver Party Schema

String constant;

java.util.Map map;

map = container.getTransformationParameters();

constant = (String) map.get(StreamTransformationConstants.RECEIVER_PARTY_SCHEME);

return constant;

any help would be appreciated

Thanks,

srini