Hi,
I need to post two files (xml and binary) to a IIS server in PHP receive by ASP but the binary file is not properly upload.
It's work with php on Apache server...
I search a library to post multiple files to any web server ?
HTTP query :
POST ...uri ...HTTP/1.0
Content-type: multipart/form-data; boundary=--a14d2d7863a273efbd98332fb9f56fb6
Content-Length:9353
----a14d2d7863a273efbd98332fb9f56fb6
Content-disposition: form-data; name="xmlfile"; filename="news1944.xml"
Content-Type: text/xml
Content-Length: 1696
...xml content...
----a14d2d7863a273efbd98332fb9f56fb6
Content-disposition: form-data; name="imagefile"; filename="blw_logo.png"
Content-Type:image/png
Content-Length:7657
Content-Transfer-Encoding: binary
..binary content...
----a14d2d7863a273efbd98332fb9f56fb6--
Any Idea are welcome ?
Thanks you in advance