HTTPRequest Freezes For 5 Minutes Intermittently And Throws "Unknown Name" Javascript Exception

Dec 4, 2006

I am using the Microsoft.XMLHTTP object to make server requests ie;
ajax. This is working 99% of the time but occasionally it will freeze
at the server for 5 minutes and then raise a javascript exception
"Unknown name".

After the exception I can run the same request ok, and keep doing so
until the next time it freezes for 5 minutes.

What does the "Unknown name" javascript exception mean?

Why does it freeze for 5 minutes?

I can't replicate this on my dev pc, it's only happening in a live
environment with IE6 and 2 load balanced IIS6 servers.

View 2 Replies


ADVERTISEMENT

Error: Unknown Exception In IE 6

Jun 1, 2009

I got javascript error: unknown exception in IE 6

Take a look:

Click "other information" in the left, first it's work good. But when I refresh and click "other information" again, I got javascript error: unknown exception.

View 9 Replies View Related

JavaScript - IE6 (SP1) Throws Errors On Microsoft's Own Page!

Jul 20, 2005

I get more JS errors than I'd expect, on a wide range of sites. (It's
possible I only know this because the Debug is set on).

I found an error on a Microsoft site, and decided to investigate. I traced
it to this line:

document.all("characterCount").innerText = commentTextLength;

This is on a page deep inside a secure ordering sequence, so it's probably
not worth copying the URL here.

According to my crib-sheet, "document.all" is only valid in the javascript
of IE4 and later. My browser is IE6 (SP1) which qualifies, but the
javascript I have doesn't like it. I also have other browsers and
Frontpage 2002 installed. Code:

View 1 Replies View Related

Converting Minutes To Hours And Minutes ?

Nov 26, 2010

I have a script (provided by someone else). The problem is the result is not the desired one. Example: I'm getting my hours and minutes in a decimal format. 8:33 is showing as 8.55

I have 3 fields.

I'm no expert and don't understand JavaScript at all.

Here is the script:

View 6 Replies View Related

Uncaught Exception: Exception... "Component Returned Failure Code: 0x80004003

Sep 23, 2009

I am needing some help with an error I'm getting from a project I'm working on. First off let me preface this all with the fact that I'm a total javascript noob. I'm really trying to understand what I'm doing wrong. So any help or advice is MORE than welcome. Here's what is happening. I found this code that will duplicate a row in a table and modifiy the name of a input in the row. Well for my purposes I have two different tables I need to work with. (each one idividually) So I changed the code a bit to make it accecpt a variable to use for the table name. (before it was static) and now I'm getting a error. Error: uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER)" nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)" location: "JS frame :: http://www.tourandtravelnow.com/admin/scripts/faxPageScript.js :: addRow :: line 14" data: no] This is the old code that would work (only for one of the tables)

[Code]...

View 1 Replies View Related

JQuery :: Catch Exception - Didn't Change The Content Of "myFormDOFF" But Display The Message Send By The Exception In Another DIV

Jul 22, 2009

In my code (ASP.NET MVC using Nhibernate) , I do this :

[Code].....

Then I display the result in the DIV named "myFormDOFF" Of course, my .NET code can generate exception. I'd like when I receive an exception didn't change the content of "myFormDOFF" but display the message send by the exception in another DIV.

View 1 Replies View Related

