[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-22 Thread Android Development
i confirm that my library works well on android. I tried it out with a
sample application.  My library is an extension of the apache http commons
client api.

On Sun, Jul 5, 2009 at 11:44 AM, Android Development indodr...@gmail.comwrote:

 I will try out my library in a PoC application today to see what happens.
 The library i have,  is implementing the XCAP protocol(
 http://www.ietf.org/rfc/rfc4825.txt) which is a wrapper over the HTTP
 client API.


 On Fri, Jul 3, 2009 at 11:43 PM, Dagvadorj Galbadrakh dagvad...@gmail.com
  wrote:


 Android doesn't use HttpClient 3 actually. If you are using Eclipse
 and actually initiated your project as Android application, you can
 easily get corrected.

 On Jul 3, 8:13 am, Nithu nithi...@gmail.com wrote:
  Thanks for the reply
 
  But these two libraries not found I just checked using editor...
  and also you give the reference
  blog is also not found these libraries
 
  Thank You
  Nithin N V
 



--~--~-~--~~~---~--~~
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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-05 Thread Android Development
I will try out my library in a PoC application today to see what happens.
The library i have,  is implementing the XCAP protocol(
http://www.ietf.org/rfc/rfc4825.txt) which is a wrapper over the HTTP client
API.

On Fri, Jul 3, 2009 at 11:43 PM, Dagvadorj Galbadrakh
dagvad...@gmail.comwrote:


 Android doesn't use HttpClient 3 actually. If you are using Eclipse
 and actually initiated your project as Android application, you can
 easily get corrected.

 On Jul 3, 8:13 am, Nithu nithi...@gmail.com wrote:
  Thanks for the reply
 
  But these two libraries not found I just checked using editor...
  and also you give the reference
  blog is also not found these libraries
 
  Thank You
  Nithin N V
 


--~--~-~--~~~---~--~~
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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-03 Thread Markuz05

Nithu:
are you using sdk 1.5 or 1.1?

Android  Development:
you can use only libraries compatible with android sdk.
For performance reasons Dalvik VirtualMachine is not the standard Java
VirtualMachine
so Android uses its API that are little different from Java standard
API.
This means that you can use any wrapper if it uses only compatible
Android libraries





On 3 Lug, 07:46, Android Development indodr...@gmail.com wrote:
 Hello,
 I have a custom library that is built as a wrapper around the apache commons
 http client libraries. Is it possible for me to use this library on android
 ? Or am i only limited to use the http client libraries as part of android ?



 On Fri, Jul 3, 2009 at 10:43 AM, Nithu nithi...@gmail.com wrote:

  Thanks for the reply

  But these two libraries not found I just checked using editor...
  and also you give the reference
  blog is also not found these libraries

  Thank You
  Nithin N V
--~--~-~--~~~---~--~~
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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-03 Thread Nithu

I am using sdk 1.5

--~--~-~--~~~---~--~~
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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-03 Thread Android Development
Thanks for the reply Markuz05.
My API is a wrapper over the Apache HTTP Client API..which is a well tested
and proven API: http://hc.apache.org/httpclient-3.x/apidocs/

http://hc.apache.org/httpclient-3.x/apidocs/As you said, that the
libraries being used in an Android application need to be compatible with
the Android SDK, is there a wiki page in your knowledge that specifies the
non-compliant APIs for Android ?

What standard JAVA packages are supported and which ones are not ?

It will be very helpful, if i can get some info on this.


On Fri, Jul 3, 2009 at 1:46 PM, Nithu nithi...@gmail.com wrote:


 I am using sdk 1.5

 


--~--~-~--~~~---~--~~
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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-03 Thread Markuz05

All libraries documented in the reference 
http://developer.android.com/reference/packages.html

For example if you want to use an HttpClient you have to check if an
Android implementation exists.
And, as you can see,  there is an implementation of the abstract class
HttpClient called DefaultHttpClient. This class is not the
org.apache.commons.httpclient.HttpClient but you can use it in your
Android enviroment.



On 3 Lug, 11:54, Android Development indodr...@gmail.com wrote:
 Thanks for the reply Markuz05.
 My API is a wrapper over the Apache HTTP Client API..which is a well tested
 and proven API:http://hc.apache.org/httpclient-3.x/apidocs/

 http://hc.apache.org/httpclient-3.x/apidocs/As you said, that the
 libraries being used in an Android application need to be compatible with
 the Android SDK, is there a wiki page in your knowledge that specifies the
 non-compliant APIs for Android ?

 What standard JAVA packages are supported and which ones are not ?

 It will be very helpful, if i can get some info on this.



 On Fri, Jul 3, 2009 at 1:46 PM, Nithu nithi...@gmail.com wrote:

  I am using sdk 1.5
--~--~-~--~~~---~--~~
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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-03 Thread Dagvadorj Galbadrakh

Android doesn't use HttpClient 3 actually. If you are using Eclipse
and actually initiated your project as Android application, you can
easily get corrected.

On Jul 3, 8:13 am, Nithu nithi...@gmail.com wrote:
 Thanks for the reply

 But these two libraries not found I just checked using editor...
 and also you give the reference
 blog is also not found these libraries

 Thank You
 Nithin N V
--~--~-~--~~~---~--~~
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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-02 Thread Markuz05

You have to import android-sdk libraries:
org.apache.http.client.HttpClient

Look at the reference: 
http://developer.android.com/reference/org/apache/http/package-descr.html
Bye

On 2 Lug, 08:06, N V nithi...@gmail.com wrote:
 Hi to all...

            I got one blog which interacts with servlets... Link as
 follows

 http://groups.google.com/group/android-developers/browse_thread/threa...

 In that program 2 libraries were used..

 1--- import org.apache.commons.httpclient.HttpClient;
 2--- import org.apache.commons.httpclient.methods.GetMethod;

 When i check these libraries in my program, its show error Can any
 one help me how to resolve this error

 Thank You
 N V

--~--~-~--~~~---~--~~
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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-02 Thread Nithu

Thanks for the reply

But these two libraries not found I just checked using editor...
and also you give the reference
blog is also not found these libraries

Thank You
Nithin N V

--~--~-~--~~~---~--~~
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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-02 Thread Android Development
Hello,
I have a custom library that is built as a wrapper around the apache commons
http client libraries. Is it possible for me to use this library on android
? Or am i only limited to use the http client libraries as part of android ?

On Fri, Jul 3, 2009 at 10:43 AM, Nithu nithi...@gmail.com wrote:


 Thanks for the reply

 But these two libraries not found I just checked using editor...
 and also you give the reference
 blog is also not found these libraries

 Thank You
 Nithin N V

 


--~--~-~--~~~---~--~~
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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---