Hello,
I've integrated FCKeditor in a jsp of the project on which I'm currently working.
I've used FCKeditor 2.6.3 (the current last one) and FCKeditor.Java 2.4 and it worked fine during my developments, because I've tested with a Tomcat server.
But when doing my integration tests on a WebLogic 8.1 server, I've found that it doesn't work at all anymore, because of the Servlet 2.3/JSP 1.2 configuration.
So I'm trying to downgrade to FCKeditor.Java 2.3, but it seems to me that it's far from a piece of cake...
My first question is simple : is FCKeditor.Java 2.3 compliant with FCKeditor 2.6.3???
If so, is there a good Samaritan here who can explain me how to simply replace FCKeditor.Java 2.4 with FCKeditor.Java 2.3?
In advance, thanks a lot!
Xavier
I've integrated FCKeditor in a jsp of the project on which I'm currently working.
I've used FCKeditor 2.6.3 (the current last one) and FCKeditor.Java 2.4 and it worked fine during my developments, because I've tested with a Tomcat server.
But when doing my integration tests on a WebLogic 8.1 server, I've found that it doesn't work at all anymore, because of the Servlet 2.3/JSP 1.2 configuration.
So I'm trying to downgrade to FCKeditor.Java 2.3, but it seems to me that it's far from a piece of cake...
My first question is simple : is FCKeditor.Java 2.3 compliant with FCKeditor 2.6.3???
If so, is there a good Samaritan here who can explain me how to simply replace FCKeditor.Java 2.4 with FCKeditor.Java 2.3?
In advance, thanks a lot!
Xavier
Re: FCKeditor with WebLogic 8.1
Hello Xavier,
well I am not from Samaria but I will help you as much as I can.
First of all, you broke one of the very fundamental laws of developement. Always test on the same platform you deploy.
Well, there are a few catches: FCKeditor.Java (2.3) has stood still for a couple of years until Thilo and me picked it up. FCKeditor.Java 2.4 is a complete rewrite because the old code was unusable and unmaintable at all. It has nothing to do with the old release anymore.
The good news: You are not the only one who's deploying our package with WebLogic 8.1. I have already given tipps and instructions how to downgrade the library to 2.3/1.2. You have to search the forums. If you are a skilled coder, you should be able to downgrade within a few days.
To answer your question in a sentence. There is no simple replacement. We made an intentional decision to drop Servlet 2.3 support because 2.4 has been released 5 years ago.
Mike
Re: FCKeditor with WebLogic 8.1
I have installed, configured and deployed WL8.1 + FCKEditor 2.6.3 + java-core 2.4. The only thing that you need to do is to rewrite the ConnectorServlet. Just copy and paste it and correct the language compilation problems.
So, you should remove lines as response.setCharacterEncoding("UTF-8") since it was developed after servlet 2.3 and call functions expected as (Object... params) by Object[] collections. For instance:
ur = new UploadResponse(
new Object[]{
new Integer(UploadResponse.SC_RENAMED),
UtilsResponse.constructResponseUrl(
request, resourceType, currentFolderStr, true, ConnectorHandler.isFullUrl()
).concat(newFilename), newFilename
}
);
By now, I have only tested the Browser because I'm developing nowadays... if any problem succeed I will tell you.
Miguel.