Hi all! I have to develop an android application, that have to interface with an alfresco web service server. But i cannot use alfresco in this situation because of some unsupported java api in android. So i want to develop a client manually. But i cannot find any thing about protocol between server and client in alfresco.com Any one know any document about this ? Thanks in advance! Thanh.
You can use the REST API of Alfresco, I think it is more easy than use SOAP messages. You can find more information about all the exposed methods here: http://localhost:8080/alfresco/service/ You can find all the methods with all the needed input arguments.
Using HTTP methods (GET, POST, PUT, DELETE) you can manage contents in Alfresco remotely :wink:
Yes. PUT will generally be used for an "update to an existing object" DELETE will generaly be used for "delete an existing object". POST is "create a new object" and GET is "read an object".
hey..thnx for the reply.. Is there any way to secure those PUT and DELETE methods since our security team has issues with these methods being used by Alfresco as they have less security against hacks.