Hello...
I have specific problem with ASP.NET server...
I have writen code in Delphi with WinInet - which collect binary data togehther with MultiPart Form variables and send them on to ASP.NET server... Form is received, but ASP.NET can not recognize it...
Begin of data look as this:
Content-Type: multipart/form-data; boundary=---------------------------7d63b9261906a2
Cookie: ASP.NET_SessionId=wyc1qgbe0bjkpmnv2eyn0m55; path=/
Content-Length: 924855
---------------------------7d63b9261906a2
Content-Disposition: form-data; name="Action"
New
---------------------------7d63b9261906a2
Content-Disposition: form-data; name="SMAPIAction"
FileUpload
---------------------------7d63b9261906a2
Content-Disposition: form-data; name="DraftID"
2C8C0EAD63B24D4492403BDF908DA67B
---------------------------7d63b9261906a2
Content-Disposition: form-data; name="file_0"; filename="C:\ROK-PLAYER.zip"
Content-Type: application/octet-string
PK...........
When I post these data to classic CGI under IIS, form data are recognized OK...
When I post them to ASP.NET server - problem continue...
I have set Content-Length of course...
Do you know some settings which can help me with posting data to ASP.NET server, please?
Thank you for responses...