Ask a Question related to ASP Components, Design and Development.
-
Jonas Schiöld #1
ServerXMLHTTP returns error 424
On a Windows Server 2003 SP1with MSXML 6 installed. No proxy server is used.
Extraction of ASP code:
Set objHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP.4.0")
objHTTP.open "GET", strDynURL, false
objHTTP.send()
After this err.number is 424 and err.desciption is empty.
And objHTTP.responseText returns "ÿþ" (excluding the quotes).
The code works fine on two other Windows XP Pro computers.
I find no documentation of an error 424 anywhere.
Any ideas?
Jonas Schiöld Guest
-
ServerXmlHTTP not working as documented
Hi... I was trying to do a "fire and forget" request from an asp page - i.e. I wanted to make an async request to another server to note an... -
HttpWebRequest taking lot longer compared to ServerXMLHTTP
Hi, I've to migrate an existing code in asp to asp.Net. The asp code uses ServerXMLHTTP to call some services. Same thing will be done using... -
MSXML ServerXMLHTTP.4.0 questions
Hi.. A few random questions about MSXML2.ServerXMLHTTP.4.0 I was wondering if there was any list of the error codes that ServerXMLHTTP can... -
Calling WebService using ServerXMLHTTP
HI, I am using MSXML4.0 to call .NET Webservice from VB client. My Webservice returs XML string. But if I use ResponseBody of ServerXMLHttp to... -
MSXML2.ServerXMLHTTP vs. Microsoft.XMLHTTP
> So I looked on google and found from some discussion board that I need No, you don't. This object is not safe for server-side requests. You... -
Steven Burn #2
Re: ServerXMLHTTP returns error 424
424 = object not found ..... you must ensure the MSXML 4 controls are
installed and correctly registered on the machine.
--
Regards
Steven Burn
Ur I.T. Mate Group
[url]www.it-mate.co.uk[/url]
Keeping it FREE!
"Jonas Schiöld" <Jonas [email]Schild@discussions.microsoft.com[/email]> wrote in message
news:203B073F-D2FB-4CC5-99D6-FF5006A4AD4C@microsoft.com...used.> On a Windows Server 2003 SP1with MSXML 6 installed. No proxy server is> Extraction of ASP code:
>
> Set objHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP.4.0")
> objHTTP.open "GET", strDynURL, false
> objHTTP.send()
>
> After this err.number is 424 and err.desciption is empty.
> And objHTTP.responseText returns "ÿþ" (excluding the quotes).
>
> The code works fine on two other Windows XP Pro computers.
>
> I find no documentation of an error 424 anywhere.
>
> Any ideas?
Steven Burn Guest
-
Jonas Schiöld #3
Re: ServerXMLHTTP returns error 424
At least I think it is installed correctly. I installed the latest version of
MSXML and the error description was empty. But maybe you are right anyway.
I'll try again.
How do I know if it is installed correctly?
Thanks
Jonas
"Steven Burn" wrote:
> 424 = object not found ..... you must ensure the MSXML 4 controls are
> installed and correctly registered on the machine.
>
> --
> Regards
>
> Steven Burn
> Ur I.T. Mate Group
> [url]www.it-mate.co.uk[/url]
>
> Keeping it FREE!
>
> "Jonas Schiöld" <Jonas [email]Schild@discussions.microsoft.com[/email]> wrote in message
> news:203B073F-D2FB-4CC5-99D6-FF5006A4AD4C@microsoft.com...> used.> > On a Windows Server 2003 SP1with MSXML 6 installed. No proxy server is>> > Extraction of ASP code:
> >
> > Set objHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP.4.0")
> > objHTTP.open "GET", strDynURL, false
> > objHTTP.send()
> >
> > After this err.number is 424 and err.desciption is empty.
> > And objHTTP.responseText returns "ÿþ" (excluding the quotes).
> >
> > The code works fine on two other Windows XP Pro computers.
> >
> > I find no documentation of an error 424 anywhere.
> >
> > Any ideas?
>
>Jonas Schiöld Guest
-
Jonas Schiöld #4
Re: ServerXMLHTTP returns error 424
> At least I think it is installed correctly...
I explicitly fetched version 4.0 and didn't realize that when I installed
ver 6, I didn't automagically got ver 4 too. When I changed it to use version
6 instead it worked!
Thanks!
But now I got a problem with non-ansi characters, like the swedish accented,
letters for example. Do you have a quick fix for that?
Jonas Schiöld Guest
-
Steven Burn #5
Re: ServerXMLHTTP returns error 424
The error you are receiving determines this for you (if you were not getting
this error it would determine that it is installed and registered correctly)
--
Regards
Steven Burn
Ur I.T. Mate Group
[url]www.it-mate.co.uk[/url]
Keeping it FREE!
"Jonas Schiöld" <JonasSchild@discussions.microsoft.com> wrote in message
news:08F270B2-160D-41C3-A72A-141ADE72A269@microsoft.com...of> At least I think it is installed correctly. I installed the latest versionmessage> MSXML and the error description was empty. But maybe you are right anyway.
> I'll try again.
> How do I know if it is installed correctly?
>
> Thanks
> Jonas
>
> "Steven Burn" wrote:
>> > 424 = object not found ..... you must ensure the MSXML 4 controls are
> > installed and correctly registered on the machine.
> >
> > --
> > Regards
> >
> > Steven Burn
> > Ur I.T. Mate Group
> > [url]www.it-mate.co.uk[/url]
> >
> > Keeping it FREE!
> >
> > "Jonas Schiöld" <Jonas [email]Schild@discussions.microsoft.com[/email]> wrote in> > news:203B073F-D2FB-4CC5-99D6-FF5006A4AD4C@microsoft.com...> > used.> > > On a Windows Server 2003 SP1with MSXML 6 installed. No proxy server is> >> > > Extraction of ASP code:
> > >
> > > Set objHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP.4.0")
> > > objHTTP.open "GET", strDynURL, false
> > > objHTTP.send()
> > >
> > > After this err.number is 424 and err.desciption is empty.
> > > And objHTTP.responseText returns "ÿþ" (excluding the quotes).
> > >
> > > The code works fine on two other Windows XP Pro computers.
> > >
> > > I find no documentation of an error 424 anywhere.
> > >
> > > Any ideas?
> >
> >
Steven Burn Guest
-
Steven Burn #6
Re: ServerXMLHTTP returns error 424
Unfortunately I don't no. Someone in the
microsoft.public.interserver.asp.general newsgroup may be able to help you
with this.
--
Regards
Steven Burn
Ur I.T. Mate Group
[url]www.it-mate.co.uk[/url]
Keeping it FREE!
"Jonas Schiöld" <JonasSchild@discussions.microsoft.com> wrote in message
news:F544646F-ECB4-49C3-AC43-FCAF574DE035@microsoft.com...version>> > At least I think it is installed correctly...
> I explicitly fetched version 4.0 and didn't realize that when I installed
> ver 6, I didn't automagically got ver 4 too. When I changed it to useaccented,> 6 instead it worked!
> Thanks!
>
> But now I got a problem with non-ansi characters, like the swedish> letters for example. Do you have a quick fix for that?
Steven Burn Guest



Reply With Quote

