Kbase P119292: Getting This page cannot be displayed when running WebSpeed application
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  05/10/2006 |
|
Status: Unverified
SYMPTOM(s):
Getting This page cannot be displayed when running WebSpeed application
The Application run fine from the same machine where the WebSpeed broker and the web server are
The error displays when the application is run from another machine's IE browser
The WebSpeed page is run off of a static HTML Form
The form ACTION value references the full URL of the WebSpeed program as:
<FORM action="http://localhost/scripts/cgiip.exe/WService=wsbroker1/hello.html" method="post">
CAUSE:
The use of the *localhost* for the web server reference on the URL on the FORM's Action value cause the web server to be not found from another machine. When used *localhost*, the client machine is referenced as the local web server in this case. Therefore, the error is accepted.
FIX:
Specify the web server name or IP address instead of the localhost in the URL as:
<FORM action="http://mywebserver/scripts/cgiip.exe/WService=wsbroker1/hello.html" method="post">