After the upgrade, the system is trying to run a secure https page for all actions such as page editing, logins, etc. It seems to go to the correct url but then redirects to an https page and the port changes from 6080 (our Tomcat port) to 6443. Does anyone know why? Is it some security setting in jspwiki.properties?

It's in your web.xml: Look for the following block:

       <user-data-constraint>
           <transport-guarantee>CONFIDENTIAL</transport-guarantee>
       </user-data-constraint>

This states that any access to certain URLs (defined in the same section) must be done through HTTPS. You can just comment out this section to resume earlier functionality (not, of course, recommended, as that means that you are transmitting usernames and passwords in plaintext).

/Janne


_______________________________________________
This is the Jspwiki-users mailing list, in which we discuss the stable release (even-numbered, 2.4.x, 2.6.x), and user-issues. For development discussion, please join jspwiki-dev.
http://ecyrd.com/cgi-bin/mailman/listinfo/jspwiki-users
http://www.jspwiki.org/JSPWikiMailingList

Reply via email to