DebugBar Forums
 
 HOME 
 DOWNLOAD 
 BUY 
 DOC / WIKI 
 FORUM 
 CONTACT 
Stay tuned : rss feed

Forum Home


advanced search

You are not logged in.

Announcement

Forums are now closed as we moved them to google groups. You can use the following Google Groups to discuss about DebugBar and IETester products:

#1 2010-03-04 11:28:47

BubikolRamios
New member

Hangs in IE6, works on IE Tester

opening this page in IE6 , IE6 hangs.
6.0.2900.2180 xpsp_sp2_rtm. 040 803-2158

http://agrozoo.net/

in IE tester works np.

It has to do something with js, I think, posibly with ajax.

?

Offline

 

#2 2010-03-04 11:33:48

fabrice
DebugBar Support

Re: Hangs in IE6, works on IE Tester

Yes, I can reproduce the problem. It could be interesting to find the problem on the real IE, then I'll be able to investigate on IETester.

Offline

 

#3 2010-03-05 19:53:21

BubikolRamios
New member

Re: Hangs in IE6, works on IE Tester

after virtual machine install .. abble to test on ie6

Check this out in real ie6 and IE tester. IE tester is doing something different with ajax, sends something else out to server.
Can't check what comes to  server, cant figure virtual machine networking ....

http://agrozoo.net/jsp/test.jsp



EDIT:
can anyone confirm that this is working np:
http://agrozoo.net/
on xp ie6 sp2, my VM has sp3.

Didn't change a thing, except a couple of times comment/uncoment/save js code. Checked even with yesterday code - same thing. And now does not hang anymore.

Last edited by BubikolRamios (2010-03-05 21:50:01)

Offline

 

#4 2010-03-16 12:32:07

BubikolRamios
New member

Re: Hangs in IE6, works on IE Tester

hanged again, for no apparent reason, after replacing 'old' function it seems to work np, for now.

function GetXmlHttpObject_old()
{
  var objXMLHttp=null;
  // If IE7, Mozilla, Safari, and so on: Use native object. --> http://msdn.microsoft.com/en-us/library/ms537505(VS.85).aspx
  if (window.XMLHttpRequest)
  {
    objXMLHttp=new XMLHttpRequest();
   

    IEFF = "FF";
  }
  // IE 6
  else if (window.ActiveXObject)
  {
    //alert('ajax ie 6 detected');
    objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP");
   
    IEFF = "IE";
  }
 
 

  return objXMLHttp;
}

//http://www.webdeveloper.com/forum/showthread.php?t=176936
function GetXmlHttpObject()
{

var xmlhttp;
if (!xmlhttp && typeof XMLHttpRequest != 'undefined')
{
  try
  {
    xmlhttp = new XMLHttpRequest();
  }
  catch (e)
  {
    xmlhttp = false;
  }
}

if(!xmlhttp && typeof ActiveXObject != "undefined")
{
   try
   {
     xmlhttp=new ActiveXObject("MSXML2.XMLHTTP");
   }
   catch(e)
   {
     xmlhttp=false;
   }
   if(!xmlhttp)try{ xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); }catch(e){xmlhttp=false;}
}

return xmlhttp;
}

Last edited by BubikolRamios (2010-03-16 12:33:09)

Offline

 

#5 2010-03-16 12:56:25

fabrice
DebugBar Support

Re: Hangs in IE6, works on IE Tester

Hi,

AJAX object is not correctly handled in IETester, so this might be the problem with your tests.

Offline