> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sync.cdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# XML

export const CommonDatasourceMoreInformation = ({datasource = "the data source", advancedurl = "", siteName = "CData Sync", driverVersion = ""}) => {
  return <>
      <p>
        {siteName} と{datasource} の連携について、詳しくは{' '}
        <a href={`https://cdn.cdata.com/help/${advancedurl}${driverVersion}/jp/synch/default.htm`}>
          {datasource} Connector for {siteName}
        </a> を参照してください。
      </p>
    </>;
};

export const CommonDatasourceIntroSource = ({datasource = "the data source", siteName = "CData Sync"}) => {
  return <p>
      {siteName} アプリケーションから{datasource} コネクタを使用して、{datasource} からデータを取得してサポートされている任意の同期先に移動できます。これを行うには、コネクタを追加し、コネクタへの認証を行い、接続を完了する必要があります。
    </p>;
};

export const driverVersion = "M";

export const siteNameShort = "Sync";

export const siteName = "CData Sync";

export const datasource = "XML";
export const pageTitle = "XML";
export const advancedurl = "DV";

<CommonDatasourceIntroSource datasource={datasource} siteName={siteName} />

## Connect to XML

To connect to XML in {siteNameShort}:

1. Open the **Connections** page of the {siteNameShort} dashboard.
2. Click **Add Connection** to open the **Select Connectors** page.
3. Click the **Sources** tab and locate the **XML** row.
4. Click the **Configure Connection** icon at the end of that row. If you do not see the **Configure Connection** icon, add the connector from the [Connections](../connections) page.
5. Enter the following connection settings on the **Settings** tab:
   * **Connection Type:** Select the connection type for your XML resources. The default type is **Auto**.
   * **Data Model:** Select the data model that you want to use for parsing XML documents and generating the database metadata.
   * **URI:** Enter the Uniform Resource Identifier (URI) for your XML resource location.
   * **XPath:** Enter the XML path that repeats at the same level within the XML document. You can specify multiple paths in a semicolon-separated list.
   * **XML Format:** Select the XML format that you want to use. The default format is **XML**.
6. Define advanced connection settings on the **Advanced** tab. (In most cases, though, you should not need these settings.)
7. Click **Create & Test** to create your connection.

## 詳細について

<CommonDatasourceMoreInformation datasource={datasource} advancedurl={advancedurl} siteName={siteName} driverVersion={driverVersion} />
