User login

How to convert SOAP 1.2 to SOAP 1.1 call

Forums :

I'm having some problems, using Coldfusion MX7 to comunicate to Intalio BPMS.

It's because Intalio soap envelop fails to be read by Coldfusion, and I'd like to use ESB to proxy these calls, and convert Calls from 1.2 to 1.1

Is it possible ?

And how to configure ESB to do this?

 

 

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Yes it is possible, and it

Yes it is possible, and it is prety simple.

Here is how your configuraiton should look like;

<definitions xmlns="http://ws.apache.org/ns/synapse">
<in>
<send>
<endpoint>
<address uri="$actual_service_URL" format="soap11"/>
</endpoint>
</send>
</in>
<out>
<send/>
</out>
</definitions>

Thanks,

Ruwan Linton

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.