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
to initialize custom HttpServerAuthenticationMechanism, which needs to build a separate module and deploy it, which is a overhead for me, is there a way to load my custom HttpServerAuthenticationMechanism code by just deploying my complete war file into the wildfly server without separating custom authentication code and deploying it as a separate module?
Appreciate your help.
I am using Wildfly28 & java11, maven 3.8
Thanks
Ashok.
The text was updated successfully, but these errors were encountered:
If I understand you correctly, you want to have the custom authentication code within the application. This is not possible, the design is to have an application code separate from the authentication code. The authentication code does not tend to change often so it is not usually a recurring overhead.
Just a note for next time, please use a forum for this type of question https://groups.google.com/g/wildfly as more people monitor the forum and can answer you more quickly.
Thank you!
Hi Team,
I am Implementing a custom HTTP authentication mechanism by following the below steps.
https://github.com/wildfly/quickstart/tree/main/http-custom-mechanism
but in the below we added "
"to initialize custom HttpServerAuthenticationMechanism, which needs to build a separate module and deploy it, which is a overhead for me, is there a way to load my custom HttpServerAuthenticationMechanism code by just deploying my complete war file into the wildfly server without separating custom authentication code and deploying it as a separate module?
Appreciate your help.
I am using Wildfly28 & java11, maven 3.8
Thanks
Ashok.
The text was updated successfully, but these errors were encountered: