Hi,
I'd like more information on how to integrate the FCKeditor into a current JSP applicaiton running in tomcat 5.5.
While following the steps provided in the documentation i downloaded tje FCKEditor.Java v2.3 package and the FCKeditor v2.4 core zip and placed the files accordingly in a folder called FCKEditor.
I then placed this folder in the root of my application.
The part I have trouble understanding is:
"- then you have to create in tomcat (or any servlet container) a new context named "FCKeditor"
that points to the previously created "FCKeditor\web" folder "
My webapp has a custom context (filename.xml) and everytime I add to this context with the line
<Context path="FCKeditor" docBase="${catalina.home}/webapps/<appname>/FCKeditor/web" debug="1" reloadable="true" crossContext="true"/>
(the <appname> is replaced with the actual name of the app)
I get a XML parsing error thrown at me. Any ideas?
I'd like more information on how to integrate the FCKeditor into a current JSP applicaiton running in tomcat 5.5.
While following the steps provided in the documentation i downloaded tje FCKEditor.Java v2.3 package and the FCKeditor v2.4 core zip and placed the files accordingly in a folder called FCKEditor.
I then placed this folder in the root of my application.
The part I have trouble understanding is:
"- then you have to create in tomcat (or any servlet container) a new context named "FCKeditor"
that points to the previously created "FCKeditor\web" folder "
My webapp has a custom context (filename.xml) and everytime I add to this context with the line
<Context path="FCKeditor" docBase="${catalina.home}/webapps/<appname>/FCKeditor/web" debug="1" reloadable="true" crossContext="true"/>
(the <appname> is replaced with the actual name of the app)
I get a XML parsing error thrown at me. Any ideas?
RE: Ho to integrate FCKeditor with JSP
Also, as a test I tried the following:
1) Had a separate folder FCKeditor with same contents in the webapp folder in tomcat 5.5
2) Created a FCKeditor.xml context file in conf/catalina/localhost directory with the following:
<Context path="/FCKeditor" docBase="${catalina.home}/webapps/FCKeditor/web" debug="1"
reloadable="true" crossContext="true"/>
The startup of tomcat now seems to be error free, however, when i try accessing the page,
http://localhost:9090/FCKeditor/_samples/index.jsp
I get a 404 not found error. Any help is appreciated