I currently use FCKEditor 2.6.3 and java-core-2.4 jar. My app is not JSP, but servlet based.
I use:
FCKeditor fckEditor = new FCKeditor((req, "html here");)
fckEditor.createHtml();
fckEditor.setValue("html here");
... and in my web.xml file:
<servlet>
<servlet-name>Connector</servlet-name>
<servlet-class>net.fckeditor.connector.ConnectorServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Connector</servlet-name>
<url-pattern>/fckeditor/editor/filemanager/connectors/*</url-pattern>
</servlet-mapping>
Using the above and my application framework allows complete server browse (for documents, images, etc.) and upload of the same.
Now that I'm (attempting) to use CKEditor 3.6, I do not see any of the above - I just see a JSP implementation that does nor make sense for my application.
Does anyone have a non-JSP example for a java (servlet) based app that also has the java implementation?
I use:
FCKeditor fckEditor = new FCKeditor((req, "html here");)
fckEditor.createHtml();
fckEditor.setValue("html here");
... and in my web.xml file:
<servlet>
<servlet-name>Connector</servlet-name>
<servlet-class>net.fckeditor.connector.ConnectorServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Connector</servlet-name>
<url-pattern>/fckeditor/editor/filemanager/connectors/*</url-pattern>
</servlet-mapping>
Using the above and my application framework allows complete server browse (for documents, images, etc.) and upload of the same.
Now that I'm (attempting) to use CKEditor 3.6, I do not see any of the above - I just see a JSP implementation that does nor make sense for my application.
Does anyone have a non-JSP example for a java (servlet) based app that also has the java implementation?
Re: CKEditor 3.6 non-JSP implementation
I have the same problem
Dd you find a solution ?