Re: SFTP file transfer for large files using flex

2012-04-19 Thread Om
; > > > > > Hope this helps! > > > > > > > > > > Thanks > > > > > Avinash Y > > > > > > > > > > > > > > > 2012/3/29 Jarosław Szczepankiewicz > > > > > > > > > > >

Re: SFTP file transfer for large files using flex

2012-04-19 Thread Avinash Narayanan
is not possible due > to > > > > > limitations in flash player and due to plugin api limitations. Also > > > full > > > > > rest answers using full http response codes are not possible due to > > the > > > > > same limitations of browse

Re: SFTP file transfer for large files using flex

2012-04-19 Thread filippo dipisa
> > > same limitations of browser plugin api :( > > > > 28-03-2012 22:46 użytkownik "Hugo Matinho" > > napisał: > > > > > > > > > I know this might be the wrong place to ask and there is of course > > the > > > > > limitatio

Re: SFTP file transfer for large files using flex

2012-04-19 Thread Avinash Narayanan
transport but couldn't we > do > > > > something about flex supporting REST natively it's been several years > > > > already and yes there's blazeDS and GraniteDS and others but most > > > > JavaScript libraries support it natively most modern br

Re: SFTP file transfer for large files using flex

2012-03-28 Thread filippo dipisa
made available on the player because browsers didn't > > > had it back then but come on it's 2012 some rest support would be nice > > > > > > Sent from my Windows Phone > > > From: Ariel Jakobovits > > > Sent: 28-03-2012 21:07 > > > To: fle

Re: SFTP file transfer for large files using flex

2012-03-28 Thread Clint Modien
S and others but most >>> JavaScript libraries support it natively most modern browsers implement >>> it and it wasn't made available on the player because browsers didn't >>> had it back then but come on it's 2012 some rest support would be nice >>> &g

Re: SFTP file transfer for large files using flex

2012-03-28 Thread Avinash Narayanan
tively most modern browsers implement >> > it and it wasn't made available on the player because browsers didn't >> > had it back then but come on it's 2012 some rest support would be nice >> > >> > Sent from my Windows Phone >> >

Re: SFTP file transfer for large files using flex

2012-03-28 Thread Avinash Narayanan
gt; it and it wasn't made available on the player because browsers didn't > > had it back then but come on it's 2012 some rest support would be nice > > > > Sent from my Windows Phone > > From: Ariel Jakobovits > > Sent: 28-03-2012 21:07 > > To: flex

RE: SFTP file transfer for large files using flex

2012-03-28 Thread Jarosław Szczepankiewicz
my Windows Phone > From: Ariel Jakobovits > Sent: 28-03-2012 21:07 > To: flex-dev@incubator.apache.org > Subject: Re: SFTP file transfer for large files using flex > > I might be off, but I don't think an ANE is, or would be, part of Flex. > It is an extension for AIR. >

RE: SFTP file transfer for large files using flex

2012-03-28 Thread Hugo Matinho
flex-dev@incubator.apache.org Subject: Re: SFTP file transfer for large files using flex > I might be off, but I don't think an ANE is, or would be, part of Flex.  It >is an extension for AIR. Flex has components intended only for AIR (such as FileSystemList), and offering a componen

Re: SFTP file transfer for large files using flex

2012-03-28 Thread Ariel Jakobovits
its > Email: arielj...@yahoo.com > Phone: 650-690-2213 > Fax: 650-641-0031 > Cell: 650-823-8699 > > > >  From: Marcus Fritze > To: flex-dev@incubator.apache.org; Marcus Fritze > > Sent: Wednesday, March 28, 2012 10:34 AM > Su

Re: SFTP file transfer for large files using flex

2012-03-28 Thread filippo dipisa
in Air you have the FileStream APi that allows you to stream the file to the server. Basically you have to split the file in different chunks and then send to the server. here some code example ( I wrote on the fly and didn't test, it is just to make you understand ) var fileStream:FileStream = n

Re: SFTP file transfer for large files using flex

2012-03-28 Thread eRoom-D
iel Jakobovits > > Email: arielj...@yahoo.com > > Phone: 650-690-2213 > > Fax: 650-641-0031 > > Cell: 650-823-8699 > > > > > > ____________ > > From: Marcus Fritze > > To: flex-dev@incubator.apache.org; Marcus Frit

Re: SFTP file transfer for large files using flex

2012-03-28 Thread JP Bader
Phone: 650-690-2213 > Fax: 650-641-0031 > Cell: 650-823-8699 > > > >  From: Marcus Fritze > To: flex-dev@incubator.apache.org; Marcus Fritze > > Sent: Wednesday, March 28, 2012 10:34 AM > Subject: Re: SFTP file transfer for large files us

Re: SFTP file transfer for large files using flex

2012-03-28 Thread Ariel Jakobovits
, 2012 10:34 AM Subject: Re: SFTP file transfer for large files using flex Hi, as maybe all know Flash supports only a file size of 100MB. from the docs: FileReference -> upload() > Although Flash Player has no restriction on the size of files you can upload > or download, the player o

Re: SFTP file transfer for large files using flex

2012-03-28 Thread sébastien Paturel
+1 Le 28/03/2012 19:34, Marcus Fritze a écrit : Hi, as maybe all know Flash supports only a file size of 100MB. from the docs: FileReference -> upload() Although Flash Player has no restriction on the size of files you can upload or download, the player officially supports uploads or down

Re: SFTP file transfer for large files using flex

2012-03-28 Thread Marcus Fritze
Hi, as maybe all know Flash supports only a file size of 100MB. from the docs: FileReference -> upload() > Although Flash Player has no restriction on the size of files you can upload > or download, the player officially supports uploads or downloads of up to 100 > MB. I experienced that an

Re: SFTP file transfer for large files using flex

2012-03-28 Thread Avinash Narayanan
Hi JP, Thanks for taking time to reply! Stackoverflow had questions like this but not satisfactory answers. This was my last ditch effort since the other option is to write my own SFTP plug (which clients wont pay me to do :|). As for the apps, this upload needs to be 'part' of a desktop applicat

Re: SFTP file transfer for large files using flex

2012-03-28 Thread JP Bader
Hi Avinash, My quick take on this is why you would want to recreate a tool for this? Aren't there plenty of free SFTP apps already? Why not take advantage of one of them? Tortoise, Cute, WinSCP, FileZilla, etc. Also, questions like these might be better asked on other forums like stack overflow

SFTP file transfer for large files using flex

2012-03-28 Thread Avinash Narayanan
Hi All, I know this community is meant for future development of Apache Flex but I'm a little lost here. I need to upload ~2Gb file from my local machine to a url via an air app using sftp. problem is we don't have sftp lib available. Also, I'm confused as to why in forums it says the flash playe