ServerXMLHTTP returns error 424

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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...
    > 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?

    Steven Burn Guest

  4. #3

    Default 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...
    > > 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

  5. #4

    Default 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

  6. #5

    Default 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...
    > 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...
    > > > 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?
    > >
    > >
    > >

    Steven Burn Guest

  7. #6

    Default 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...
    > > 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?

    Steven Burn Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139