-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding AASX fails on Windows #128
Comments
Can you post the connector configuration file here? |
|
I am also having the same problem INFO 2024-08-08T13:39:55.7680431 [EDC4AAS Extension] Booting up AAS service given AAS model path (C:\Users\moh51381\test.aasx) and service port (8080) ... |
I think the problem here is that port 8080 is already used |
It seems when trying to internally start a FA³ST service the extension does not register its self-signed certificate so it cannot communicate with it. I will have a look at this, until then I recommend starting a separate FA³ST service and registering it via URL |
The issue is again with Windows, which does not accept Until I update the extension, you could update the following line before building the extension, then it should work: In private static final String LOCALHOST_URL = "https://localhost:"; should be changed to: private static final String LOCALHOST_URL = System.getProperty("os.name").contains("Windows") ?
"https://127.0.0.1:" : "https://localhost:"; |
The Postman request for adding model files seems to encounter a SSL error (no Docker, default provider)
The text was updated successfully, but these errors were encountered: