File serving URIs

A list of file serving URIs.

Table 1. File serving URIs
URI path Description
/
The slash (/) is the root document, configured in the Genero Application Server (GAS) configuration file, and can be found after the dispatcher alias. The configuration is located at /CONFIGURATION/APPLICATION_SERVER/INTERFACE_TO_CONNECTOR/DOCUMENT_ROOT.
For example, this excerpt is from the default GAS configuration file (as.xcf)
...
 <RESOURCE_LIST>
  <PLATFORM_INDEPENDENT>
   ...
   <RESOURCE Id="res.path.docroot"
   Source="INTERNAL">$(res.path.as)/web</RESOURCE>
   ...
  </PLATFORM_INDEPENDENT>
 </RESOURCE_LIST>
 ...
 <INTERFACE_TO_CONNECTOR>
  ...
  <DOCUMENT_ROOT>$(res.path.docroot)</DOCUMENT_ROOT>
  ...
 </INTERFACE_TO_CONNECTOR>
...

Continuing with this example, when calling the demo page using the URL http://localhost:6394/gas/demo.html, you expect to find the file demo.html in the directory specified by the DOCUMENT_ROOT entry.