Hi John John Crawford schrieb: > Does anyone know if it possible to modify data / structure in another > workspace (outside of the current sling sandbox) if the user has the proper > credentials to that workspace?
The SlingPostServlet itself cannot do this at the moment: It is using the session of the current request and thus only has access to the workspace of the session. If you implement your own PostOperation you could of course get another session to access a different workspace for your operation. Regards Felix
