Title: Message
Hi
 
I have found something.
All the aspx pages in my app work, except for one.
In this page many functions work (do postback and perform some action) but one funciotn, that performs a serach against a db, and returns the results to the browser in this same page does not work sometimes.
When the error occurs all other aspx pages in the app stop working, and in the apache access.log the new requests have a 302 code.
 
127.0.0.1 - - [03/Feb/2005:18:23:37 -0600] "GET /RSEREST/MainSearch.aspx HTTP/1.1" 200 46678
127.0.0.1 - - [03/Feb/2005:18:23:39 -0600] "GET /RSEREST/scripts/cb.js HTTP/1.1" 200 5384
127.0.0.1 - - [03/Feb/2005:18:23:39 -0600] "GET /RSEREST/scripts/ipi.js HTTP/1.1" 200 2854
127.0.0.1 - - [03/Feb/2005:18:23:39 -0600] "GET /RSEREST/images/Search16.gif HTTP/1.1" 200 143
127.0.0.1 - - [03/Feb/2005:18:23:40 -0600] "GET /favicon.ico HTTP/1.1" 404 301
127.0.0.1 - - [03/Feb/2005:18:23:41 -0600] "GET /favicon.ico HTTP/1.1" 404 301
127.0.0.1 - - [03/Feb/2005:18:23:42 -0600] "POST /RSEREST/MainSearch.aspx HTTP/1.1" 200 50271        <-----First postback works ok
127.0.0.1 - - [03/Feb/2005:18:23:44 -0600] "GET /favicon.ico HTTP/1.1" 404 301                                        <-----What does this mean? What is the favicon.ico?
127.0.0.1 - - [03/Feb/2005:18:23:44 -0600] "GET /favicon.ico HTTP/1.1" 404 301
127.0.0.1 - - [03/Feb/2005:18:23:46 -0600] "POST /RSEREST/MainSearch.aspx HTTP/1.1" 200 52691        <----Second postback works ok
127.0.0.1 - - [03/Feb/2005:18:23:48 -0600] "GET /favicon.ico HTTP/1.1" 404 301
127.0.0.1 - - [03/Feb/2005:18:23:48 -0600] "GET /favicon.ico HTTP/1.1" 404 301
127.0.0.1 - - [03/Feb/2005:18:23:49 -0600] "POST /RSEREST/MainSearch.aspx HTTP/1.1" 200 50483        <----OK
127.0.0.1 - - [03/Feb/2005:18:23:50 -0600] "GET /favicon.ico HTTP/1.1" 404 301
127.0.0.1 - - [03/Feb/2005:18:23:50 -0600] "GET /favicon.ico HTTP/1.1" 404 301
127.0.0.1 - - [03/Feb/2005:18:23:51 -0600] "POST /RSEREST/MainSearch.aspx HTTP/1.1" 200 47559        <----ok
127.0.0.1 - - [03/Feb/2005:18:23:53 -0600] "GET /favicon.ico HTTP/1.1" 404 301
127.0.0.1 - - [03/Feb/2005:18:23:53 -0600] "GET /favicon.ico HTTP/1.1" 404 301
127.0.0.1 - - [03/Feb/2005:18:23:55 -0600] "POST /RSEREST/MainSearch.aspx HTTP/1.1" 200 50611        <----ok
127.0.0.1 - - [03/Feb/2005:18:23:57 -0600] "GET /favicon.ico HTTP/1.1" 404 301
127.0.0.1 - - [03/Feb/2005:18:23:57 -0600] "GET /favicon.ico HTTP/1.1" 404 301
127.0.0.1 - - [03/Feb/2005:19:18:44 -0600] "POST /RSEREST/MainSearch.aspx HTTP/1.1" 302 175            <----Client performa a post, but after waitning 5+ minutes this entry is added. From now on, all get/post for any aspx page does not have a response from the server
127.0.0.1 - - [03/Feb/2005:19:31:03 -0600] "POST /RSEREST/MainSearch.aspx HTTP/1.1" 302 175
127.0.0.1 - - [03/Feb/2005:19:31:11 -0600] "GET /RSEREST/HelpRest.aspx HTTP/1.1" 302 173
127.0.0.1 - - [03/Feb/2005:19:31:51 -0600] "POST /RSEREST/MainSearch.aspx HTTP/1.1" 302 175
When the code is 302 the browser recieves the following response:
HTTP/1.1 302 Found
Date: Fri, 04 Feb 2005 01:45:20 GMT
Server: Apache/2.0.52 (Win32) mod_aspdotnet/2.0
X-AspNet-Version: 1.1.4322
Location: /RSEREST/login.aspx?ReturnUrl=%2fRSEREST%2fOptions.aspx
Cache-Control: private
Content-Length: 172
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
Content-Type: text/html; charset=utf-8
 
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href=''>here</a>.</h2>
</body></html>
In the browser:

Object moved to here.

 
Any help will be apreciated.
 
Luis
 
 
 
-----Original Message-----
From: Luis Fco [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 02, 2005 5:02 PM
To: [EMAIL PROTECTED]
Subject: [cli-users] Problem

Hello

I have an asp.net application that runs ok, all the pages except one. In this page the users can enter a search criteria and the same page in the postback returns the results. Sometimes the page works ok, for example serach for "john" returns the results ok. But sometimes when the user click Search, with the same search criteria (I'am sure that the app is ok, because it runs smoothly on IIS), and the page is posted to the server, the server does not responds, and a "The page cannot be displayed" error, after waiting very logn time (5minuntes +). After this, no other aspx page can be accesed, with the same error. HTML file handled by Apache are are returned. So I must restart Apache (and an error is reaised here), sometimes twice.

I dont kwon very much about Apache. I'am a developer.

Since I cannot debug it results very difucult for me to identify where and what the error is.

Kind regards

Luis Fco. Ramirez

 

Reply via email to