Hi, I'm using FCKEditor Java Integration 2.4.1 in a servlet/jsp web application. I have to use FCKeditor in two distinct part of my app ('site' and 'intranet'), with different properties.
I'd like to configure ConnectorServlet to use different properties file for each part, something like fckeditor_site.properties and fckeditor_intranet.properties.
Can I obtain this result?
Thanks, Andrea
I'd like to configure ConnectorServlet to use different properties file for each part, something like fckeditor_site.properties and fckeditor_intranet.properties.
Can I obtain this result?
Thanks, Andrea

Re: FCKeditorJava Integration - multiple properties file
if I understand your problem. A part of a solution which works for me could be used in a JSP:
... String xy = request.getParameter("xy"); String fckconfig = "../fckconfig_" + xy + ".js"; ... ... <FCK:editor instanceName="EditorDefault" basePath="/fckeditor265" toolbarSet="<%=FCK_Symbolleiste%>" width ="100%" height = "450"> <jsp:attribute name="value"><%= text %> </jsp:attribute> <jsp:body> <FCK:config CustomConfigurationsPath="<%= fckconfig %>" ProtectedTags="<%= fckconfig_protectedtags %>" BasePath="" EditorAreaCSS="<%= fckconfig_editorareacss %>" /> </jsp:body> </FCK:editor> ....I use FCK Version 2.6.5
Hope this helps.
Greetings
halmarius