inhttp을 사용하여 파일을 올리려고 합니다.
그런데.. content-type: mutipart/from-data형식입니다.
어떻게 구현을 해야하나요
제가 올려야하는형식은요...
이런형식이거든요
POST /cgi-bin/post.pl HTTP/1.0
Referer : http://hypotherical.ora.com/clinton/upload
connection:keep-Alive
content-type:mutipart/from-data;boundary=------------------------------------------11122222222222
content-length: 313
------------------------------------------11122222222222
content-disposition: from-data; name="fromVB"
1
------------------------------------------11122222222222
content-disposition: from-data; name="thefile";
filename:="c:a.txt"
content-tye : txt/plain
hi ther
hi ther kkkkk
hi ther ll...
------------------------------------------11122222222222
이런식의 파일 전송을 할려고 하는데...
어떻게 해야하는지 모르겠어요
위에 있잖아요.. 위에는 알겠는데...
IdHTTP1.Request.Connection := 'Keep-Alive';
IdHTTP1.Request.ContentType := 'multipart/form-data;
IdHTTP1.Request.ContentLength := Length(FileSendList.text);
TxMessage := 'http://'xxx '/ztsms/servlet/ztsms.send.ExcelFileUpload';
IdHTTP1.Post(TxMessage,FileSendList,ResPonse)
저는 이렇게 코딩했는데.. 위처럼은 죽어도 안되네요..
알려주세요...