Anshuman Jasrotia
Anshuman Jasrotia

Reputation: 3175

Create webservice in drupal

Can we create webservices in Drupal? Our web development team is creating a website in Drupal and they want to build an android application for the same and for that I need to use webservices to access the database.

Upvotes: 3

Views: 201

Answers (2)

Rahul Patel
Rahul Patel

Reputation: 3843

Can we create webservices in Drupal?

Yes, You can Do it.

I had done it via JSON webservices.

Upvotes: 3

Muhammad Reda
Muhammad Reda

Reputation: 27023

Have a look at the services module

A standardized solution of integrating external applications with Drupal. Service callbacks may be used with multiple interfaces like REST, XMLRPC, JSON, JSON-RPC, SOAP, AMF, etc. This allows a Drupal site to provide web services via multiple interfaces while using the same callback code.

It's build for this reason. Drupalize.me android app is built on the services module, so too for many android applications.

Hope this helps... Muhammad.

Upvotes: 5

Related Questions