RosettaCodeData/Task/SOAP/F-Sharp/soap.fs
2023-07-01 13:44:08 -04:00

5 lines
176 B
FSharp

open Microsoft.FSharp.Data.TypeProviders
type Wsdl = WsdlService<"http://example.com/soap/wsdl">
let result = Wsdl.soapFunc("hello")
let result2 = Wsdl.anotherSoapFunc(34234)