SSL web app under Apache

Hi all,

I’m trying to run a standalone ssl web app under Apache.

First, I would like to point out that the corresponding CGI application works regularly

I’ve configured a virtualhost:

<VirtualHost *:443>
ServerName mydomain.it
ServerAlias myserver.mydomain.it
DocumentRoot “${SRVROOT}”

ErrorLog "logs/myserver.mydomain.it-error.log"
CustomLog "logs/myserver.mydomain.it-access.log" common	
SSLEngine on
SSLCertificateFile "${SRVROOT}/conf/mydomain.it.cer"
SSLCertificateKeyFile "${SRVROOT}/conf/mydomain.it.key"	
ProxyPreserveHost on
ProxyPass "/myapptest" "http://myserver.mydomain.it:28888/"
ProxyPassReverse "/myapptest" "http://myserver.mydomain.it:28888/"

When I run https://myserver.mydomain.it/myapptest, the application seems to start, but this Xojo message (in text form) appears:

Attendere prego…
L’applicazione stata disconnessa. Riprovare pi tardi.
This application has encountered an error and cannot continue.
Some fatal error
Please describe what you were doing right before the error occurred:

can someone help me?
thank you

maybe the UnhandledException event help you in app.

Thank you, Markus.
but the standalone application starts correctly outside Apache.
It seems to me that the launch inside Apache causes something I can’t see and I don’t understand.
note that, although the title of the conversation and the examples refer to https connection, the behavior is the same for http connection.

with the same structure:

ProxyPass “/myapptest” “http://myserver.mydomain.it:9090/cgi-bin/myapp.cgi
ProxyPassReverse “/myapptest” “http://myserver.mydomain.it:9090/cgi-bin/myapp.cgi

the Xojo CGI application starts regularly, at this example address:
http://myserver.mydomain.it:9090/myapptest

P.S. I would like to leave CGI because of poor performance.