Exception while calling a Servlet
Hello,
I am trying to access a servlet with a doPost method from the jsp and getting the following exception -
Caused by: org.apache.sling.api.resource.PersistenceException: Resource at '/location/Stores' is not modifiable.
at org.apache.sling.servlets.post.impl.helper.SlingPropertyValueHandler.setProperty(SlingPropertyValueHandler.java:153)
at org.apache.sling.servlets.post.impl.operations.ModifyOperation.writeContent(ModifyOperation.java:411)
at org.apache.sling.servlets.post.impl.operations.ModifyOperation.doRun(ModifyOperation.java:101)
My bundle is built successfully and the resource resolver shows the path as expected and resolves to the given path.
Activate method of the servlet is successfully called.However while trying to give an Ajax call from the jsp it never reaches the doPost method.I tried it both with doPost and doGet.Please help.