As there are not other takers: a quick google didn't return anything but "error's likely on the client side, with the client aborting the page load." .
As such, I can only offer some rough generic ideas on where to look/what to try (given the lack of detail you could offer):
- To check that you can serve and read a static https page (if everything like server (incl. vhostname, ip, etc pp) and client are the same, that should be enough to that both server and client are happy wrt their certificates, if any).
- If possible, add instrumentation: some logging and warn's in preferrably both of client and whatever you happen to run in mod_perl on the server. Might be easier and faster than strace/sniffing if it's possible. In addition, also check the mod_perl section on debugging.
- Further steps would involve trying a simple client (lynx maybe or Perl's LWP) with some debugging help like strace on Unix, maybe sniff on the network (tcpdump -- you guessed it -- on Unix; what little you can as it's SSL; though some guesswork should still be possible, if you know the size of the page, that it couldn't reuse a previous connection & that you only transfer a trivial page w/o images or css).
- If you've suitable access to the server, or the cgi script, the same tricks work there as well.
- Collect and provide additional details (code scraps, above, ...) in your opening post (probably the best approach of the bunch, after checking at least the first point).
cu & HTH, Peter -- hints may be untested unless stated otherwise; use with caution & understanding.