rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - 3304xfq

Pages: 1
1
HFS ~ HTTP File Server / Re: not support PUT COMMAND
« on: April 15, 2009, 05:10:37 PM »
 :)

2
HFS ~ HTTP File Server / Re: not support PUT COMMAND
« on: April 15, 2009, 05:08:59 PM »
IIS,support HTTP File Read and Write


PUT /xxx HTTP/1.1
Host: localhost
Content-Length: 11
Content-Range: 123-133/*

abcdeabcdea


HTTP PUT :
http://chaoslawful.javaeye.com/blog/310327    (chinese)

3
HFS ~ HTTP File Server / Re: not support PUT COMMAND
« on: April 15, 2009, 02:20:07 PM »
var
  F:THttpFileStream;    //TFileStream+IDHttp
  a:string;
begin
F:=TFileStream.Create('http://abc.com/1000GB.Data',Mode);
   Mode:
          fmOpenReadWrite       Edit File
          fmCreate                  Upload New File
   
           
setlength(s,100);
F.Postion:=100000;
F.read(s[1],1000);   //http Get...RANGE Byte 100000-100000+10000   //OK!!!!

F.Write(s[1],1000);    //Not Support . :'( :'( :'( :'(

f.free;
end;


HttpFileServer,Only Support Read,   :'( :'( :'( :'( :'(



I do not speak English, can only use Pascal Code that I mean, sorry

4
HFS ~ HTTP File Server / not support PUT COMMAND
« on: April 15, 2009, 09:07:26 AM »
1.not support PUT COMMAND
2.not support WEBDAV  ("Get":Down File,"Put" UP File,Edit File....)

Pages: 1