An open API service indexing awesome lists of open source software.

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é

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.