RESTEASY003210: Could not find resource for full path: https://foo.com/auth/admin

On the journey to upgrade from v15 Wildfly to v17 Quarkus.

Have set the following in the start configuration:
–proxy edge
–auto-build
–http-relative-path=/auth/
hostname-strict=false
hostname=foo.com

However, receiving the error below – could anyone guide me to what I have missed?

2022-04-21 08:06:56,984 DEBUG [io.quarkus.vertx.http.runtime.ForwardedParser] (executor-thread-0) Recalculated absoluteURI to https://foo.com/auth/admin
2022-04-21 08:06:56,985 DEBUG [org.keycloak.services.error.KeycloakErrorHandler] (executor-thread-0) Error response 404: javax.ws.rs.NotFoundException: RESTEASY003210: Could not find resource for full path: https://foo.com/auth/admin
at org.jboss.resteasy.core.registry.SegmentNode.match(SegmentNode.java:152)
at org.jboss.resteasy.core.registry.RootNode.match(RootNode.java:74)
at org.jboss.resteasy.core.registry.RootClassNode.match(RootClassNode.java:47)
at org.jboss.resteasy.core.ResourceMethodRegistry.getResourceInvoker(ResourceMethodRegistry.java:480)

@melancholia have you resolved this?

found this important page which might have the answer: Migrating to Quarkus distribution - Keycloak

1 Like

Yes - resolved, Thank you.