RE: Page Cannot be Displayed

2004-03-01 Thread Skip Klobucher
This would be related to the IIS web server connector.  Port 80 requests use
the connector, the other requests (the ones going to port 8000 and 8001,
that succeed) are using the internal JRun web server, not the connector.  I
would turn on verbose connector logging to start collecting clues as to
what's happening.  Go into your inetpub\scripts folder and edit the contents
of the jrun.ini file:

 
jrun.rootdir=C:/JRun3.1-69820
jvmlist=default
verbose=true
scriptpath=/scripts/jrun.dll
#errorurl=

 
Change the "verbose" property to true and restart IIS.  You will start to
log much more detailed information about requests and responses in your
daily IIS log file (also located in inetpub\scripts).  Hope this helps,
thanks.

 
Skip

-Original Message-
From: Raymond Lim (WEBSE) [mailto:[EMAIL PROTECTED]
Sent: Saturday, February 28, 2004 10:15 AM
To: JRun-Talk
Subject: Page Cannot be Displayed

Hi,

I am currently facing an issue with running JRun 3.1.60714 on IIS 5.0 on
Windows 2000 Server. The problem is described as follows:

The problem encountered is related to the inability to connect to the hosted
pages.

The client will see the following error message displayed in Internet
Explorer:

"The Page Cannot be Displayed"

This occurs even if the web site is accessed from the server machine, i.e.
through the use of the "localhost" address.

We have noted the following:

1. The JRun Default Server Service and World Wide Web Publishing Service are
runnning.
2. Access to "http://localhost" returns "The Page Cannot be Displayed"
3. Access to "http://localhost:8000" displays the JRun Admin site properly.
4. Access to "http://localhost:8100/demo" displays the demo page properly.
5. Access to "http://localhost/help.gif", which is a simple image hosted on
IIS, returns "The Page Cannot be Displayed"

We also tried testing connectivity to the ports by using Telnet.

1. "telnet localhost 80" returns "Could not open connection to host, on port
80: connect failed.
2. "telnet localhost 8000" results in an open connection.
3. "telnet localhost 8100" results in an open connection.
4. "telnet localhost " where  is the admin web site for IIS, results
in an open connection

At the time, we note the number of concurrent connections to the web server
to be above 50. 

After restarting the JRun Default Server service, the web site becomes
accessible. All tests that resulted in "The Page Cannot be Displayed" now
shows the correct page.

Urgent help is needed and any suggestions or recommendations are greatly
appreciated. Thanks.

Regards,
Raymond 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Page Cannot be Displayed

2004-02-28 Thread Raymond Lim (WEBSE)
Hi,

 
I am currently facing an issue with running JRun 3.1.60714 on IIS 5.0 on
Windows 2000 Server. The problem is described as follows:

 
The problem encountered is related to the inability to connect to the hosted
pages.

 
The client will see the following error message displayed in Internet
Explorer:

 
"The Page Cannot be Displayed"

 
This occurs even if the web site is accessed from the server machine, i.e.
through the use of the "localhost" address.

 
We have noted the following:

 
1. The JRun Default Server Service and World Wide Web Publishing Service are
runnning.
2. Access to "http://localhost" returns "The Page Cannot be Displayed"
3. Access to "http://localhost:8000" displays the JRun Admin site properly.
4. Access to "http://localhost:8100/demo" displays the demo page properly.
5. Access to "http://localhost/help.gif", which is a simple image hosted on
IIS, returns "The Page Cannot be Displayed"

We also tried testing connectivity to the ports by using Telnet.

 
1. "telnet localhost 80" returns "Could not open connection to host, on port
80: connect failed.
2. "telnet localhost 8000" results in an open connection.
3. "telnet localhost 8100" results in an open connection.
4. "telnet localhost " where  is the admin web site for IIS, results
in an open connection

At the time, we note the number of concurrent connections to the web server
to be above 50. 

After restarting the JRun Default Server service, the web site becomes
accessible. All tests that resulted in "The Page Cannot be Displayed" now
shows the correct page.

 
Urgent help is needed and any suggestions or recommendations are greatly
appreciated. Thanks.

Regards,
Raymond
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Page cannot be displayed

2001-11-03 Thread travis

Is there some string getting appended to the URL?  Like a jsessionid=12093u21093812193 
king of thing?

Travis

 Original Message 
From: Arul <[EMAIL PROTECTED]>
Sent: 2001-11-02 23:19:52.0
To: JRun-Talk <[EMAIL PROTECTED]>
Subject: Page cannot be displayed

Hi 

I had a peculiar problem with Jrun .We have a live site and for some 
specific users it throws up an error "Page Cannot be displayed"

It's not happenning to all , all the time .For a specific set of Users 
it throws it occasionally.

What could be the problem.??

For the users who get this error , in their browsers the cookies are set 
properly and they are not behind a firewall.

The Problem is like this.They could see the Homepage(html) and they 
could click on the JSP page (login.jsp) and when they try to submit , 
the next instant they get this error.Is it cause of Get /Post problem in 
Jrun

we donot use any external web servers.

and why does this happen with Jrun. we use Jrun3.0 with SP2

-Arul


~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Page cannot be displayed

2001-11-03 Thread Ben Groeneveld

Arul, this might be due to buffering.  This went away for me when I used 
Apache as the external web server, and for the JRun web server when I 
manually set the buffer size, like so in the jsp:

<%@ page 
 buffer="32kb"
 autoFlush="true"
 language="java"
 import="allaire.taglib.*, java.sql.*" %>

Hope that helps, BenG.

Arul wrote:

>Hi 
>
>I had a peculiar problem with Jrun .We have a live site and for some 
>specific users it throws up an error "Page Cannot be displayed"
>
>It's not happenning to all , all the time .For a specific set of Users 
>it throws it occasionally.
>
>What could be the problem.??
>
>For the users who get this error , in their browsers the cookies are set 
>properly and they are not behind a firewall.
>
>The Problem is like this.They could see the Homepage(html) and they 
>could click on the JSP page (login.jsp) and when they try to submit , 
>the next instant they get this error.Is it cause of Get /Post problem in 
>Jrun
>
>we donot use any external web servers.
>
>and why does this happen with Jrun. we use Jrun3.0 with SP2
>
>-Arul
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Page cannot be displayed

2001-11-02 Thread Arul

Hi 

I had a peculiar problem with Jrun .We have a live site and for some 
specific users it throws up an error "Page Cannot be displayed"

It's not happenning to all , all the time .For a specific set of Users 
it throws it occasionally.

What could be the problem.??

For the users who get this error , in their browsers the cookies are set 
properly and they are not behind a firewall.

The Problem is like this.They could see the Homepage(html) and they 
could click on the JSP page (login.jsp) and when they try to submit , 
the next instant they get this error.Is it cause of Get /Post problem in 
Jrun

we donot use any external web servers.

and why does this happen with Jrun. we use Jrun3.0 with SP2

-Arul

~~
Get the mailserver that powers this list at http://www.coolfusion.com
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists