the web server on 8080, and run the "add.ss" demo. All works fine.<br>
<br>
<br>
Then I set up apache https, and proxy it to the plt web server with:<br>
<br>
RewriteEngine On<br>
RewriteRule ^(.*)$ <a href="http://localhost:8080/$1">http://localhost:8080/$1</a> [P]<br>
from a subdirectory called "plt-ws"<br>
<br>
I run <a href="https://localhost/plt-ws/servlets/examples/add.ss">https://localhost/plt-ws/servlets/examples/add.ss</a>, and it asks
for the first number, which I enter. Hitting submit sends me to:<br>
<br>
<a href="https://localhost/servlets;id18*0*19261510/examples/add.ss">https://localhost/servlets;id18*0*19261510/examples/add.ss</a> <br>
<br>
I get a 404 error cause the "plt-ws" part is missing. So I
probably need to get apache to add a ""plt-ws" to all returned
addresses.<br>
<br>
<br>
Then I try manually going to <br>
<br>
<a href="https://localhost/plt-ws/servlets;id18*0*19261510/examples/add.ss">https://localhost/plt-ws/servlets;id18*0*19261510/examples/add.ss</a>, and I get the less expected error:<br>
<br>
Error 500<br>
<br>
The servlet terminated abnormally.<br>
Please ask the author to fix the problem based on the details in the<br>
Web server's log file.<br>
<br>
Powered by PLT<br>
<br>
<br>
and the webserver puts on stdout:<br>
<br>
Servlet exception:<br>
extract-binding/single: number not found in ()<br>
<br>
<br>
Anyone know what's happening here?<br>
<br>
Corey<br>
<br>
(same happens when proxying through appache as http, so it should be unrelated to SSL)<br>
<br clear="all">-- <br>((lambda (y) (y y)) (lambda (y) (y y)))