Hi! how are you all? I installed Jetspeed in a Tomcat server, and made Tomcat use SSL so all the data that flows between the client and Jetspeed is encripted (for security reasons).
To access Jetspeed using SSL I use this URL https://localhost:8443/jetexpress/portal/ instead of http://localhost:8080/jetexpress/portal/ Loggin works perfectly, the problem comes when in JSP I use the <portlet:actionURL> tag. The issue is that it adds the right URL to the page, but with "http" instead of "https", making the client get into an unsafe hppt page, when he was in an https secure page. So, for example, I have this JSP form action: <form action="<portlet:actionURL><portlet:param name="COMMAND" value="SOAPREQUEST"/></portlet:actionURL>" method="post"> the tag is then replaced with this URL: <form action="http://localhost:8443/jetexpress/portal/_ns:YnRlbXBsYXRlLXRvcDJfX3BhZ2UtdGVtcGxhdGVfX2xhbmRpbmctMl9fUC0xMjkyMzI0ZDcyMy0xMDAwMHxlQ09NTUFORD0xPVNPQVBSRVFVRVNU/landing.psml" method="post"> Instead of <form action="https://localhost:8443/jetexpress/portal/_ns:YnRlbXBsYXRlLXRvcDJfX3BhZ2UtdGVtcGxhdGVfX2xhbmRpbmctMl9fUC0xMjkyMzI0ZDcyMy0xMDAwMHxlQ09NTUFORD0xPVNPQVBSRVFVRVNU/landing.psml" method="post"> The "s" of https is the only thing that needs to be changed, so that the client don't end up in an unsafe page. If I add the "s", it works perfectly. Is it possible to configure this so I don't have to have to modify every action tag around? I would really appreciate if you can point me in the right direction. Thanks in advance for your time! Horacio A Antonelli -- View this message in context: http://old.nabble.com/%3Cportlet%3AactionURL%3E-SSL-Problem-tp28960265p28960265.html Sent from the Jetspeed - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
