You may want to use the reusable Jt component and design pattern: DAOs, MDP messaging and Restful web services. The following links may help:
Java Pattern Oriented Framework, An application of the Messaging Design Pattern IBM Technical Library http://www.ibm.com/developerworks/webservices/library/ws-designpattern/index.html Messaging Design Pattern and a distributed Component/Service Model https://jt.dev.java.net/files/documents/5553/149793/MDPdistributedModel.pdf Messaging Design Pattern (MDP) and pattern implementation - Published in the 17th conference on Pattern Languages of Programs (PLoP 2010). https://jt.dev.java.net/files/documents/5553/150311/designPatterns.pdf You may want to check the Jt user's guide.: https://jt.dev.java.net/files/documents/5553/151390/Jt.pdf There are several examples that describe DAOs and Web Services. It also includes specific Android information for Web Service access All the components and pieces are there. You just need to put them together: DAOs will give you access to the DataBase. You may might want to use the JDBC adapter for database access instead of DAOs. I hope this helps. On Nov 12, 7:12 am, Pableras <[email protected]> wrote: > Hi, I have an android APP. I need to connect to a remote D.B. on the > internet. All i know is that i have to use a Web Service, installed on > the remote DB server. > > Whith my Android APP i have to connect to the web service, and the web > service will do the logical operations to get the necesary data from > the D.B. and will send them to me. > > OK, the web service is not a problem, i have a friend that will do it > (i have no idea about web services), but i dont know how i have to do > the connexion with the Web Services, and also i dont know how have to > be the functions of the Web Service. > > I have searched for tutorials on google but i can't find a good > tutorial for beginners like me > > can someone give me a little help? for example, a good tutorial for > beginners connecting android to a remote DB with webservices? > > thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] 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

