SOAP: Difference between revisions

195 bytes added ,  6 years ago
Adds Clojure solution
(→‎{{header|Kotlin}}: Added a line to free the slist after use.)
(Adds Clojure solution)
Line 123:
</soapenv:Envelope>
</lang>
 
=={{header|Clojure}}==
<lang clojure>(require '[clj-soap.core :as soap])
 
(let [client (soap/client-fn "http://example.com/soap/wsdl")]
(client :soapFunc)
(client :anotherSoapFunc))</lang>
 
=={{header|ColdFusion}}==
<lang cfm><cfset client = createObject("webservice","http://example.com/soap/wsdl")>
Anonymous user