vote up 0 vote down star

Hi All, i'have a js client with JQuery, this js call a page (GET HTTP) and set timeout. The aim of timeout is: "do something if the server not responds". If i use Apache web server for manage a page, the timeout perform. If i use IIS 6.0 the timeout is "skipped" and the page attempt (anyway) the server response. This is the script:

//client side

$.ajax({
    type: "GET",
    url: "some.php",
    data: "name=John&location=Boston",
    timeout: 5000
    success: function(msg){
        alert( "Data Saved: " + msg );
    },
    error: function(request, errorType, errorThrown){
        alert("opppsssss .... ");
    }
});

I suppose that is a IIS..is it right? or i made a mistake in JQuery code?

best regerds

Domenico

flag

You're missing a , after timeout – Paolo Bergantino Jan 26 '09 at 17:26

3 Answers

vote up 1 vote down check

As Paolo mentioned in a comment, you're missing a comma after the timeout declaration. I very recently had a situation where a missing comma in an object declaration like that would cause IE to choke on the script and not run it properly (while firefox had no problems running it).

That wouldn't explain why the different servers would be causing different behavior, but it would probably be worth fixing that first and retesting, as the behavior might change and might be easier to debug.

link|flag
I'll second this -- I've seen several times that firefox generously interprets javascript objects declared in that manner where IE will choke on the missing comma. Whether or not this is causing the problem he's worried about, it IS a problem. – Clyde Jan 27 '09 at 2:47
vote up 0 vote down

Hi Guys,

Thank you for response, i complete the question :)

The server code is:

//backend some.php

< ?

//simulate long task

sleep(10); //sleep 10 seconds

//send response

echo "some test data";

? >

Sorry, the comma error is a my cut&paste error..

The problem this is when timeout is over, the error dialog not appear because the connection from server isn't interrupted by timeout, so the server (slowly) however responds.

Have you idea because the server connection isn't interrupt?

link|flag
For future reference, it's preferred that you edit your question to add details, not post an answer with the extra details. It clutters the answers a bit. – Herms Jan 28 at 15:22
vote up 0 vote down

Not sure I follow you exactly, but the timeout means "give the server this much time to respond before showing an error". So if IIS immediately responds, the timeout value will have no effect. In other words, there's nothing the server can do to affect how the "timeout" is used, because as soon as the server responds, the timeout is irrelevant. The situation "timeout" is useful for is when the server is a bit slow but that shouldn't indicate an error (so you would use a large timeout value).


OK, I've read your added detail. Now I get what you're saying.

I wonder if IIS is starting to send the response right away and then following up with full results? If I was dealing with this the first thing I would do would be to start up FireBug and look at the NET tab -- it will show details of all posts to the server, including through Ajax, with timing.

At any rate, sounds like some kind of buffering/flushing issue in IIS. Is this IIS 6 or 7?

By the way, it's better to edit your original question, or add a comment to your question, to add details than to post an "answer" with new details in it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.