> For the complete documentation index, see [llms.txt](https://onestopconcept.gitbook.io/open-endpoints/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://onestopconcept.gitbook.io/open-endpoints/configuration/data-source-transformation/load-data-from-a-local-xml-file.md).

# Load Data From a Local XML File

In contrast to content loaded from the internet, XML already existing within the application does not require to be loaded each time. This makes it a good choice for large files. It is possible to use XML files with more than 100,000 lines of content without causing any performance issues. In general, the limiting factor is the performance of the XSLT transformation rather than the size of the data source.

You can place such files under the the `xml-from-application` directory within the application. You can load the content of this file into the data-source:

```xml
<!-- Data source definition -->
<data-source>
    <xml-from-application
       file="path-to-xml-file-in-xml-from-appication-directory"/>
</data-source>
```

You can use placeholders to fill in endpoint parameter values into the file attribute:

```xml
<!-- Data source definition -->
<data-source>
  <xml-from-application file="${some-parameter}.xml"/>
</data-source>
```

If the file can not be found, an error will be raised. To avoid that, add an attribute `ignore-if-not-found="true"`. The data-source in this case will look like if the content was not requested at all.

```xml
<!-- Data source definition -->
<data-source>
    <xml-from-application file="${some-parameter}.xml"
                          ignore-if-not-found="true"/>
</data-source>
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://onestopconcept.gitbook.io/open-endpoints/configuration/data-source-transformation/load-data-from-a-local-xml-file.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
