HI,
I installed Xporter for JIRA and it is working fine exporting a single issue. However when I try to do bulk export I alwys receive the following error message even with the sample template included.
An error occurred while exporting your issues. Please contact your JIRA administration to check the server log for additional information.
This is what I can see in the log file.
/secure/views/bulkedit/BulkExportDetails!perform.jspa [xpandit.jiraxporter.action.BulkExport] Error while performing BulkExportOperation
javax.net.ssl.SSLProtocolException: handshake alert: unrecognized_name
at sun.security.ssl.ClientHandshaker.handshakeAlert(Unknown Source)
at sun.security.ssl.SSLSocketImpl.recvAlert(Unknown Source)
at sun.security.ssl.SSLSocketImpl.readRecord(Unknown Source)
at sun.security.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)
at sun.security.ssl.SSLSocketImpl.writeRecord(Unknown Source)
at sun.security.ssl.AppOutputStream.write(Unknown Source)
at java.io.BufferedOutputStream.flushBuffer(Unknown Source)
at java.io.BufferedOutputStream.flush(Unknown Source)
I wonder if someone can give me some clues how to resolve this.
This issue is resolved with a great help from the Xporter support .
Java 7 introduced SNI support which is enabled by default. I have found out that certain misconfigured servers send an "Unrecognized Name" warning in the SSL handshake which is ignored by most clients... except for Java.
Adding
-Djsse.enableSNIExtension=false
to the startup options of JIRA resolved the issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.