if your data is stored into a file in disk then you can just us file upload
in and upload your file to some asp script which can recieve the file and
then process it itself or pass it to any other scipt.
you can use the input tage
<input type="file" name="T1" size="20">
for this.
I think you can do the reset.
regards
Rajeev Rumale
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Rajeev Rumale
MyAngel.Net Pte Ltd., Phone :
(65)8831530 (office)
#04-01, 180 B, The Bencoolen, Email :
[EMAIL PROTECTED]
Bencoolen Street, Singapore - 189648 ICQ : 121001541
Website : www.myangel.net
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
----- Original Message -----
From: "Bas Kok" <[EMAIL PROTECTED]>
To: "Beginners perl" <[EMAIL PROTECTED]>
Sent: Friday, July 06, 2001 11:49 PM
Subject: XML
> Dear PERL community,
>
> I want to http-post a xml file to an asp script, it is supposed to return
> xml formatted information to me. So far i couldn't establish this. For all
i
> know i can only send 'variable = value' kind of data to http post and http
> get scripts. Is there a standard way for sending xml to scripts?
> I've seen an example written in vb script for the concerned xml service,
> it's main routine was:
>
>
>
> Dim requestDOM, responseDOM, xmlHTTP
> Set requestDOM = CreateObject("MSXML2.DOMDocument")
> ' responseDOM is later set to an automatically generated instance
> ' of MSXML2.DOMDocument
> Set xmlHTTP = CreateObject("MSXML2.XMLHTTP")
>
> ' try to load the request message
> If requestDOM.load(REQUEST_FILE) Then
> ' Open HTTP connection and send request
> xmlHTTP.open "POST", REQUEST_SERVER, False
> xmlHTTP.send requestDOM
> ' You should check for errors here
> Set responseDOM = xmlHTTP.responseXML
> ' Save the quote data
> If SaveQuote(responseDOM) Then
> LogEvent 0, "Data successfully received"
> Else
> LogEvent 1, "Could not retrieve quote data"
> End If
> Else
> LogEvent 1, "Could not load request XML"
> End If
> End Sub
>
>
>
> I don't understand this script and it's the almost the only documentation
> available for the xml service. I am concerned about the use of some
> MSXML2.DOMDocument, which looks a lot like microsoft only.... please help!
> it is freaking me out!
>
> thanks in advance,
> Bas ;-)
>