Naming conventions – the most important thing
It is important to follow the naming conventions for the web script documents. The following are the naming conventions that must be followed for each web script document:
Component |
Naming convention |
---|---|
Description document |
<web script id>.<http method>.desc.xml
|
Controller script |
<web script id>.<http method>.js
|
Response template |
<web script id>.<http method>.<extension>.ftl
|
Configuration document |
<web script id>.<http method>.config.xml
|
Resource bundle |
<web script id>.<http method>[_<locale>].properties
Locale is basically a combination of the language code and country code, for example, |
Note
The <web script id>
is the identifier of the web script, and must be a unique value in the web script package. For example, you can have helloworld.get.desc.xml
in two different web script packages,...