What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! Bug Reports » scriptlink.msgpluslive.net not found?

scriptlink.msgpluslive.net not found?
Author: Message:
Shape
New Member
*


Posts: 2
Joined: Jun 2007
O.P. scriptlink.msgpluslive.net not found?
I'm getting a couple of "Unhandled Exception: The system can not locate resource specified" errors when starting up msn messenger lately.

When I select the debugger, it ends up in this piece of code:
in msxml3.dll:


function LoadXmlDoc(sUrl){
    Interop.Call('wininet.dll', 'DeleteUrlCacheEntryW', sUrl);
    var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    xmlhttp.open('GET', sUrl, false);
    xmlhttp.send();
    return xmlhttp.responseText;
}

The sUrl contains this value:    http://scriptlink.msgpluslive.net/redirect-116/ss.update.xml"


Call stack:

OnEvent_SigninReady
OnEvent_Initialize
UpdateCheck
LoacXmlDoc


Any ideas how to fix this?
Aparantly the website scriptlink.msgpluslive.net does not exist (anymore?).

Tx.,
Eize

06-03-2007 08:27 PM
Profile E-Mail PM Find Quote Report
Shape
New Member
*


Posts: 2
Joined: Jun 2007
O.P. RE: scriptlink.msgpluslive.net not found?
Help,

I am having this again lately.

It is apparantly a hardcoded path in msn:


function UpdateCheck(sDisplayMessage){
    if (sDisplayMessage === true){
        OpenWindow('WndUpdate.xml', 'WndUpdateStatus', 0, false);
    }
    var sXmlText = LoadXmlDoc('http://scriptlink.msgpluslive.net/redirect-116/ss.update.xml');
.
.




When I type http://scriptlink.msgpluslive.net  in a browser it is not found.

...

07-29-2007 02:25 PM
Profile E-Mail PM Find Quote Report
Patchou
Messenger Plus! Creator
*****

Avatar

Posts: 8607
Reputation: 201
43 / Male / Flag
Joined: Apr 2002
RE: scriptlink.msgpluslive.net not found?
Replace

var sXmlText = LoadXmlDoc('http://scriptlink.msgpluslive.net/redirect-116/ss.update.xml');

by

var sXmlText = "";

That should solve your problem.
[Image: signature2.gif]
07-29-2007 04:05 PM
Profile PM Web Find Quote Report
Mnjul
forum super mod
******

Avatar
plz wub me

Posts: 5396
Reputation: 58
– / Other / Flag
Joined: Nov 2002
Status: Away
RE: scriptlink.msgpluslive.net not found?
quote:
Originally posted by Shape
It is apparantly a hardcoded path in msn:
From the jscript source code fragment you gave, it seems to be screenshot sender who's behind the trouble. :)
07-29-2007 04:18 PM
Profile PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: scriptlink.msgpluslive.net not found?
quote:
Originally posted by Patchou
Replace

var sXmlText = LoadXmlDoc('http://scriptlink.msgpluslive.net/redirect-116/ss.update.xml');

by

var sXmlText = "";

That should solve your problem.

* matty slaps Patchou with the Screenshot Sender source code!

Patchy thanks but that wont fix it, this is a problem with the redirecting to script websites from the above link.

quote:
Originally posted by Mnjul
quote:
Originally posted by Shape
It is apparantly a hardcoded path in msn:
From the jscript source code fragment you gave, it seems to be screenshot sender who's behind the trouble. :)
Not screenshot sender it is with the Plus! website not redirecting properly.

http://scriptlink.msgpluslive.net/redirect-116/ should redirect to http://screenshotsender.com which it doesn't.

You are going to want to change the line to:

http://screenshotsender.com/update/ss.update.xml

This post was edited on 07-29-2007 at 04:35 PM by matty.
07-29-2007 04:32 PM
Profile E-Mail PM Find Quote Report
Patchou
Messenger Plus! Creator
*****

Avatar

Posts: 8607
Reputation: 201
43 / Male / Flag
Joined: Apr 2002
RE: scriptlink.msgpluslive.net not found?
It doesn't because your server is not capapble of handling the high number of users and your script was using a synchronous method to load the xml file which could then cause Messenger to freeze (and apparently display unfriendly errors to people when the server can't be reached).

The line I gave should indeed fix it as it will remove the call that downloads the file (although I don't know what the script does afterwards with the data). You should have updated your script to do an async download :p.
[Image: signature2.gif]
07-30-2007 06:16 AM
Profile PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: scriptlink.msgpluslive.net not found?
quote:
Originally posted by Patchou
It doesn't because your server is not capapble of handling the high number of users and your script was using a synchronous method to load the xml file which could then cause Messenger to freeze (and apparently display unfriendly errors to people when the server can't be reached).

The line I gave should indeed fix it as it will remove the call that downloads the file (although I don't know what the script does afterwards with the data). You should have updated your script to do an async download :p.
Who says it can't handle the users? :P

I guess you are right in a sense, if there is anyone having a problem just do what Patchy said, if there is another release it will be available on the DB and on the forums and on the website.
07-30-2007 01:51 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »


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