Consume Adobe Coldfusion WebService

Hello, I'm trying with no success to consume a webservice developed in ColdFusion but I keep receiving the "Wrong Binding ID" Message.

I have tested the webservice in SOAP UI and it is working,This is what I configured:

Service NS: http://rest.pruebas

Service Name: cfmx.pruebas.rest.Testimonio.cfc

Port name: EnvioTestimonioRequest

End Point URL: http://localhost:8500/cfmx/pruebas/rest/Testimonio.cfc

Binding: cfmx.pruebas.rest.Testimonio.cfcSoap12Binding

Enveloppe:

[code lang="xml" linenumbers="normal"]

<s12:Envelope xmlns:s12='http://www.w3.org/2003/05/soap-envelope'>
  <s12:Body>
    <ns:EnvioTestimonio xmlns:ns='http://rest.pruebas'>
<!-- optional -->
<!-- This element may be left empty if xsi:nil='true' is set. -->
      <ns:cedula>1</ns:cedula>
    </ns:EnvioTestimonio>
  </s12:Body>
</s12:Envelope> [/code]

Here is the wsdl:

&lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:ns="http://rest.pruebas" xmlns:ax231="http://rpc.xml.coldfusion/xsd" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://rest.pruebas"&gt;


    &lt;wsdl:types&gt;
        &lt;xs:schema xmlns:ax232="http://rpc.xml.coldfusion/xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://rest.pruebas"&gt;
            &lt;xs:import namespace="http://rpc.xml.coldfusion/xsd"/&gt;
            &lt;xs:element name="cfmx.pruebas.rest.Testimonio.cfcCFCInvocationException"&gt;
                &lt;xs:complexType&gt;
                    &lt;xs:sequence&gt;
                        &lt;xs:element minOccurs="0" name="CFCInvocationException" nillable="true" type="ax232:CFCInvocationException"/&gt;
                    &lt;/xs:sequence&gt;
                &lt;/xs:complexType&gt;
            &lt;/xs:element&gt;
            &lt;xs:element name="EnvioTestimonio"&gt;
                &lt;xs:complexType&gt;
                    &lt;xs:sequence&gt;
                        &lt;xs:element minOccurs="0" name="cedula" nillable="true" type="xs:string"/&gt;
                    &lt;/xs:sequence&gt;
                &lt;/xs:complexType&gt;
            &lt;/xs:element&gt;
            &lt;xs:element name="EnvioTestimonioResponse"&gt;
                &lt;xs:complexType&gt;
                    &lt;xs:sequence&gt;
                        &lt;xs:element minOccurs="0" name="return" nillable="true" type="ns:document"/&gt;
                    &lt;/xs:sequence&gt;
                &lt;/xs:complexType&gt;
            &lt;/xs:element&gt;
            &lt;xs:complexType name="document"&gt;
                &lt;xs:sequence&gt;
                    &lt;xs:any/&gt;
                &lt;/xs:sequence&gt;
            &lt;/xs:complexType&gt;
        &lt;/xs:schema&gt;
        &lt;xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://rpc.xml.coldfusion/xsd"&gt;
            &lt;xs:complexType name="CFCInvocationException"&gt;
                &lt;xs:sequence/&gt;
            &lt;/xs:complexType&gt;
            &lt;xs:complexType name="StructDelegate"&gt;
                &lt;xs:sequence&gt;
                    &lt;xs:element maxOccurs="unbounded" minOccurs="0" name="entries" nillable="true" type="ax231:EntryDelegate"/&gt;
                &lt;/xs:sequence&gt;
            &lt;/xs:complexType&gt;
            &lt;xs:complexType name="EntryDelegate"&gt;
                &lt;xs:sequence&gt;
                    &lt;xs:element minOccurs="0" name="key" nillable="true" type="xs:anyType"/&gt;
                    &lt;xs:element minOccurs="0" name="value" nillable="true" type="xs:anyType"/&gt;
                &lt;/xs:sequence&gt;
            &lt;/xs:complexType&gt;
            &lt;xs:complexType name="QueryBean"&gt;
                &lt;xs:sequence&gt;
                    &lt;xs:element maxOccurs="unbounded" minOccurs="0" name="columnList" nillable="true" type="xs:string"/&gt;
                    &lt;xs:element maxOccurs="unbounded" minOccurs="0" name="data" nillable="true" type="ax231:ArrayOfObject"/&gt;
                &lt;/xs:sequence&gt;
            &lt;/xs:complexType&gt;
            &lt;xs:complexType name="ArrayOfObject"&gt;
                &lt;xs:sequence&gt;
                    &lt;xs:element maxOccurs="unbounded" minOccurs="0" name="array" nillable="true" type="xs:anyType"/&gt;
                &lt;/xs:sequence&gt;
            &lt;/xs:complexType&gt;
            &lt;xs:complexType name="DocumentDelegate"&gt;
                &lt;xs:sequence&gt;
                    &lt;xs:element minOccurs="0" name="document" nillable="true" type="ns:document"/&gt;
                &lt;/xs:sequence&gt;
            &lt;/xs:complexType&gt;
            &lt;xs:complexType name="ArrayDelegate"&gt;
                &lt;xs:sequence&gt;
                    &lt;xs:element maxOccurs="unbounded" minOccurs="0" name="array" nillable="true" type="xs:anyType"/&gt;
                &lt;/xs:sequence&gt;
            &lt;/xs:complexType&gt;
        &lt;/xs:schema&gt;
    &lt;/wsdl:types&gt;
    &lt;wsdl:message name="EnvioTestimonioRequest"&gt;
        &lt;wsdl:part name="parameters" element="ns:EnvioTestimonio"/&gt;
    &lt;/wsdl:message&gt;
    &lt;wsdl:message name="EnvioTestimonioResponse"&gt;
        &lt;wsdl:part name="parameters" element="ns:EnvioTestimonioResponse"/&gt;
    &lt;/wsdl:message&gt;
    &lt;wsdl:message name="cfmx.pruebas.rest.Testimonio.cfcCFCInvocationException"&gt;
        &lt;wsdl:part name="parameters" element="ns:cfmx.pruebas.rest.Testimonio.cfcCFCInvocationException"/&gt;
    &lt;/wsdl:message&gt;
    &lt;wsdl:portType name="cfmx.pruebas.rest.Testimonio.cfcPortType"&gt;
        &lt;wsdl:operation name="EnvioTestimonio"&gt;
            &lt;wsdl:input message="ns:EnvioTestimonioRequest" wsaw:Action="urn:EnvioTestimonio"/&gt;
            &lt;wsdl:output message="ns:EnvioTestimonioResponse" wsaw:Action="urn:EnvioTestimonioResponse"/&gt;
            &lt;wsdl:fault message="ns:cfmx.pruebas.rest.Testimonio.cfcCFCInvocationException" name="cfmx.pruebas.rest.Testimonio.cfcCFCInvocationException" wsaw:Action="urn:EnvioTestimoniocfmx.pruebas.rest.Testimonio.cfcCFCInvocationException"/&gt;
        &lt;/wsdl:operation&gt;
    &lt;/wsdl:portType&gt;
    &lt;wsdl:binding name="cfmx.pruebas.rest.Testimonio.cfcSoap11Binding" type="ns:cfmx.pruebas.rest.Testimonio.cfcPortType"&gt;
        &lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;
        &lt;wsdl:operation name="EnvioTestimonio"&gt;
            &lt;soap:operation soapAction="urn:EnvioTestimonio" style="document"/&gt;
            &lt;wsdl:input&gt;
                &lt;soap:body use="literal"/&gt;
            &lt;/wsdl:input&gt;
            &lt;wsdl:output&gt;
                &lt;soap:body use="literal"/&gt;
            &lt;/wsdl:output&gt;
            &lt;wsdl:fault name="cfmx.pruebas.rest.Testimonio.cfcCFCInvocationException"&gt;
                &lt;soap:fault use="literal" name="cfmx.pruebas.rest.Testimonio.cfcCFCInvocationException"/&gt;
            &lt;/wsdl:fault&gt;
        &lt;/wsdl:operation&gt;
    &lt;/wsdl:binding&gt;
    &lt;wsdl:binding name="cfmx.pruebas.rest.Testimonio.cfcSoap12Binding" type="ns:cfmx.pruebas.rest.Testimonio.cfcPortType"&gt;
        &lt;soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;
        &lt;wsdl:operation name="EnvioTestimonio"&gt;
            &lt;soap12:operation soapAction="urn:EnvioTestimonio" style="document"/&gt;
            &lt;wsdl:input&gt;
                &lt;soap12:body use="literal"/&gt;
            &lt;/wsdl:input&gt;
            &lt;wsdl:output&gt;
                &lt;soap12:body use="literal"/&gt;
            &lt;/wsdl:output&gt;
            &lt;wsdl:fault name="cfmx.pruebas.rest.Testimonio.cfcCFCInvocationException"&gt;
                &lt;soap12:fault use="literal" name="cfmx.pruebas.rest.Testimonio.cfcCFCInvocationException"/&gt;
            &lt;/wsdl:fault&gt;
        &lt;/wsdl:operation&gt;
    &lt;/wsdl:binding&gt;
    &lt;wsdl:service name="cfmx.pruebas.rest.Testimonio.cfc"&gt;
        &lt;wsdl:port name="cfmx.pruebas.rest.Testimonio.cfcHttpSoap11Endpoint" binding="ns:cfmx.pruebas.rest.Testimonio.cfcSoap11Binding"&gt;
            &lt;soap:address location="http://localhost:8500/cfmx/pruebas/rest/Testimonio.cfc"/&gt;
        &lt;/wsdl:port&gt;
        &lt;wsdl:port name="cfmx.pruebas.rest.Testimonio.cfcHttpSoap12Endpoint" binding="ns:cfmx.pruebas.rest.Testimonio.cfcSoap12Binding"&gt;
            &lt;soap12:address location="http://localhost:8500/cfmx/pruebas/rest/Testimonio.cfc"/&gt;
        &lt;/wsdl:port&gt;
    &lt;/wsdl:service&gt;
&lt;/wsdl:definitions&gt;

Any Help would be apreciated.

http://community.bonitasoft.com/groups/usage-operation-5x/resolved-web-service-called-bonita-wrong-binding-id

If it doenst work, cant you attach your process to investigate in deep?

Cheers