--- In svg-developers@yahoogroups.com, Jonathan mayer <[EMAIL PROTECTED]>
wrote:

> Am used to asp and obviously can work with
> request.querystring and session etc but am puzzled as
> to how I access this data.

With classic ASP and VBScript if someone does a 

  postURL('whatever.asp', printNode(someNode), callbackFunction,
'application/xml')

on the client you could use e.g.

  Set PostedXml = CreateObject("Msxml2.DOMDocument.3.0")
  PostedXml.async = False
  If PostedXml.Load(Request) Then
    'process XML here e.g.
    PostedXml.save Server.MapPath("file.xml")
  Else
    'deal with parse errors here e.g.
  End If

on the server to parse and use (in the example save) the posted XML.

Doing a Load(Request) is something that MSXML supports. If you do not
want to use MSXML then you can of course also use Request.BinaryRead
to process the bytes of the request body.





-----
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
---- 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to