On Sep 3, 8:35 am, Frank Weiss <fewe...@gmail.com> wrote:
> I wonder if we are on the same page with client-server. Anyway, maybe
> an example of an API you want to use would help clear things up.

Yeah, terminology problems can be fun.  (NOT!)

We have Tomcat running on a server machine at the office.
It has a .war file generated that uses the Spring Framework.
One of the API's this app provides is something like:
   public List getCurrentData( DataSpecifier params);

In our Java Desktop app, I just ask the Spring framework for the
service object, and then I can do:
   List data = service.getCurrentData( whatdatatoget);
That makes the call to the server, and marshals the resulting data
back into the appropriate objects in my application.

I'm trying to figure out how to do the equivalent from the Android app
- since it is NOT running the Spring framework.

-- 
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

Reply via email to