Help with translation into Appery please -- Below is FoxPro code that sends pics
IF this.http.state= 0 OR this.http.state = 2
** this.http.blocking = .t.
this.http.request.Filename = SYS(5)+SYS(2003)+'\work_\'+file_name
this.http.Request.Accept = 'AUX'
this.http.Request.UserAgent = 'my app'
** this.edit1.Value = this.http.request.Filename + CHR(10)+this.edit1.value
this.http.put('/'+file_name+',upload')
ENDIF