Our test instance (6.0.8) works non-SSL, but our prod version (6.0.8) doesn't work on SSL.
It gives a classnotfoundexception to the user.
How can the applet be made to work under SSL?
In \conf\web.xml it is neccessary that you add this code below. It is important for attachments. I am running JIRA over SSL and all is fine:
<security-constraint> <web-resource-collection> <web-resource-name>all-except-attachments</web-resource-name> <url-pattern>*.jsp</url-pattern> <url-pattern>*.jspa</url-pattern> <url-pattern>/browse/*</url-pattern> </web-resource-collection> <user-data-constraint> <transport-guarantee>CONFIDENTIAL</transport-guarantee> </user-data-constraint> </security-constraint>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That XML code didn't solve our problem, and it actually caused some kind of authentication issue so we had to revert it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jason,
Unfortunatelly I can see no logs attached. Could you consider filling in the customer support request for the issue?
Thank you.
--
Cheers, Ignat.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jason.
Could you provide the exact stacktrace of an error? What JDK version is installed on the client machine?
By the way, have you tried the Attach Image for JIRA which is free? The plugin allows to get rid of applet in Chrome and Firefox.
--
Cheers,
Ignat.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Installing that plugin seemed to hang our JIRA service, requiring a restart (yikes), but it was fine after a restart.
The stack trace and JRE info is attached.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.