Changes between Version 3 and Version 4 of FrontController


Ignore:
Timestamp:
2011-11-30T09:17:53+01:00 (12 years ago)
Author:
jvelde
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FrontController

    v3 v4  
    11= !FrontController design =
     2
     3== How to ==
     4
     5The FrontController takes proper care of security and database connections and is highly recommended. In order to map your application services now, you must specify them in your .properties file under 'services'.
     6
     7* An example of a 'most minimal' mapping of just the basic GUI plus file serving can be found here: http://www.molgenis.org/svn/molgenis_apps/trunk/apps/designgg/org/molgenis/designgg/designgg.properties.
     8* A more advanced mapping which includes the XREF service (for the Ajax dropdown boxes) can be found here: http://www.molgenis.org/svn/molgenis_apps/trunk/apps/animaldb/org/molgenis/animaldb/animaldb.properties.
     9* This example includes the mapping to the Captcha service which you need to use the User Registration form. (org.molgenis.auth.service.!MolgenisCaptchaService)
     10* Many API's have also been ported, an example of this can be found here: http://www.molgenis.org/svn/molgenis_apps/trunk/apps/xgap/org/molgenis/xgap/xqtlworkbench/xqtl.properties.
     11
     12Notice that you should map the file service (core.servlets.!FileService?@/) last because the mapping is fall-through. If you experience any problems, please contact a core developer. When in dire need, you can still use the 'WWWServerDeprecated' version to get the old behaviour back. (for now)
    213
    314== Request/response database usage (pseudocode) ==