2. Base file system structure for web application

Here is the structure of the folders for a web application:
SOMU_webApp (folder)
css (folder)
html (folder)
images (folder)
jsps (folder)
index.html
...
WEB-INF (folder)
tld (folder)
web.xml
... tld files has to be placed into tld folder
There are 2 files we have to have for SI web app development.
In the same time we have to have 2 corresponding packages (jars) containing classes used for creating tag libraries:
You can find paths for both tld files that are used in the test web application.
.tld/.jar |
Description |
Folder |
userautho.tld userautho.jar |
contains tags for connection/authentication/validation at SI |
installDir/jar/gis/4.3/gis.jar install/container/Applications/helloworld/WEB-INF/tld |
taglibs-xtags.tld taglibs-xtags.jar |
contains tags for presentation part in the forms (similar to XSLT) |
installDir/SI/jar/xtags/1_0/taglibs-xtags.jar /install/container/Applications/dashboard/WEB-INF/templates/jsp/tld |