Hey man!

Thanks a lot! it works

you saved me a lot of time, now I can go to sleep...

Thanks again



On Nov 3, 1:06 am, Mark Murphy <[EMAIL PROTECTED]> wrote:
> petunio wrote:
> > Hi Everybody
>
> > I am writing an application that involves using a server for
> > uploading / downloading data...
>
> > I am using the Jakarta Commons FTP, well, to be more precise, a
> > wrapper around it, found at:
> >www.nsftools.com
>
> > well, my question is that my code used to work with the android sdk
> > version 3, but now that I am upgrading it to the new sdk, the
> > connectAndLogin function doesn't work, this is, it does not connect to
> > the host ( I am sure that the host, the name and the password are
> > correct)
>
> > this is the function:
>
> >    public boolean connectAndLogin (String host, String userName, String
> > password)
> >                    throws  IOException, UnknownHostException,
> > FTPConnectionClosedException
> >    {
>
> >            boolean success = false;
>
> >            connect(host);
>
> >            int reply = getReplyCode();
>
> >            if (FTPReply.isPositiveCompletion(reply))
> >                    success = login(userName, password);
> >            if (!success)
> >                    disconnect();
>
> >            return success;
>
> >    }
>
> > when it calls connect(host), I can see at the adb logcat the following
> > message:
> > "OSNetworkS unknown socket error -1"
>
> > has anybody come along this problem?
>
> "unknown socket error -1" frequently comes from missing the INTERNET
> permission in your AndroidManifest.xml.
>
> --
> Mark Murphy (a Commons Guy)http://commonsware.com
>
> Android Training on the Ranch! -- Mar 16-20, 
> 2009http://www.bignerdranch.com/schedule.shtml
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to