I followed the instructions in Setting up Eclipse 3.4 for Sling and followed
the Readme instructions in the launchpad/webapp directory:
Build and run this
cd launchpad/webapp
mvn clean package jetty:run
Once the webapp starts, http://localhost:8888/system/console should
display the Felix
OSGi console.
3) Test node creation and display
To create a node with curl:
curl -D - -Ftitle=something
http://admin:ad...@localhost:8888/testing/this
Then, http://admin:ad...@localhost:8888/testing/this should display a
default HTML
representation, including the value of the "title" property.
However, instead of a default html representation, I got the following
403 error message:
The requested URL /testing/this/ resulted in an error in
org.apache.sling.servlets.get.DefaultGetServlet.
Any help on this would be appreciated.
Glenn...