How to increase heap memory for WildFly?
Just edit bin/standalone.conf, look for the first occurrence of JAVA_OPTS and change the -Xmx option according to your needs.
Just edit bin/standalone.conf, look for the first occurrence of JAVA_OPTS and change the -Xmx option according to your needs.
JBoss EAP is the name for the Java EE application server that Red Hat produces and supports. The latest version is 6 at the moment and this implements Java EE 6. JBoss AS/WildFly is the name for the community project that you can test. This community project will eventually become JBoss EAP. “WildFly” is just … Read more
Investigating the problem I have noticed that there is some mess with cookies and referers in the auth request. Currently wildfly authentication will work if you change webapplication context to the Root Context: <server name=”default-server” default-host=”webapp”> <http-listener name=”default” socket-binding=”http”/> <host name=”default-host” alias=”localhost” default-web-module=”sso.war”/> </server> After restarting wildfly and clearing cookies all should work as expected