ASP reading XML

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • David C

    ASP reading XML

    I have an ASP classic site that needs to add the option of reading an XML
    file send back from another web site and parsing it into a multi-column HTML
    table. The server is Windows Server 2003. Can anyone direct me to where I
    might find more info on this? Thanks.

    David


  • Egbert Nierop \(MVP for IIS\)

    #2
    Re: ASP reading XML

    Basically start at the ServerHTTPXml object (Xml parser 3 or 4)... This
    object can do gets and puts and all http verbs including fetches of XML...

    --
    compatible web farm Session replacement for Asp and Asp.Net


    "David C" <dlchase@lifeti meinc.com> wrote in message
    news:OyWG%23WJq EHA.324@TK2MSFT NGP11.phx.gbl.. .[color=blue]
    >I have an ASP classic site that needs to add the option of reading an XML
    > file send back from another web site and parsing it into a multi-column
    > HTML
    > table. The server is Windows Server 2003. Can anyone direct me to where
    > I
    > might find more info on this? Thanks.
    >
    > David
    >
    >[/color]

    Comment

    • Egbert Nierop \(MVP for IIS\)

      #3
      Re: ASP reading XML

      "David C" <dlchase@lifeti meinc.com> wrote in message
      news:OyWG%23WJq EHA.324@TK2MSFT NGP11.phx.gbl.. .[color=blue]
      >I have an ASP classic site that needs to add the option of reading an XML
      > file send back from another web site and parsing it into a multi-column
      > HTML[/color]


      Basically start at the ServerXmlHttp object (Xml parser 3 or 4)... This
      object can do gets and puts and all http verbs including fetches of XML...

      --
      compatible web farm Session replacement for Asp and Asp.Net


      [color=blue]
      > table. The server is Windows Server 2003. Can anyone direct me to where
      > I
      > might find more info on this? Thanks.
      >
      > David
      >
      >[/color]

      Comment

      • David

        #4
        Re: ASP reading XML

        I want to be able to read the XML file (using ADO hopefully) and not
        just dump it to an HTML table, but add a checkbox for the user to select
        that particular row and go get an image based on the unique ID in the
        XML row. Does this change where I need to look for a solution? I read
        the ServerXMLHTTP info. but could not figure out how it was "reading"
        the XML file. Thanks.

        David



        *** Sent via Developersdex http://www.developersdex.com ***
        Don't just participate in USENET...get rewarded for it!

        Comment

        • Egbert Nierop \(MVP for IIS\)

          #5
          Re: ASP reading XML

          "David" <daman@biteme.c om> wrote in message
          news:uRciv5kqEH A.3848@TK2MSFTN GP14.phx.gbl...[color=blue]
          >I want to be able to read the XML file (using ADO hopefully) and not
          > just dump it to an HTML table, but add a checkbox for the user to select
          > that particular row and go get an image based on the unique ID in the
          > XML row. Does this change where I need to look for a solution? I read
          > the ServerXMLHTTP info. but could not figure out how it was "reading"
          > the XML file. Thanks.[/color]

          It reads it into a string (buffer) and that can be used to parse in a Dom
          document.
          But yes, you also could use ADODB.STream to read XML from a server.
          [color=blue]
          > David
          >
          >
          >
          > *** Sent via Developersdex http://www.developersdex.com ***
          > Don't just participate in USENET...get rewarded for it![/color]

          Comment

          Working...