RestInitApplication()
Registers the directory path under the service mapping virtual directory.
If no service mapping is provided, the application name is used.
If the rest application is already registered, it is refreshed.
RestInitApplication( dirPath=string, serviceMapping=string, default=boolean, password=string );
Returns: void
Examples
restInitApplication( dirPath="path_to_cfc_dir", serviceMapping="api", password="webAdminPassword" );
Simple REST enabled CFC example
component restpath="/restExample" rest="true" {
remote function getApplicationName() restpath="getApplicationName" httpmethod="GET,HEAD" {
return "applicationName:" & getApplicationSettings().name;
}
}