# Error in running Ehrbase webservice

**URL:** https://discourse.openehr.org/t/error-in-running-ehrbase-webservice/1456
**Category:** Platform
**Tags:** ehrbase
**Created:** [12 April 2021 10:10 UTC](https://discourse.openehr.org/t/error-in-running-ehrbase-webservice/1456 "2021-04-12T10:10:54Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![M.farokhtabar](https://discourse.openehr.org/user_avatar/discourse.openehr.org/m.farokhtabar/32/1144_2.png) [@M.farokhtabar](https://discourse.openehr.org/u/M.farokhtabar)
#### Post date: [12 April 2021 10:10 UTC](https://discourse.openehr.org/t/error-in-running-ehrbase-webservice/1456/1 "2021-04-12T10:10:55Z")

</div>

Hi everyone,

I am trying to run ehrbase on windows 10 (using docker) but unfortunately I encounter the following error during the running of ehrbase webservice(**[http://localhost:8080/ehrbase/](http://localhost:8080/ehrbase/)**):

**Whitelabel Error Page**  
**This application has no explicit mapping for /error, so you are seeing this as a fallback.**  
**Mon Apr 12 10:02:50 UTC 2021**  
**There was an unexpected error (type=Not Found, status=404).**

I was wondering if you could help me to solve this problem.  
thanks.

---

<div class="post-metadata">

### Author: ![jake.smolka](https://discourse.openehr.org/user_avatar/discourse.openehr.org/jake.smolka/32/2870_2.png) [@jake.smolka](https://discourse.openehr.org/u/jake.smolka)
#### Post date: [12 April 2021 11:33 UTC](https://discourse.openehr.org/t/error-in-running-ehrbase-webservice/1456/2 "2021-04-12T11:33:49Z")

</div>

Hey Mehdi,

Thanks for trying out EHRbase!

EHRbase doesn’t have a classic web app UI, it is a backend service only. Once you got EHRbase up and running successfully you can just dive in and directly create an EHR. The easiest way might be to use cURL in a terminal:

```auto
curl --header "PREFER: return=representation" \
        --request POST \
    http://localhost:8080/ehrbase/rest/openehr/v1/ehr

```

For more infomation about that operation see [2.4. Step 3: Create an EHR — EHRbase documentation](https://ehrbase.readthedocs.io/en/latest/02_getting_started/04_create_ehr/index.html).

I hope that helps!
