https://github.com/nikitaeverywhere/utils.webappmanager
Convenient web application manager for InterSystems Caché
https://github.com/nikitaeverywhere/utils.webappmanager
cacheobjectscript-udl intersystems intersystems-cache utility
Last synced: 7 months ago
JSON representation
Convenient web application manager for InterSystems Caché
- Host: GitHub
- URL: https://github.com/nikitaeverywhere/utils.webappmanager
- Owner: nikitaeverywhere
- License: mit
- Created: 2017-04-02T10:01:09.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-02T20:32:37.000Z (almost 9 years ago)
- Last Synced: 2025-03-23T08:16:00.517Z (10 months ago)
- Topics: cacheobjectscript-udl, intersystems, intersystems-cache, utility
- Language: Apex
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Utils.WebAppManager
Import the class and use it like the following:
```cls
// create web app
do ##class(Utils.WebAppManager).Register("/MyWebApp", {
"Description": ("A sample web application for Cache."),
"IsNameSpaceDefault": ($$$NO),
"DispatchClass": (..#DispatchClass)
})
// delete web app
do ##class(Utils.WebAppManager).Delete("/MyWebApp", {
"DispatchClass": (..#DispatchClass)
})
```
In likely future, this class may appear in Caché package manager.