• 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:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Help with SOAP

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello members,

I am beginner to SOAP and XML. I am developing an android app. I need my app to communicate with the remote database.

please help me how to connect with remote database and transfer data.


waiting,,,,,,
 
Bartender
Posts: 7645
178
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A couple of points: Firstly, you can't communicate with a DB, you need an intermediate server that is accessible via HTTP. That server in turn will communicate with the DB.

Secondly, why do you want to use SOAP? For a mobile device, it would be much more common to use REST. Android has the excellent HttpClient library built in which makes that pretty easy. You can use a library such as Jersey on the server.

It's pretty easy to find example code of Android apps using REST to communicate with servers on the web. Just ask Google :-)
 
Charan Kumar Br
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
@Tim Moores,

Thanks for your feedback.

Which is the best server to communicate? I thought of using IBM Websphere Application Sphere(WAS). Is that good? Or any recommendation???
 
Tim Moores
Bartender
Posts: 7645
178
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's impossible to make a recommendation without knowing a whole lot more about what you intend to do. If a REST server is all, then a servlet engine like Tomcat should be sufficient. WAS would work as well, though.
 
Charan Kumar Br
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
@Tim Moores,

hmmm okay..

I just wanted to communicate with remote database and receive some data. it has no complex data transfer..
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic