yes, the current (1.2.2) version does indeed have Sameorigin, meaning that you would have to use a proxy server such that everything is running on the same domain.
The cors filter is probably not going to help, cause it's being set in the Spring SecurityConfiguration.
To solve the issue, we'd probably have to allow for configuration of the X-Frame options, but we've had some security issues with that before … which is why we set it to sameorigin.
it seems the iframe source want to load the "https://localhost/activiti-app/" make sure you configure the proxy pass with SSL
you have to load: mod_proxy, mod_ssl and mod_proxy_http and then define the ProxyPass <blockcode> <VirtualHost *:443> SSLEngine On SSLProxyEngine On ProxyRequests Off SSLCertificateFile /etc/httpd/certs/yourCertificate.crt SSLCertificateKeyFile /etc/httpd/certs/yourKey.key ProxyPass /activiti-app http://localhost:8080/activiti-app ProxyPassReverse /activiti-app http://localhost:8080/activiti-app </VirtualHost> </blockcode>
Maybe you already did that but this is the first thing I have in mind considering the problem.