[android-developers] xmlrpc client library with authentication

2010-09-11 Thread kukukk
Hy, Is anybody using the android-xmlrpc client library with authentication? Without authentication it is working great, but I can't get it to work with authentication. Can somebody send me a piece of code, where the authentication works or help me to debug what is the problem? Or there is any

[android-developers] Re: Using socket in a service communicating with more activities...

2010-09-05 Thread kukukk
), get the thread's Hander object (use the default constructor for that) and make it available to the worker thread. In the worker thread, use a subclass of Runnable (can be a anonymous inner class) with Handler.post. -- Kostya 02.09.2010 10:22, kukukk пишет: Thank you! I have

[android-developers] Re: Using socket in a service communicating with more activities...

2010-09-03 Thread kukukk
at the Application Fundamentalshttp://developer.android.com/guide/topics/fundamentals.htmlin the Dev Guide and the sample code that ships with the SDK for examples of how to do this. -- Jeremy Wadsack On Sun, Aug 29, 2010 at 12:16 PM, kukukk bszabo...@gmail.com wrote: Hy! I want to create

[android-developers] Using socket in a service communicating with more activities...

2010-09-01 Thread kukukk
in the same thread as the activities I suppose that I still have to create a new thread for socket communication. How can I send the data received by the socket to the service? Thanks in advance, kukukk PS. I hope you understand my question and sorry if it is not the right forum for it -- You