Table of Contents

Search

  1. Preface
  2. Introduction to Business Entity Services
  3. Enterprise Java Bean Business Entity Service Calls
  4. Representational State Transfer Business Entity Service Calls
  5. Simple Object Access Protocol Business Entity Service Calls
  6. Services for Cross-reference Records and BVT Calculations
  7. Supporting Corporate Linkage Service
  8. External Calls to Cleanse, Analyze, and Transform Data
  9. Using REST APIs to Add Records
  10. Using REST APIs to Upload Files

Authentication method

Authentication method

All SOAP calls to the business entity services require user authentication. Provide the user name and password in the SOAP message header of the web service request.
The SOAP header element Security contains the security-related data. The Security element contains the UsernameToken element which has the following child elements:
username
User name associated with the token.
password
Password for the user name associated with the token.
Send the user name and password in the UsernameToken element.
The following example shows the Security header element in the SOAP message:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:cs-ors.informatica.mdm"> <soapenv:Header> <Security xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> <UsernameToken> <Username>admin</Username> <Password>admin</Password> </UsernameToken> </Security> </soapenv:Header> <soapenv:Body> ..... </soapenv:Body> </soapenv:Envelope>

0 COMMENTS

We’d like to hear from you!