sending XML file

  • Thread starter Thread starter Henk
  • Start date Start date
H

Henk

I have to send an XML file from a server to a client. I've already
made the client and server but what do I have to do to send the file?
Any tips?
 
easy way is to put the xml file on the server where it can be downloaded
directly :-)
but i suppose the xml is created on the fly

so must be something like

httpresponse.ContentType = "text/xml"
httpresponse.buffer = true
httpresponse.write(aStringRepresentingTheXml)
httpresponse.End()


dominique


Henk said:
I have to send an XML file from a server to a client. I've already
made the client and server but what do I have to do to send the file?
Any tips?
 
define client and server.
Henk said:
I have to send an XML file from a server to a client. I've already
made the client and server but what do I have to do to send the file?
Any tips?
 
Hi Henk,

Try to remember that a client is someone who gets things he asked for, not
someone who gets unasked things. (Or he opens it himself that are sended
when you think on mail or a download from a browser)

Al security issues are based on things like that and therefore you have to
do a lot and delete unwanted the security if you do it in another way.

Thinking on that makes mostly this kind of things much easier to analyse.

Just my thought,

Cor
 
Back
Top