Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Updating Your SOAP Address

After downloading After downloading your WSDL file be file:

View file
nameEngageIP_WebService_WSDL_8_6_0.zip

be sure to open up the WSDL document in your favorite editor and adjust the target address of the SOAP interface to your server's address.  This can be accomplished by searching for the "soap:address" element to configure the URL.  Be sure to use an HTTPS secured address to ensure that authentication headers are encrypted.

Code Block
 <wsdl:port name="EngageIP_x0020_Web_x0020_Services_x0020_APISoap" binding="tns:EngageIP_x0020_Web_x0020_Services_x0020_APISoap">
 <soap:address location="https://yourdomain/adminportal/webservice.asmx" />
 </wsdl:port>
 <wsdl:port name="EngageIP_x0020_Web_x0020_Services_x0020_APISoap12" binding="tns:EngageIP_x0020_Web_x0020_Services_x0020_APISoap12">
 <soap12:address location="https://yourdomain/adminportal/webservice.asmx" />
 </wsdl:port>

SOAP Authentication Headers

When integrating with the EngageIP SOAP interface you will need authenticate against the system using SOAP authentication headers in your API calls. These provide both a username and password on each API call to ensure that the caller is authenticated against the system.

...