Sha256: 598a6fa5d91476092bb528ea6ffcb042675bfa0e6886e9e3cd8c25bf0b648262

Contents?: true

Size: 1.15 KB

Versions: 10

Compression:

Stored size: 1.15 KB

Contents

<?xml version="1.0" encoding="UTF-8"?>
<!-- Example of a WSDL with two <binding> tags ("sections" in Savon
     parlance).

     This is stripped down from a real example found in the wild, although
     having different operations for the SOAP 1.1 and SOAP 1.2 bindings
     is hypothetical (the real-world example I saw had the same operations
     in each binding section). -->
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <types>
    </types>
    <portType name="BlogSoap">
    </portType>
    <binding name="BlogSoap">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
        <operation name="Post" />
        <operation name="Post11only" />
    </binding>
    <binding name="BlogSoap12">
        <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
        <operation name="Post" />
        <operation name="Post12only" />
    </binding>
</definitions>

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
savon-0.9.4 spec/fixtures/wsdl/two_bindings.xml
savon-0.9.3 spec/fixtures/wsdl/two_bindings.xml
search_biomodel-1.0.0 search_biomodel/ruby/1.8/gems/savon-0.9.2/spec/fixtures/wsdl/two_bindings.xml
savon-0.9.2 spec/fixtures/wsdl/two_bindings.xml
s-savon-0.8.6 spec/fixtures/wsdl/two_bindings.xml
savon-0.9.1 spec/fixtures/wsdl/two_bindings.xml
savon-0.9.0 spec/fixtures/wsdl/two_bindings.xml
savon-0.8.6 spec/fixtures/wsdl/two_bindings.xml
savon-0.8.5 spec/fixtures/wsdl/two_bindings.xml
savon-0.8.4 spec/fixtures/wsdl/two_bindings.xml