-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Contact Details
Describe the bug
After installing using docker-compose.yaml, the server fails to correctly parse the element format of the loaded AASX file. As a result, PUT, POST, and other commands cannot be executed.
{
"Messages": [
{
"Code": "InternalServerError",
"CorrelationId": null,
"MessageType": "Error",
"Text": "SQLite Error 1: \u0027no such table: SMSets\u0027.",
"Timestamp": "11/17/2025 15:10:55"
}
]
}
To reproduce
-
use docker-compose.yaml with the following content to install aasx server
services:
aasx-server:
container_name: aasx-server
image: docker.io/adminshellio/aasx-server-blazor-for-demo:latest
restart: unless-stopped
ports:- 5001:5001
environment: - Kestrel__Endpoints__Http__Url=http://*:5001
volumes: - ./aasxs:/AasxServerBlazor/aasxs
#command: --with-db --no-security --external-blazor http://localhost:5001
command: --with-db --start-index 0 --save-temp 10 --no-security --data-path /AasxServerBlazor/aasxs --external-blazor http://localhost:5001
- 5001:5001
-
cmd run: docker-compose up to start the container:
-
- Once the AASX file is successfully loaded, open your browser and go to:
http://localhost:5001
- Once the AASX file is successfully loaded, open your browser and go to:
- In the web interface, select a Property element and click its URL to view the details.
Screenshots
Expected Behaviour
A clear and concise description of what you expected to happen.
Version
No response
Operating System
Win
Relevant log output
{
"Messages": [
{
"Code": "InternalServerError",
"CorrelationId": null,
"MessageType": "Error",
"Text": "SQLite Error 1: \u0027no such table: SMSets\u0027.",
"Timestamp": "11/17/2025 15:10:55"
}
]
}Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working