Hi, I'm going to make a webapp with jackrabbit. I should want to expose a repository throw http calls.
I use standard (i hope) things : web.xml from jackrabbit, RepositoryStartupServlet, JcrRemotingServlet (I should want use a JcrRemotingServlet as base for my work), and so on. On init, all is good : I can see traces log ok. But when I call the repository url, it doesn't find the repository... which is ok in the log. Here is log : 10.06.2010 09:42:10 *INFO * RepositoryImpl: workspace 'default' initialized (RepositoryImpl.java, line 2000) 10.06.2010 09:42:10 *INFO * RepositoryImpl: Repository started (RepositoryImpl.java, line 402) 10.06.2010 09:42:10 *INFO * RepositoryStartupServlet: RepositoryStartupServlet initialized. (RepositoryStartupServlet.java, line 241) 10.06.2010 09:42:10 *INFO * RepositoryAccessServlet: RepositoryAccessServlet initialized. (RepositoryAccessServlet.java, line 98) 10.06.2010 09:42:10 *INFO * SimpleWebdavServlet: resource-path-prefix = '/repository' (SimpleWebdavServlet.java, line 159) 10.06.2010 09:42:10 *INFO * SimpleWebdavServlet: WWW-Authenticate header = 'Basic realm="Jackrabbit Webdav Server"' (SimpleWebdavServlet.java, line 165) 10 juin 2010 09:42:11 org.apache.catalina.core.StandardContext start INFO: Le conteneur org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/jcrwebbuzz] a déjà été démarré 10.06.2010 09:45:48 *ERROR* RepositoryAccessServlet: The content repository is not available. Please check RepositoryAccessServlet configuration in web.xml. (RepositoryAccessServlet.java, line 306) .. first line from the init phase (call url http://myapp from browser) : I can see the repository is OK. Last line (call url http://myapp/repository from browser) is nok. Why ? Thanks for your help. PS : it's jackarabbit 2.1.
