Is it possible to write web services in CakePHP? any sample tutorial?
+1
A:
Webservices are not really different from normal web applications. The main difference is the output.
Because you don't tell what kind of service you want to build, I only can give general advice.
Ikke
2010-05-09 20:26:29
+2
A:
Yes, just format the output as XML or JSON or something else instead of HTML.
Matt Huggins
2010-05-09 20:29:59
+2
A:
By adding two lines of code to your routes.php file you can lay the groundwork for a simple RESTful webservice using your existing models and controllers.
NathanGaskin
2010-05-14 16:27:37