Index: /FCKeditor.Java/branches/2.4/src/site/apt/integration.apt
===================================================================
--- /FCKeditor.Java/branches/2.4/src/site/apt/integration.apt	(revision 1782)
+++ /FCKeditor.Java/branches/2.4/src/site/apt/integration.apt	(revision 1783)
@@ -54,3 +54,46 @@
 *	File Browser Connector
 
-	lorem ipsum...
+	The Connector ist not mandatory. If you do <<not>> plan to provide userfile
+	interaction, you can skip this section.
+	
+		[Note:]	The Connector is by default not present and disabled for 
+				security reasons!
+	
+	It takes two steps do enable it:
+	
+	[[1]] Declare the ConnectorServlet in your <<<web.xml>>>
+
++-------------------------------------------------------------------+
+  <web-app version="2.4">
+    ...
+    <servlet>
+      <servlet-name>Connector</servlet-name>
+        <servlet-class>
+          net.fckeditor.connector.ConnectorServlet
+      </servlet-class>
+      <load-on-startup>1</load-on-startup>
+    </servlet>
+    ...
+    <servlet-mapping>
+      <servlet-name>Connector</servlet-name>
+      <url-pattern>
+        /fckeditor/editor/filemanager/connectors/*
+      </url-pattern>
+    </servlet-mapping>
+    ...
+  </web-app>
++-------------------------------------------------------------------+
+	
+	Assuming you installed the editor in the <<</fckeditor>>> folder in your webapp.\
+	The Connector is now declared but <still> disabled. The response is going to be
+	an error message.
+	
+	[[2]] Create a file <<<fckeditor.properties>>> in your classpath and add:
+	
++-------------------------------------------------------------------+
+  connector.sessionDataImpl=net.fckeditor.impl.BasicSessionData
++-------------------------------------------------------------------+
+
+	[]
+	
+	The Connector is now enabled.
