v5.0 - v5.5 Data Sync Documentation
  • Overview
  • Release Notes
    • V4.5
    • V4.6
    • v4.7
    • v4.8
    • v4.9
    • v4.10
    • v4.12
    • v4.13
  • v4 Connections Installation Guide
    • v5 Connections and CLI Installation Guide
  • v4 Worker/Listener Installation Guide
    • v5 Worker/Listener Installation Guide
  • Upgrades & Config Changes
  • Builder Guide
    • Overview
    • Types of Data Syncs
    • Subscribing to Event Streams
      • Supported Stream Sources
        • Amazon Simple Queue Service (SQS)
        • Cinchy Change Data Capture
        • Data Polling
        • Kafka Topic
        • MongoDB
        • Salesforce
          • Push Topic
          • Platform Event
    • Configuring a Data Sync
      • Connections Experience & XML Config Reference
        • Info
          • Parameters
            • String Escape
        • Source Config Reference
          • Schema Columns
            • Calculated Column Examples
          • Auth Requests
          • Request Headers
          • Pagination
          • Source Filter
        • Target Destination Config Reference
          • Column Mappings
          • Target Destination Filter
        • Sync Behaviour
        • Post Sync
        • Permissions
        • Jobs
        • Connections Usage Example
      • Data Validation
      • Transformations
        • StringReplacement
      • Supported Data Sources
        • File Based Source
          • Binary File
            • Binary File Data Source Example
          • Delimited File
            • Delimited File Data Source XML Example
          • Fixed Width File
          • Excel
            • Excel Source XML Example
        • Cinchy Event Broker/CDC
          • Cinchy Event Broker/CDC XML Config Example
        • Cinchy Table
          • Cinchy Table XML Config Example
        • Cinchy Query
          • Cinchy Query Data Source Example
        • Copper
        • DB2
        • Dynamics 2015
        • Dynamics
        • DynamoDB
        • Kafka Topic
          • Apache AVRO Data Format
          • Kafka Topic Source Example
        • LDAP
        • MongoDB Collection
          • MongoDB Collection Source XML Example
        • MongoDB Collection (Cinchy Event Triggered)
        • MS SQL Server Query
        • MS SQL Server Table
        • ODBC Table
        • ODBC Query
        • Oracle Table
        • Oracle Query
        • Parquet
        • Polling Event
          • Polling Event Example
        • REST API (Cinchy Event Triggered)
        • REST API
          • REST API XML Example
        • SAP SuccessFactors
        • Salesforce Object (Bulk API)
        • Salesforce Platform Event
        • Salesforce Push Topic
        • Snowflake
          • Snowflake Source XML Example
        • SOAP 1.2 Web Service
      • Supported Sync Targets
        • Cinchy Table
        • DB2 Table
        • Dynamics
        • Kafka Topic
        • MongoDB Collection (Column Based)
        • MS SQL Server Table
        • Oracle Table
        • REST API
        • Salesforce
        • Salesforce Object
        • Snowflake Table
          • Snowflake Table Target XML Example
        • SOAP 1.2 Web Service
    • Common Design Patterns
    • Testing a Data Sync
    • Promoting a Data Sync
    • Scheduling a Data Sync
    • CLI Command List
    • Connections Functions
    • Monitoring
  • Cinchy Platform Documentation
Powered by GitBook
On this page
  • 1. Basic Parameters
  • 2. Schema Columns
  • 3. Filter
  • 3. XML Body Example

Was this helpful?

  1. Builder Guide
  2. Configuring a Data Sync
  3. Supported Data Sources

SOAP 1.2 Web Service

This page describes the configuration for setting up a SOAP 1.2 Web Service Source

PreviousSnowflake Source XML ExampleNextSupported Sync Targets

Last updated 2 years ago

Was this helpful?

1. Basic Parameters

To connect SOAP 1.2 Web Service as a Data Source, fill in the following parameters (image 1):

Parameter

Value

authType

None WSSE - Will allow you to use a Username and Password to authenticate via a WS-Security SOAP envelope header. Basic - Will allow you to use a Username and Password to authenticate via a basic auth header

usePasswordDigest

This is an optional boolean parameter and should only be used in the context of WSSE auth when the Password Type is of PasswordDigest.

requestTimeout

Use this to set timeout for the request

endPoint

This is the SOAP 1.2 Web Service API endpoint

hasMtomResponse

recordXpath

envelopeNamespace

The envelope namespace of the SOAP message.

2. Schema Columns

3. Filter

3. XML Body Example

<?xml version="1.0" encoding="utf-16" ?>
<BatchDataSyncConfig 
	name="WORKFORCE" 
	version="1.0.0" 
	xmlns="http://www.cinchy.co" 
	xmlns:soap="http://www.w3.org/2003/05/soap-envelope" 
	xmlns:xsd="http://services.workforcesoftware.com/xsd" 
	xmlns:ax2119="http://ws.apache.org/axis2/xsd">
	<!--BatchDataSyncConfig requires attributes xmlns:soap, xmlns:xsd and xmlns:ax2119 to connect to SOAP 1.2 Web Service-->
	<Parameters />
	<Soap12DataSource 
		username="WEB_SERVICE_USER"
		password="gTyhHklRGLo9foH4ztbSoXJ3Q29JM"
		usePasswordDigest="false"
		hasMtomResponse="true"
		endpoint="https://groupex-groupexsandboxte-trn.wfsaas.com/workforce/services/Z_getE2GEmployees.Z_getE2GEmployeesHttpsSoap12Endpoint/"
		recordXpath="//ax2119:result">
		<soap:Body>
			<xsd:Z_getE2GEmployees/>
		</soap:Body>
		<Schema>
			<Column name="./ax2119:EMPLOYEE_ID" ordinal="1" dataType="Text" maxLength="50" isMandatory="false" validateData="false" trimWhitespace="true" description=""/>
			<Column name="./ax2119:LOCATION_CODE" ordinal="2" dataType="Text" maxLength="500" isMandatory="false" validateData="false" trimWhitespace="true" description=""/>
			<Column name="./ax2119:firstName" ordinal="3" dataType="Text" maxLength="50" isMandatory="false" validateData="false" trimWhitespace="true" description=""/>
			<Column name="./ax2119:lastName" ordinal="4" dataType="Text" maxLength="50" isMandatory="false" validateData="false" trimWhitespace="true" description=""/>
		</Schema>
	</Soap12DataSource>
	<CinchyTableTarget model="" domain="Workforce" table="WORKFORCE_EMPLOYEES">
		<ColumnMappings>
			<ColumnMapping sourceColumn="./ax2119:EMPLOYEE_ID" targetColumn="Employee ID" /> 
			<ColumnMapping sourceColumn="./ax2119:LOCATION_CODE" targetColumn="Location Code" />
			<ColumnMapping sourceColumn="./ax2119:firstName" targetColumn="FirstName" />
			<ColumnMapping sourceColumn="./ax2119:lastName" targetColumn="LastName" />
		</ColumnMappings>
		<SyncKey>
		  <SyncKeyColumnReference name="Employee ID" />
		</SyncKey>
		<Filter />
		<DroppedRecordBehaviour type="IGNORE" />
	</CinchyTableTarget>
</BatchDataSyncConfig>

This boolean parameter indicates whether or not it has an Mtom Response. Required to be true if the SOAP API response contains an attachment outside of the SOAP response message.

XPATH result set which user want to sync data from.

Add in your applicable columns (Image 2). for information on the column types available.

Adding a filter section allows you to enter a CQL filter statement for your results (Image 3). for more information on adding a Filter.

Review the documentation here
See here
See here for an example.
See here for more on XPATH.
Image 1: Basic Data Sync Parameters
Image 2: Schema Columns
Image 3: Adding a Filter Section