Cross Browser Compatibility - Error: Uncaught Exception: [Exception... "Component Returned Failure"

Jan 10, 2009

I am having trouble getting my expanding menu to work in Firefox and Opera. It works fine in IE though. I did not write the javascript myself, as I am fairly new to JS, but I did all the HTML and CSS. I used the error console on FF, and also used FireBug. They both returned the following error:

[Code]...

View 23 Replies View Related

HttpRequest And Timeout

Dec 20, 2005

I use an HttpRequest in my web application to launch an heavy
computation server side. The result is then send back to the browser.
The problem I got is that when the computation took too much time, then
I never get the result. I have to reload the page to get it.

I assume it's because my socket connection has time out, but my event
listener does not seems to get any event. Maybe I miss something:

function xmlhttpChange()
{
// looking fo a xmlhttp "loaded"
for (var i in nodeId2xmlHttp) {
if ((nodeId2xmlHttp[i] != null) && nodeId2xmlHttp[i].readyState ==
4) {
if (nodeId2xmlHttp[i].status==200) {
nodeId2xmlHttp[i] = null;
} else {
alert("Problem retrieving XML data (nodeId: " + i + ")");
nodeId2xmlHttp[i] = null;
}
}
}
}

My question is : how to handle XMLHttpRequest timeout. Any pointers?

View 3 Replies View Related

Caching Problem With HTTPRequest?

Oct 28, 2005

I've created a page that uses HTTPRequest to include some
XML data and allow the user to update that data. The
problem is that the new data doesn't show up, even though
the XML file is changed.

I can call the XML file up in a separate browser window,
where I get the old data, refresh to get the new data, then
when I refresh the first browser, the new data appears on
the page.

I'm thinking this might be some sort of server caching
issue. Has anyone else run into this? Does anyone have a
solution?

View 3 Replies View Related

IE Freezes When I Set The Height Of A Div

Sep 11, 2006

I was using a piece of javascript function that I found online(unfortunately, I lost the source of this function), which basically provides the screen size. I added a few more lines to use that function so that when the user change the window size, the content div resizes as well.(didn't want the user to scroll down or sideways). Everything works except when I resize the height, IE freezes. Here's the function I am using:

Code:

function resize()
{
var contentHolder = document.getElementById('content') ;

var availW ;
var availH ;

if(document.all)
{
availW = document.body.clientWidth;
availH = document.body.clientHeight;
}
else
{
availW = innerWidth;
availH = innerHeight;
}

contentHolder.style.width = availW - 35 + "px" ;
//contentHolder.style.height = availH - 250 + "px" ;

}

The last commented line works fine in firefox and opera, which is supposed to resize the div so that all the contents are within the browser window and the user doesn't have any scrollbar. But as I mentioned, it's not working in IE. IE resizes the width properly. Any idea why IE is having trouble resizing the height? Please let me know if you think there's a better way of doing this.

View 9 Replies View Related

JQuery :: Focus A Field When It Come From Httprequest?

Dec 1, 2011

When I click on a field, I put the object position in a variableEnviro["lastfocus"] = $(event.target);I call the action and a block of HTML arrived on the page, I place this text and then after, i want the focus to return to the field and I do this:

$(Enviro["lastfocus"][0]).focus();

But nothing append

View 2 Replies View Related

HTTPRequest Problems Updating 'hidden' Objects?

Nov 23, 2005

I am finding some unusual behavior with techniques I am using to
show/hide/update data without having to refresh the page. I'm quite
sure it's developer ignorance on my part and would be grateful for any
suggestions.

My page has 10 tables with their visibility controlled by the user
making a menu selection. For example, selecting menu_1 calls a
function which displays table_1 by setting table_1's style display:
block and hides tables 2-10 by setting their respective styles to
display: none. Everything in this simple navigational approach works
as expected.

I am also using the HTTPRequest object to update relevant objects on
the page based on user input. The problem I am seeing is when the
HTTPRequest object is used to update DOM objects contained within the
"invisible" tables -- or more accurately within those tables having
their style display:none. I have tried using both the HTTPRequest
object's synchronous and asynchronous approach and am seeing the same
results.

I've tested when all of the tables are "visible" by setting their style
settings to display:block and HTTPRequest calls work as expected.

The other twist in my example is that these HTTPRequest calls are each
making a SQL query and updating a chart object within the table, which
may take about 500ms each to return. My initial impression is that it
looks as if the page is being rendered too fast because any more than
three charts on a page is when the charts start getting misplaced on
the page. Again, everything works fine when all tables are visible.

Is this a known problem with HTTPRequest, or do I need to migrate my
coding techniques to the 21th century?

View 1 Replies View Related

Query :: Access $Link From The Httprequest Result?

May 25, 2011

I'm trying to run a php query via ajax httprequest. In my php script I have query result. I am also creating a txt file and link to the file. The query result then becomes the link to the file like so:

[Code]...

where $counter[0] is the result of the query. How do I access $Link from the httprequest result so I end up with something like this:

[Code]...

View 2 Replies View Related

JQuery :: Animated GIF Freezes On Submit

May 14, 2009

I'm having trouble displaying an animated loader.gif when submitting a form.

What i have is this function

And i have a div like :

My problem is that while it works fine on safari and chrome, in firefox, when the submit event is fired, tha animation on gif freezes. I've done a lot of serach and o can't fina a solution.

View 1 Replies View Related

JQuery :: BlockUI 2.31 Throws A Error In FF 3.6.10

Sep 22, 2010

When using blockUI, sometimes I get an error on line 462 of the code, near the end of the handler function:

This may or may not be due to firing multiple .block() events on the same element.

The problem seems to be limited to Firefox; IE8 & Chrome 6 work without an error. I have tested this on multiple Firefox installations.

I have a fix that checks to see if opts has been defined as a closure prior to its use:

If you could include this in your next version, that'd be great!

View 4 Replies View Related

Freezes In IE But Works Fine In Chrome

Mar 3, 2011

[Code],,,,

It freezes in Internet Explorer; but works fine in Chrome.

View 49 Replies View Related

JQuery :: Put The Focus On Input Text After HttpRequest Return?

Dec 1, 2011

first, i put the object on a variableEnviro["lastfocus"] = $(event.target);after that i do an action and the data come back from the httpRequestthen I do that$(Enviro["lastfocus"][0]).focus();But nothhing append, no error bot no result.

View 1 Replies View Related

Calling AddMouseListener In Jscript Throws ClassCastException

Jul 23, 2005

We have an applet that implements the MouseListener interface but when trying to add the applet to the glasspane of another applet a classcastexception is thrown.

This all seemed to work fine when using JDK1.3.1_08 but since using
JDK1.4.2 it does not work.

The class implementing the mouse listener interface is defined using:

public class MapListener extends JApplet implements MouseListener,
MouseMotionListener

and created within the HTML page using:

<applet width="600" height="0" code="MapListener.class"
name="MapListener" MAYSCRIPT="true"> </applet>

The MapListener object is referenced in jscript using:

var applet = parent.mapFrame.document.MapListener;

and is added to the glass pane of an applet named IMSMap using:

parent.mapFrame.IMSMap.getGlassPane().addMouseList ener(applet);

This line however throws a jscript exception with message
'java.lang.ClassCastException: javax.swing.JPanel' and with name
'RangeError'

We are using IE6.0.2800

View 2 Replies View Related

JQuery :: $.ajax({..}) Throws Syntax Error In IE7?

Jun 7, 2009

This is my first post to the group, so please be gentle :) For some unknown (to me at least) reason I'm getting a syntax error in IE from the following code

[Code]...

View 7 Replies View Related

Ajax :: Call Freezes Page / Solution For This?

Jul 22, 2009

I am writing up a page to collect user input, and then generate an excel file.
The generation of the excel file is slow (more than 30 sec), so I decide to separate the input stage and file creation stage.

What I do is, collect user input, save to mysql, and pass a url (to the page of excel file creation) to javascript. Javascript will be triggered by setTimeout and run ajax to call the url after 2-3 seconds. This is the page structure of how I do it code...

The problem is, when the ajax is called, I cannot navigate around the pages (in the iframe of index.php). There is no error, but seems to be "loading". I have tried to use the same browser window to access the same site on the server, and also other sites on the Internet, to make sure the server is not busy to respond or the network is fully occupied.

View 11 Replies View Related

JQuery :: Document Ready And Code Throws Js Error In IE7

Feb 3, 2011

its seems realy strange to me but below code throws js error in IE7

[Code]..

View 2 Replies View Related

JQuery :: Plugin Validate Freezes IE When Form Have Too Many Elements / Sort It Out?

Jun 9, 2011

I have a huge form working fine, I have many hidden fields inside some DIVs, and as the user marks aCheck-box, the DIVsappearshowing the fields accordingly, but there are two DIVs with more than a hundred inputs(text), the problem is that when those fields are enabled the validation freezes the browser. I'm using jQuery1.4.2 and the latest Validate.

View 2 Replies View Related

Floating Image Every 10 Minutes?

Jun 6, 2009

I want an image to fly from the left of the page to the right of the page every 10 minutes.

View 7 Replies View Related

Load Iframe Every 3 Minutes?

Dec 6, 2009

I run a streaming site and would like google adsense to appear at the bottom of the page/stream every 3 minutes, stay for 15 seconds and then close automatically. Then after another 3 minutes they'd appear again, stay for 15 seconds and then close again, etc, etc.I'd imagine having the adsense in an iframe would be easier.I'd also like to give users the option to close the adsense using a close button at the top of the iframe if they don't want to wait 15 seconds.

View 1 Replies View Related

JQuery :: Run Code After X Minutes?

May 5, 2009

Is there a way in JQuery to execute some code after, or every X minutes of time other than using JS' setTimeOut()?

View 3 Replies View Related

Converting The Seconds To Minutes?

Jun 16, 2010

I have a consecutive countdown currently using only seconds. I would like the output to show hours minutes and seconds (ex 2:30:00). The page is at riccraig.us/countdown.html. Here is some of the code:

Code:

var a=900;
var b=600;
var c=1200;

[code]....

Countdowns 3 through 6 are the same as 1 and 2. The initial html shows the desierd values. But when the timer starts it only shows the total seconds. I realize why it is showing the total number of seconds. However, I don't know how to get it to the 00:00:00 format.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved