<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://docs-old.ckeditor.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ttomecki</id>
		<title>CKSource Docs - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://docs-old.ckeditor.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ttomecki"/>
		<link rel="alternate" type="text/html" href="https://docs-old.ckeditor.com/Special:Contributions/Ttomecki"/>
		<updated>2026-04-05T13:00:53Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.29.1</generator>

	<entry>
		<id>https://docs-old.ckeditor.com/index.php?title=CKFinder_2.x/Developers_Guide/Java/System_Requirements&amp;diff=6242</id>
		<title>CKFinder 2.x/Developers Guide/Java/System Requirements</title>
		<link rel="alternate" type="text/html" href="https://docs-old.ckeditor.com/index.php?title=CKFinder_2.x/Developers_Guide/Java/System_Requirements&amp;diff=6242"/>
				<updated>2011-04-29T13:05:35Z</updated>
		
		<summary type="html">&lt;p&gt;Ttomecki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Ckfinder_2.x Requirements Description}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Server ==&lt;br /&gt;
CKFinder requirments for Java:&lt;br /&gt;
* Java 1.5+ for Windows and Linux.&lt;br /&gt;
* Tomcat 5.5, 6.0, or 7.0.&lt;br /&gt;
*; Also tested on Jetty 7.3.1, GlassFish 3.0.1, and JBoss 6.0.0.&lt;/div&gt;</summary>
		<author><name>Ttomecki</name></author>	</entry>

	<entry>
		<id>https://docs-old.ckeditor.com/index.php?title=CKFinder_2.x/Developers_Guide/Java/Integration&amp;diff=6241</id>
		<title>CKFinder 2.x/Developers Guide/Java/Integration</title>
		<link rel="alternate" type="text/html" href="https://docs-old.ckeditor.com/index.php?title=CKFinder_2.x/Developers_Guide/Java/Integration&amp;diff=6241"/>
				<updated>2011-04-29T13:02:43Z</updated>
		
		<summary type="html">&lt;p&gt;Ttomecki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
{{#CUSTOMTITLE:Integrating CKFinder}}&lt;br /&gt;
This article describes various ways of integrating CKFinder for Java with your page.&lt;br /&gt;
&lt;br /&gt;
== Integrating CKFinder with your Application ==&lt;br /&gt;
After you download the CKFinder for Java &amp;lt;code&amp;gt;.war&amp;lt;/code&amp;gt; file, follow the steps below to integrate it with your application:&lt;br /&gt;
* Unpack CKFinder for Java.&lt;br /&gt;
* Copy the &amp;lt;code&amp;gt;ckfinder&amp;lt;/code&amp;gt; folder to your application.&lt;br /&gt;
* Copy the CKFinder &amp;lt;code&amp;gt;config.xml&amp;lt;/code&amp;gt; file from its &amp;lt;code&amp;gt;WEB-INF&amp;lt;/code&amp;gt; folder into the &amp;lt;code&amp;gt;WEB-INF&amp;lt;/code&amp;gt; folder of your application.&lt;br /&gt;
* Copy the contents of the CKFinder &amp;lt;code&amp;gt;WEB-INF/lib&amp;lt;/code&amp;gt; folder into the &amp;lt;code&amp;gt;WEB-INF/lib&amp;lt;/code&amp;gt; folder of your application.&lt;br /&gt;
* Copy the &amp;lt;code&amp;gt;ConnectorServlet&amp;lt;/code&amp;gt; settings from the CKFinder &amp;lt;code&amp;gt;web.xml&amp;lt;/code&amp;gt; file to the &amp;lt;code&amp;gt;web.xml&amp;lt;/code&amp;gt; file of your application.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;servlet&amp;gt;&lt;br /&gt;
	&amp;lt;servlet-name&amp;gt;ConnectorServlet&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;
	&amp;lt;servlet-class&amp;gt;com.ckfinder.connector.ConnectorServlet&amp;lt;/servlet-class&amp;gt;&lt;br /&gt;
	&amp;lt;init-param&amp;gt;&lt;br /&gt;
		&amp;lt;param-name&amp;gt;XMLConfig&amp;lt;/param-name&amp;gt;&lt;br /&gt;
		&amp;lt;param-value&amp;gt;/WEB-INF/config.xml&amp;lt;/param-value&amp;gt;&lt;br /&gt;
	&amp;lt;/init-param&amp;gt;&lt;br /&gt;
	&amp;lt;load-on-startup&amp;gt;1&amp;lt;/load-on-startup&amp;gt;&lt;br /&gt;
&amp;lt;/servlet&amp;gt;&lt;br /&gt;
&amp;lt;servlet-mapping&amp;gt;&lt;br /&gt;
	&amp;lt;servlet-name&amp;gt;ConnectorServlet&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;
	&amp;lt;url-pattern&amp;gt;&lt;br /&gt;
		/ckfinder/core/connector/java/connector.java&lt;br /&gt;
	&amp;lt;/url-pattern&amp;gt;&lt;br /&gt;
&amp;lt;/servlet-mapping&amp;gt; &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
* Just like in the sample application, by default CKFinder is disabled due to security reasons. To turn it on, change the &amp;lt;code&amp;gt;&amp;lt;enabled&amp;gt;&amp;lt;/code&amp;gt; element value in the &amp;lt;code&amp;gt;config.xml&amp;lt;/code&amp;gt; file to &amp;lt;code&amp;gt;true&amp;lt;/code&amp;gt;. Note that it is recommended to use a more fine-grained authentication method by overriding the &amp;lt;code&amp;gt;checkAuthentication&amp;lt;/code&amp;gt; method.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;enabled&amp;gt;true&amp;lt;/enabled&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
* Similarily, some further adjustments of the &amp;lt;code&amp;gt;config.xml&amp;lt;/code&amp;gt; file might be needed, like &amp;lt;code&amp;gt;baseUrl&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;baseDir&amp;lt;/code&amp;gt; paths, for example.&lt;br /&gt;
&lt;br /&gt;
== Installing CKFinder as a JSP Page Tag ==&lt;br /&gt;
In order to install CKFinder as a tag inside a &amp;lt;code&amp;gt;.jsp&amp;lt;/code&amp;gt; page, follow the steps outlined below:&lt;br /&gt;
* Install CKFinder as described in the section above.&lt;br /&gt;
* In order to use the tag on the JSP page you should import the tag library by using the following directive:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;%@ taglib uri='../../WEB-INF/ckfinder.tld' prefix='ck' %&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now use the CKFinder tag on your JSP page in the following way:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ck:ckfinder basePath=&amp;quot;/CKFinderJava-1.0/ckfinder/&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The only required attribute is the &amp;lt;code&amp;gt;basePath&amp;lt;/code&amp;gt; that specifies the path to the CKFinder folder. Numerous optional attributes are also available and can be used to customize CKFinder to your needs, like in the example below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ck:ckfinder basePath=&amp;quot;/CKFinderJava-1.0/ckfinder/&amp;quot; width=&amp;quot;700&amp;quot; height=&amp;quot;500&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This code creates a CKFinder instance with a width of 700 pixels and height of 500 pixels.&lt;br /&gt;
&lt;br /&gt;
== Extending Configuration ==&lt;br /&gt;
The &amp;lt;code&amp;gt;MyConfiguration&amp;lt;/code&amp;gt; class lets you change the base CKFinder configuration, or, in other words, change the settings from the XML file at the Java class level. To read more about extending your CKFinder configuration, refer to the [[CKFinder_2.x/Developers_Guide/Java/Configuration/Extending|Extending CKFinder Configuration]] article.&lt;/div&gt;</summary>
		<author><name>Ttomecki</name></author>	</entry>

	</feed>