Re: how to import xml into simple webservice

Tech-Archive recommends: Fix windows errors by optimizing your registry

From: Bruce Dumes (bdumes_at_college.ucla.edu)
Date: 10/14/04


Date: Thu, 14 Oct 2004 17:48:07 +0000 (UTC)


"Jeff Johnson [MVP: VB]" <i.get@enough.spam> wrote in news:
#URAmThsEHA.2956@TK2MSFTNGP12.phx.gbl:

> Request.BinaryRead

You know, I played with that one via an example I found on the web:

<%

            dim bytecount

            dim binread

            bytecount = Request.TotalBytes

            binread = Request.BinaryRead(bytecount)

            if byteCount <> 0 then

                        Response.Write "Bytes Read: "&bytecount

            end if

%>

And I did get a good bytecount. But I couldn't find anything about how
to actually get the XML from that point. I tried seeing what was
contained in "binread", but didn't know how to convert it to text.

Is there a simple solution?

Thanks!

Bruce