Hello All,
just wanted to know if someone started to use the java integration package and if found some problem...
if not, what other feature would u like?
Simone
just wanted to know if someone started to use the java integration package and if found some problem...
if not, what other feature would u like?
Simone
RE: Java integration package: what else?
Then when I'm pretty sure the core functions are ok I'm adding Struts support.
Simone
RE: Java integration package: what else?
Hi Simone,
I have som problem with Java integration... I posted a message into the following thread:
https://sourceforge.net/forum/forum.php ... _id=379487
Could you help me?
RE: Java integration package: what else?
You might want to check for Camino in the isCompatible() method because it doesn't work with FCKEditor.
I guess it will once https://bugzilla.mozilla.org/show_bug.cgi?id=197253 is fixed.
RE: Java integration package: what else?
I don't have Mac so cannot test.
Simone
RE: Java integration package: what else?
if you want, I can post it, but I think it should be better to add some abstract layer, so users can choose what to use: struts, none, or else...
RE: Java integration package: what else?
Thanks
RE: Java integration package: what else?
com.fredck.FCKeditor.connector.ConnectorServlet.doGet
the
File currentDir=new File(currentDirPath);
if(!currentDir.exists()){
currentDir.mkdir();
}
to
File currentDir=new File(currentDirPath);
if(!currentDir.exists()){
currentDir.mkdirs();
}
?
If someone defines in frmresourcetype.html a type like
['/usr/local/data/projects/aProject/reports','aProject reports']
the servlet doesn't run into an error.
Thanks a lot
xnb
RE: Java integration package: what else?
The only thing I can think of adding is a way to specify the upload folder in the tag. And perhaps also specify a filter on what file extensions to for the connector to retreive.
Thanks for the great stuff!
Horst