Can't get ssl redirection to work properly Posted by: Stefan Nilsson on July 04, 2005 @ 09:21 AM Hi!
I am running Jboss 4.0.1 and I have an application.ear called pds running on it. To access the application you simple write "http://adress:8080/pds" Now I wanted to enable ssl on the webapp.war in the application so I changed the server.xml and web.xml and created a keystore and everything. I redirect from "8080" to "8443" and everything works as long as do like this. "https://adress:8443/pds" - works!! "http://adress:8080/pds/login.jsp" - works! get redirected to "https://adress:8443/pds/xxxxx" "http://adress:8080/pds" - doesn´t work I get a no page found error. I really need the the old url "http://adress:8080/pds" to be redirected to "https://adress:8443/pds " Any suggestions?? Below follows some relevant sections from my server.xml and web.xml | ======= server.xml ============== | | <Connector | port = "8080" | address = "${jboss.bind.address}" | maxThreads = "150" | minSpareThreads = "25" | maxSpareThreads = "75" | enableLookups = "false" | redirectPort = "8443" | acceptCount = "100" | connectionTimeout = "20000" | disableUploadTimeout = "true"/> | | <Connector | port = "8443" | address = "${jboss.bind.address}" | maxThreads = "100" | minSpareThreads = "5" | maxSpareThreads = "15" | scheme = "https" | secure = "true" | clientAuth = "false" | keystoreFile = "./keystore" | keystorePass = "secret" | sslProtocol = "TLS"/> | | | =============== web.xml ===================== | <security-constraint> | <display-name>Security for Julius PDS</display-name> | <web-resource-collection> | <web-resource-name>Julius web Security</web-resource-name> | <description>Redirect all to SSL</description> | <url-pattern>/*</url-pattern> | </web-resource-collection> | <user-data-constraint> | <description>Protection should be CONFIDENTIAL</description> | <transport-guarantee>CONFIDENTIAL</transport-guarantee> | </user-data-constraint> | </security-constraint> | | | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3883613#3883613 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3883613 ------------------------------------------------------- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get up to speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id492&op=click _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
