HTTP request for a SOAP web service using WS-Security 1.0 with a digital certificate for authentication

This article will Explain the format and content of an HTTP request for a SOAP web service using WS-Security 1.0 with a digital certificate for authentication Describe the steps for writing code that loads the certificate and private key, constructs the XML, signs the XML, and then constructs the HTTP request and sends it. Provides links to examples that demonstrate […]

SOAP UI WSDL to Chilkat Code

Chilkat now has an Online SOAP WSDL Code Generator You can generate code and SOAP request/response XML from an online WSDL URL.  The cumbersome and complicated procedure below is no longer needed. See the new Chilkat SOAP WSDL Code Generator at https://tools.chilkat.io/soap_wsdl_generate_code     These are the old instructions for using SoapUI.  It is much easier to use the Online […]

HTTP Upload vs. SOAP Request (how they are different)

What is the difference between an HTTP Upload and a SOAP Request? An upload is an HTTP request that uses the multipart/form-data content-type. (All HTTP requests and responses are MIME, and the format of a given request is determined by the content-type.) A SOAP request, on the other hand, has a content-type of text/xml, which means it is composed of […]