ICS - Reading XML file from File server
Summary
ICS - Reading XML file from File serverContent
Hello,
I have trying to read an XML file using FTP adapter. This file is residing in FTP server accessible by ICS. Below is the XSD schema of this XML:
XSD:
==========================================================================================
<?xml version="1.0" encoding="UTF-8" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://oracle/ICS/integration"
targetNamespace="http://oracle/ICS/integration"
elementFormDefault="qualified">
<xsd:element name="Interfaces">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Interface" maxOccurs="unbounded" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="name" type="xsd:string"/>
<xsd:element name="description" type="xsd:string"/>
</xsd:sequence>