Install issue in Railo-express

Hi,

I tried to install ContentBox v2.0.0 in Railo-express, I’m able to create data source, after that getting 404 error as below

Your issue is that SES URLs only work in the root directory because the servlet container spec only allows for one wildcard.

Edit \www\ROOT\WEB-INF\web.xml

and find the bit that has

CFMLServlet

/index.cfm/*

Copy and paste that block and change it to be

CFMLServlet

/infotrax_wiki/index.cfm/*

The reason this works in Adobe CF is because they modified Tomcat to support it ( and Jrun already supported it in earlier versions).

Thanks!

~Brad

ColdBox Platform Evangelist
Ortus Solutions, Corp

E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com

Thanks Brad,
It is working fine now.