Wiki source code of Connecteur Sharepoint
Last modified by Aurelie Bertrand on 2026/01/12 15:14
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{ddtoc/}} | ||
| 2 | |||
| 3 | ---- | ||
| 4 | |||
| 5 | (% class="box warningmessage" %) | ||
| 6 | ((( | ||
| 7 | DigDash's Sharepoint connector only supports NTLM authentication. | ||
| 8 | ))) | ||
| 9 | |||
| 10 | The SharePoint Connector in DigDash is specifically designed to connect to SharePoint Lists - structured data tables in SharePoint, which function much like databases (rows and columns). | ||
| 11 | |||
| 12 | * It does not connect to, download or upload files to SharePoint document libraries. | ||
| 13 | * It cannot read Word, Excel or PDF files stored in SharePoint - only the data contained in SharePoint lists. | ||
| 14 | |||
| 15 | Visit [[https:~~/~~/support.microsoft.com/fr-fr/office/qu-est-ce-qu-une-liste-dans-microsoft-365-93262a88-20ad-4edc-8410-b6909b2f59a5>>https://support.microsoft.com/fr-fr/office/qu-est-ce-qu-une-liste-dans-microsoft-365-93262a88-20ad-4edc-8410-b6909b2f59a5]] for more details on lists. | ||
| 16 | |||
| 17 | = Requirements = | ||
| 18 | |||
| 19 | * A Sharepoint server with NTLM access. | ||
| 20 | |||
| 21 | = Enabling the data source = | ||
| 22 | |||
| 23 | The Sharepoint data source is disabled by default. To enable the data source, you need to modify the following file to uncomment the Sharepoint part: | ||
| 24 | **apache-tomcat/webapps/ddenterpriseapi/WEB-INF/classes/resources/config/tabledsrepository.xml** | ||
| 25 | |||
| 26 | {{code language="xml" cssClass="notranslate"}} | ||
| 27 | <!-- <TableDataSource id="SPDS" name="$ui.SP.Popup" shortName="$ui.SP.Short" description="$ui.SP.DSDesc" iconBaseName="ds-sharepoint.png" manufacturer="DigDash" | ||
| 28 | class="com.digdash.tabledatasources.SharePointDataSource" | ||
| 29 | uiclass="com.digdash.userinterface.dialogs.SharePointPreviewPanel" | ||
| 30 | categ="$ui.DsCategDB"> | ||
| 31 | <properties> | ||
| 32 | </properties> | ||
| 33 | </TableDataSource> | ||
| 34 | --> | ||
| 35 | {{/code}} | ||
| 36 | |||
| 37 | should become : | ||
| 38 | |||
| 39 | {{code language="xml" cssClass="notranslate"}} | ||
| 40 | <TableDataSource id="SPDS" name="$ui.SP.Popup" shortName="$ui.SP.Short" description="$ui.SP.DSDesc" iconBaseName="ds-sharepoint.png" manufacturer="DigDash" | ||
| 41 | class="com.digdash.tabledatasources.SharePointDataSource" | ||
| 42 | uiclass="com.digdash.userinterface.dialogs.SharePointPreviewPanel" | ||
| 43 | categ="$ui.DsCategDB"> | ||
| 44 | <properties> | ||
| 45 | </properties> | ||
| 46 | </TableDataSource> | ||
| 47 | {{/code}} | ||
| 48 | |||
| 49 | = Creating a Sharepoint data source = | ||
| 50 | |||
| 51 | 1. Select the Sharepoint (SP) data source from the list of data sources in the Studio | ||
| 52 | 1. Enter the URL of your Sharepoint server | ||
| 53 | 1. Configure the fields to be used. Then click on **Reload**. | ||
| 54 | 1. Check your data in the **Preview** section. | ||
| 55 | 1. Click **Next** then complete the source configuration by specifying a name and configuring the additional options common to all DigDash data sources. |