What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » XMLHTTP Not Loading After Save

XMLHTTP Not Loading After Save
Author: Message:
bigbob85
Full Member
***

Avatar
Is Good, Is Bob...

Posts: 128
Reputation: 4
36 / Male / Flag
Joined: Jul 2003
O.P. RE: XMLHTTP Not Loading After Save
I am using new... Ill go see what debuging window says.

xmlhttp isnt null, but its an empty string. Odd.. Should it be an int or something? Actualy, it was blank from the first time I used it..

What else should I trace out, all I really know is that "xmlhttp.onreadystatechange = function()" isnt triggering after it works for the first time.

I should probably just include all my code..

code:
function updateChat()
{
   var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
   Debug.Trace("xmlhttp : "+xmlhttp);
   if (xmlhttp == null) Debug.Trace("Null");
   xmlhttp.open("GET", "http://www.darksignsonline.com/chatlog-light.php", false);
   xmlhttp.send("");
   xmlhttp.onreadystatechange = function()
      {
         Debug.Trace(xmlhttp.readyState);
         if (xmlhttp.readyState == 4 && xmlhttp.status)
         {
            // removed stuff that dosnt matter
         }
      }

}


I have also tried with ASYNC as true, same result. What should it be for my case?

This post was edited on 02-01-2008 at 01:25 AM by bigbob85.
[Image: signature-user=16&back=2&clr=0,0,0&size=100.png]
02-01-2008 01:20 AM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
XMLHTTP Not Loading After Save - by bigbob85 on 02-01-2008 at 01:04 AM
RE: XMLHTTP Not Loading After Save - by ShawnZ on 02-01-2008 at 01:06 AM
RE: XMLHTTP Not Loading After Save - by roflmao456 on 02-01-2008 at 01:11 AM
RE: XMLHTTP Not Loading After Save - by bigbob85 on 02-01-2008 at 01:20 AM
RE: XMLHTTP Not Loading After Save - by matty on 02-01-2008 at 05:37 AM
RE: XMLHTTP Not Loading After Save - by bigbob85 on 02-01-2008 at 05:58 AM
RE: XMLHTTP Not Loading After Save - by matty on 02-01-2008 at 12:05 PM
RE: XMLHTTP Not Loading After Save - by bigbob85 on 02-04-2008 at 12:49 AM
RE: XMLHTTP Not Loading After Save - by Matti on 02-04-2008 at 09:02 AM
RE: XMLHTTP Not Loading After Save - by bigbob85 on 02-04-2008 at 12:49 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On