[android-developers] ftp interaction on my app

2012-08-06 Thread tushar
need some guidelines for using ftp on my app to upload data or file on my server with out root if possible can someone please guided with any link that are working for them thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

Re: [android-developers] FTP for android!

2012-05-19 Thread Kristopher Micinski
Right, but you posted to at least two lists, three times... kris On Sat, May 19, 2012 at 3:00 PM, Talha Qamar wrote: > actually i couldn't get the right solution of my problem. > > On Sat, May 19, 2012 at 11:47 PM, Kristopher Micinski > wrote: >> >> Please quit cross posting and sending you

Re: [android-developers] FTP for android!

2012-05-19 Thread Talha Qamar
actually i couldn't get the right solution of my problem. On Sat, May 19, 2012 at 11:47 PM, Kristopher Micinski < krismicin...@gmail.com> wrote: > Please quit cross posting and sending your question multiple times... > > kris > > On Sat, May 19, 2012 at 2:42 PM, Talha Qamar > wrote: > > Hi i

Re: [android-developers] FTP for android!

2012-05-19 Thread Kristopher Micinski
Please quit cross posting and sending your question multiple times... kris On Sat, May 19, 2012 at 2:42 PM, Talha Qamar wrote: > Hi i need some assistance on android apps development.I wanna make/ > write a simple file transfer protocol(ftp) for android devicesUser > simply selects some file

Re: [android-developers] FTP for android!

2012-05-19 Thread Raghav Sood
Your question has already been answered before, and there is still no need to cross post to so many lists. This is standard Java FTP. It has nothing to do with Android itself. Thanks On Sun, May 20, 2012 at 12:12 AM, Talha Qamar wrote: > Hi i need some assistance on android apps development.I w

[android-developers] FTP for android!

2012-05-19 Thread Talha Qamar
Hi i need some assistance on android apps development.I wanna make/ write a simple file transfer protocol(ftp) for android devicesUser simply selects some files from his smart phones and then ftp transfer these files to specific web server.Please i need some help...If you do have some ideas, kn

Re: [android-developers] FTP for android!

2012-05-18 Thread Kristopher Micinski
this was also cross posted to multiple lists... You might just have wanted to try android-developers... However, this has nothing to do with Android. It's just java ftp. There are already a number of ftp apps for Android anyway... kris On Fri, May 18, 2012 at 1:44 PM, Talha Qamar wrote: > Hi i

[android-developers] FTP for android!

2012-05-18 Thread Talha Qamar
Hi i need some assistance on android apps development.I wanna make a simple file transfer protocol(ftp) for android devicesUser simply selects some files from his smart phones and then ftp transfer these files to specific web server.Please i need some help...If you do have some ideas, knowledge

[android-developers] FTP for android!

2012-05-18 Thread Talha Qamar
Hi i need some assistance on android apps development.I wanna make a simple file transfer protocol(ftp) for android devicesUser simply selects some files from his smart phones and then ftp transfer these files to specific web server.Please i need some help...If you do have some ideas, knowledge

Re: [android-developers] ftp problem

2012-01-02 Thread Mukesh Srivastav
Hey Tom, Try my modified code, you will get succeeded. boolean isImgUploaded = false; FTPClient imgUploadClient = new FTPClient(); imgUploadClient.setDefaultTimeout(1000*180); int reply = 0; try { imgUploadClient.connect(AppHelper.FTP_SERVER_HOST, AppHelper.FTP_SERVER_PORT); if (imgUploadClient.l

[android-developers] ftp problem

2012-01-02 Thread tbellens
Hello , currently I'm writing an android application that needs a file on a ftp-server (drivehq) to operate properly . Because the ftpclient of sun doesn't work for android ,I used the ftpclient of apache.commons . When i debug up my app on the device (htc wildfire) , it gives me an IO-message who

[android-developers] FTP Application for IPv6

2010-08-10 Thread Joe Petruchi
Hello All, Does any body know if there exists any package to test FTP over IPv6. I tried with some of FTP applications available in market but it doesnt seem to support IPv6. Please help as this is very urgent for me Best Regards Petruchi -- You received this message because you are subscribe

[android-developers] FTP client : How to change working directory

2010-04-22 Thread Guru
Hi friends, I am beginner to android. I am trying to develop FTP client in android. I am unable to change the working directory. I am using FileZilla FTP server. I want to upload one file (samplefile.txt) to FTP server. So, Step 1: I created this file using FileOutputStream fOut = openFileOutput("

[android-developers] FTP server on Android and Implicit SSL

2009-08-03 Thread siapi
I am trying to setup a FTP server on Android using Apache FTP server libraries. I was able to setup a FTP with Implicit SSL enabled in JVM. When I ran the FTP server on Android, the connection was always lost right after the client received the certificate. The following error was shown in LogCat.

[android-developers] FTP

2009-07-29 Thread dario
package com.android; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPFile; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.But

[android-developers] FTP on android

2009-04-11 Thread tiwana
HI, I am having problem running FTP client on android. I know there are no FTP libraries on android, so i downloaded commons-net-1.4.1.jar and added it to my project. But my app is not able to connect to any ftp server. This is the code, import org.apache.commons.net.ftp.FTPClient; f

[android-developers] FTP Client

2008-11-20 Thread Phubeone
Is anyone out there working on a FTP client for Android or does anyone know if one is already available? I have been looking for awhile and haven't found anything. Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gro

[android-developers] FTP?

2008-10-22 Thread disappearedng
Hi everyone, 1) Does android have its own FTP client? 2) Does android use TCP by default to establish a connection? 3) Does Android have its own TCP library? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android De