Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

BaSyx / Introductory Examples / Java / Step 8

< BaSyx ‎ | Introductory Examples
Revision as of 03:34, 14 September 2022 by Jannik.Fried.iese.fraunhofer.de (Talk | contribs) (Explanation of how to use Authorization with the OTS components)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Restricting access via Authorization

To prevent access from unauthorized requests, you can enable authorization via OAuth2.

In order to activate you have to set aas.authorization to Enabled in your aas.properties. There are several other optional Options to set, a complete list can be found here

# ###########################
# Authorization
# ###########################
# Enables Authorization via OAuth2, disabled by default

aas.authorization=Enabled
aas.authorization.strategy.jwtBearerTokenAuthenticationConfigurationProvider.keycloak.serverUrl="http://localhost:9006/auth"
#aas.authorization=Disabled

Now, do the same configuration for the registry.properties in order to activate it for the registry aswell.

After you enabled Authorization in you property files, you can set up the new Docker Container.

Note:You may have to change the path (C:\tmp\aas | C:\tmp\registry) according to the location of your config files.

AAS Server Component Command:

docker run -v C:\tmp\aas:/usr/share/config --name=aas -p 8081:4001 eclipsebasyx/aas-server:1.2.0

Registry Component Command:

docker run -v C:\tmp\registry:/usr/share/config --name=registry -p 8082:4000 eclipsebasyx/aas-registry:1.2.0

Now, when you try to access the AAS Server via Postman, and not send a Authorization Header, you should get a Code 500 saying:

500AuthNotFound.png

In order to gain access, you have to generate a Token on your Keycloak Server and put it in the Authorization Header in your request.

HeaderInformation.png

Thats it! You now have a protected AAS Server and Registry.

Back to the top