You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When configuring the Keyrock PEP-proxy to listen to outbound v6 queries and forward them over v6 too towards a backend component this way:
Server.js file: app.listen(80, "::");
Config.js file: config.app_host = '::1’;
The PEP-proxy correctly attends the query over v6. However, when forwarding (again over v6) to the component, the service URL is not correctly provided (looks like ":" characters are misleading for that parsing process).
Traces for a ContextBroker GE as a backend component are:
400
Bad Request
service '/::1/version' not found
The problem does not happen if we configure the IPv6 component endpoint with a valid FQDN. For instance, the following one works fine in a host where /etc/hosts has the line "localhost6 ::1":
Server.js file: app.listen(80, "::");
Config.js file: config.app_host = 'localhost6’;
Thanks for your support!
The text was updated successfully, but these errors were encountered:
When configuring the Keyrock PEP-proxy to listen to outbound v6 queries and forward them over v6 too towards a backend component this way:
The PEP-proxy correctly attends the query over v6. However, when forwarding (again over v6) to the component, the service URL is not correctly provided (looks like ":" characters are misleading for that parsing process).
Traces for a ContextBroker GE as a backend component are:
400
Bad Request
The problem does not happen if we configure the IPv6 component endpoint with a valid FQDN. For instance, the following one works fine in a host where /etc/hosts has the line "localhost6 ::1":
Thanks for your support!
The text was updated successfully, but these errors were encountered: