Table of Contents

Search

  1. Preface
  2. Introduction to Edge Data Streaming Custom Entity Types
  3. Managing Custom Entity Types
  4. Custom Entities from Maven Archetypes
  5. REST APIs
  6. HTTP Request and Response Parameters
  7. Sample JSON Requests and Responses
  8. Glossary

Developer Guide

Developer Guide

Step 1: Create the Edge Data Streaming Plug-in XML Document

Step 1: Create the Edge Data Streaming Plug-in XML Document

Create an XML document called
vdsplugin.xml
. In the XML document, describe the configuration of the custom entity type.
You can use the following sample configuration in the XML document:
<?xml version="1.0" encoding="UTF-8"?> <tns:vdsPlugin xmlns:tns="http://www.informatica.com/VdsPlugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.informatica.com/VdsPlugin ../XSD/eds_plugin.xsd "> <tns:id>SimpleSrc</tns:id> <tns:displayName>Simple Source</tns:displayName> <tns:version>1.0</tns:version> <tns:type>SOURCE</tns:type> <tns:configuration> <tns:fields> <tns:field> <tns:textControl> <tns:name>message</tns:name> <tns:displayName>Message</tns:displayName> <tns:description>Message to be sent</tns:description> <tns:mandatory>true</tns:mandatory> <tns:stringTextField> <tns:secure/> </tns:stringTextField> </tns:textControl> </tns:field> </tns:fields> </tns:configuration> <tns:runTime> <tns:pluginJar>SimpleSource.jar</tns:pluginJar> <tns:pluginClass>com.informatica.vds.plugin.custom.SimpleSource</tns:pluginClass> </tns:runTime> <tns:helpKey></tns:helpKey> </tns:vdsPlugin>

0 COMMENTS

We’d like to hear from you!