Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Namespaces in response

RakeshKrApr 11 2018 — edited Feb 26 2020

I have a weird problem. Same BPEL composite (same code) running in 2 different environments giving 2 slightly different responses.

XML wise both are correct. I am just trying to find out what will cause this?

First environment:

<env:Body>
   <IBMICMSchedulerResponse xmlns="http://abc.com/IBMICMScheduler">
   <ItemID>111</ItemID>
   <CompletedActivities/>
   <LiveActivities/>
   <ResponseStatus>FAIL</ResponseStatus>
   </IBMICMSchedulerResponse>

    </env:Body>

Second Environment:

<env:Body>
   <IBMICMSchedulerResponse xmlns="http://abc.com/IBMICMScheduler">
   <ItemID xmlns="http://abc.com/IBMICMScheduler">111</ItemID>
   <CompletedActivities xmlns="http://abc.com/IBMICMScheduler"/>
   <LiveActivities xmlns="http://abc.com/IBMICMScheduler"/>
   <ResponseStatus xmlns="http://abc.com/IBMICMScheduler">FAIL</ResponseStatus>
   </IBMICMSchedulerResponse>

    </env:Body>

Notice the namespaces in each element in second xml.

Anyone any idea what environment specific setting can cause this?

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on May 10 2018
Added on Apr 11 2018
2 comments
192 views