• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Android - Enterprise Mobile Apps

 
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Mark,

I would like to know if there would be something similiar to Enterprise applications with respect to mobile development. I just saw from the Andriod reference materials that we can make RPC calls. So is that a sign that in the future Enterprise Mobile Applications might be a reality? Does your book touches on such things if they make sense?
 
Author
Posts: 131
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

I would like to know if there would be something similiar to Enterprise applications with respect to mobile development.



You would need to be a bit more specific before I could provide an answer to that question.

I just saw from the Andriod reference materials that we can make RPC calls.



Ummmm...

There is an on-device RPC mechanism for the purposes of having one application talk to another. There are two HTTP APIs on-device (UrlConnection and Apache's HttpClient). However, there is no SOAP or XML-RPC stack built into Android, if that is what you are seeking.

Does your book touches on such things if they make sense?



The current roster of books cover things built into Android, with little coverage of third-party libraries. That may change in time.
 
Joe San
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for the reply!

My first question was can we build Enterprise mobile applications using Android, somthing similiar to we do using J2EE?
 
Ranch Hand
Posts: 346
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Are you referring to web services?


Jothi Shankar Kumar wrote:Thanks for the reply!

My first question was can we build Enterprise mobile applications using Android, somthing similiar to we do using J2EE?

 
Joe San
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ja, kind of!
 
Author
Posts: 142
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Calling web services is definitely supported in Android clients. There's an example program that calls the Google Translation web service in my book, and an advanced version of that program is available on the Android Market.

I'd suggest avoiding SOAP if you can, and stick with REST-ful services, perhaps with JSON. But if you can't avoid SOAP I found this thread from a guy who got kSOAP working with Android: Calling SOAP 1.1. Web Services from Android (ksoap2 + apache http)
 
Fred Grott
Ranch Hand
Posts: 346
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There is alos an OAUTH java library for Android.

 
reply
    Bookmark Topic Watch Topic
  • New Topic