Changes between Initial Version and Version 1 of WikiEditorForEclipsePlugin/FAQ


Ignore:
Timestamp:
Jun 25, 2009, 4:40:53 PM (15 years ago)
Author:
Ivan
Comment:

Initial FAQ

Legend:

Unmodified
Added
Removed
Modified
  • WikiEditorForEclipsePlugin/FAQ

    v1 v1  
     1= Wiki Editor For Eclipse ~ FAQ =
     2
     3[[PageOutline(2-3, , inline)]]
     4
     5== Can I connect to an HTTPS Trac site with self signed SSL certificate? ==
     6
     7In order to connect to a Trac site with self signed SSL certificate you need to import the certificate to the java jre keystore.
     8
     9After downloading the certificate to a local file you can import the certificate with java '''keytool''':
     10
     11{{{
     12#!sh
     13/usr/lib/jvm/java-6-openjdk/jre/bin/keytool -keystore /usr/lib/jvm/java-6-openjdk/jre/lib/security/cacerts -import -file  <certificate_file> -alias <alias>
     14}}}
     15
     16== Can I use WikiEditorForEclipsePlugin with AccountManager login module? ==
     17
     18Currently [wiki:WikiEditorForEclipsePlugin WikiEditor4Eclipse] only supports BASIC authentication.
     19
     20If you are using AccountManagerPlugin#LoginModule to use form based login you can still use HttpAuthPlugin to re-enable Http BASIC authentication for /login/xmlrpc path to make it work with XmlRpcPlugin.
     21
     22See also XmlRpcPlugin#ProblemswhenAccountManagerPluginisenabled for more details.
     23
     24