delphi - How do I change my existing SOAP 1.1 client to 1.2? -


I have a SOAP 1.1 client that was originated from the Delphi 2007 WSDL importer.

Now I need to convert it to SOAP 1.2. Since I changed things in the generated code, I did not want to make it again. How can I change it manually in SOAP 1.2?

Thanks, Mill.

In the initialization section of the generated code, for each port type, add a line like this:

  InvRegistry.RegisterInvokeOptions (TypeInfo (PortType), ioSOAP12);  

This will do the trick.

MiL


Comments