├── .dockerignore ├── .github └── workflows │ ├── build_containers.yml │ ├── cleanup_containers.yml │ └── git-mirror.yml ├── .gitignore ├── .gitmodules ├── .gitpod.yml ├── Dockerfile ├── LICENSE ├── README.md ├── doc └── images │ ├── Model-View-IJT.png │ └── Model-View-ST.png ├── docker-compose.yml ├── nodeset ├── Opc.Ua.Ijt.Tightening.NodeSet2.xml ├── Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xml ├── Opc.Ua.PlasticsRubber.IMM2MES.NodeSet2.xml ├── Opc.Ua.Scales.NodeSet2.xml ├── Opc.Ua.SurfaceTechnology.NodeSet2.xml └── Opc.Ua.Woodworking.NodeSet2.xml ├── renovate.json ├── requirements.txt ├── run.sh └── src ├── data ├── Readme.md ├── data.csv └── datasets │ ├── ApplicationUnits.csv │ ├── CoatingLine.csv │ ├── Conveyor.csv │ ├── DemoMaterialSupplySystem.csv │ ├── DosingSystem.csv │ ├── MaterialSupplyRoom.csv │ ├── MaterialSupplySystem1ComponentA.csv │ ├── MaterialSupplySystem1ComponentB.csv │ ├── Oven.csv │ ├── PaintBooth.csv │ └── Pretreatment.csv ├── datavalue_parser.py ├── importer.py ├── models ├── CoatingLine-example.xml ├── ConveyorGunsAxes.xml ├── Materialsupplyroom.xml ├── Opc.Ua.Eumabois.Nodeset2.xml ├── Pretreatment.xml ├── WWM_Basic.xml ├── WWM_Full.xml ├── dosingsystem.xml ├── ijt_tightening_server.xml ├── opcroboticstestserver.xml ├── ovenbooth.xml └── umati_opc40077_sample_instance.xml └── server.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/build_containers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/.github/workflows/build_containers.yml -------------------------------------------------------------------------------- /.github/workflows/cleanup_containers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/.github/workflows/cleanup_containers.yml -------------------------------------------------------------------------------- /.github/workflows/git-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/.github/workflows/git-mirror.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/README.md -------------------------------------------------------------------------------- /doc/images/Model-View-IJT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/doc/images/Model-View-IJT.png -------------------------------------------------------------------------------- /doc/images/Model-View-ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/doc/images/Model-View-ST.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nodeset/Opc.Ua.Ijt.Tightening.NodeSet2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/nodeset/Opc.Ua.Ijt.Tightening.NodeSet2.xml -------------------------------------------------------------------------------- /nodeset/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/nodeset/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xml -------------------------------------------------------------------------------- /nodeset/Opc.Ua.PlasticsRubber.IMM2MES.NodeSet2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/nodeset/Opc.Ua.PlasticsRubber.IMM2MES.NodeSet2.xml -------------------------------------------------------------------------------- /nodeset/Opc.Ua.Scales.NodeSet2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/nodeset/Opc.Ua.Scales.NodeSet2.xml -------------------------------------------------------------------------------- /nodeset/Opc.Ua.SurfaceTechnology.NodeSet2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/nodeset/Opc.Ua.SurfaceTechnology.NodeSet2.xml -------------------------------------------------------------------------------- /nodeset/Opc.Ua.Woodworking.NodeSet2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/nodeset/Opc.Ua.Woodworking.NodeSet2.xml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/run.sh -------------------------------------------------------------------------------- /src/data/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/Readme.md -------------------------------------------------------------------------------- /src/data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/data.csv -------------------------------------------------------------------------------- /src/data/datasets/ApplicationUnits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/datasets/ApplicationUnits.csv -------------------------------------------------------------------------------- /src/data/datasets/CoatingLine.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/datasets/CoatingLine.csv -------------------------------------------------------------------------------- /src/data/datasets/Conveyor.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/datasets/Conveyor.csv -------------------------------------------------------------------------------- /src/data/datasets/DemoMaterialSupplySystem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/datasets/DemoMaterialSupplySystem.csv -------------------------------------------------------------------------------- /src/data/datasets/DosingSystem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/datasets/DosingSystem.csv -------------------------------------------------------------------------------- /src/data/datasets/MaterialSupplyRoom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/datasets/MaterialSupplyRoom.csv -------------------------------------------------------------------------------- /src/data/datasets/MaterialSupplySystem1ComponentA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/datasets/MaterialSupplySystem1ComponentA.csv -------------------------------------------------------------------------------- /src/data/datasets/MaterialSupplySystem1ComponentB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/datasets/MaterialSupplySystem1ComponentB.csv -------------------------------------------------------------------------------- /src/data/datasets/Oven.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/datasets/Oven.csv -------------------------------------------------------------------------------- /src/data/datasets/PaintBooth.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/datasets/PaintBooth.csv -------------------------------------------------------------------------------- /src/data/datasets/Pretreatment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/data/datasets/Pretreatment.csv -------------------------------------------------------------------------------- /src/datavalue_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/datavalue_parser.py -------------------------------------------------------------------------------- /src/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/importer.py -------------------------------------------------------------------------------- /src/models/CoatingLine-example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/CoatingLine-example.xml -------------------------------------------------------------------------------- /src/models/ConveyorGunsAxes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/ConveyorGunsAxes.xml -------------------------------------------------------------------------------- /src/models/Materialsupplyroom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/Materialsupplyroom.xml -------------------------------------------------------------------------------- /src/models/Opc.Ua.Eumabois.Nodeset2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/Opc.Ua.Eumabois.Nodeset2.xml -------------------------------------------------------------------------------- /src/models/Pretreatment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/Pretreatment.xml -------------------------------------------------------------------------------- /src/models/WWM_Basic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/WWM_Basic.xml -------------------------------------------------------------------------------- /src/models/WWM_Full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/WWM_Full.xml -------------------------------------------------------------------------------- /src/models/dosingsystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/dosingsystem.xml -------------------------------------------------------------------------------- /src/models/ijt_tightening_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/ijt_tightening_server.xml -------------------------------------------------------------------------------- /src/models/opcroboticstestserver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/opcroboticstestserver.xml -------------------------------------------------------------------------------- /src/models/ovenbooth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/ovenbooth.xml -------------------------------------------------------------------------------- /src/models/umati_opc40077_sample_instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/models/umati_opc40077_sample_instance.xml -------------------------------------------------------------------------------- /src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umati/Sample-Server-asyncio/HEAD/src/server.py --------------------------------------------------------------------------------