nego ady a écrit : > hello, > My name is Neguletu Marius and I am a romanian student with a scolarship > at ENSEEIHT Toulouse. here I will make my graduation project and I have > to use Nuxeo platform. > I have tried to use the reference book of nuxeo but I didn't found many > details for developers. What I have to do in my project is to connect > remotely to nuxeo, to create a workspace and in the workspace I have to > create folders and every folders to have documents in it. I am using > Java for developement. All this actions have to be done remotely from > java. In the reference book i have read something about Restlet API and > I want to know if that will help me to do my work. If you have any other > references or samples of code I will be very grateful.
The Restlet API is indeed a simple yet pluggable way to integrate remote applications. The principles of the REST 'protocol' are explained here: http://en.wikipedia.org/wiki/Representational_State_Transfer The Java restlet librarie is documented here: http://www.restlet.org/documentation/ To build your own resltets and register them with Nuxeo. You can take example on the org.nuxeo.ecm.platform.ui.web.restAPI package of the nuxeo-platform-ui-web subproject. The default restlets are registered here: http://doc.nuxeo.org/5.1/components/org.nuxeo.ecm.platform.ui.web.restAPI.contrib.html -- Olivier _______________________________________________ ECM mailing list [email protected] http://lists.nuxeo.com/mailman/listinfo/ecm
