You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set sc = ##class(Security.Applications).Create(webName, .webProperties) \
80
-
write "Web application "_webName_" has been created!",!
84
+
write "Web application "_webName_" has been created!",!
81
85
```
82
86
83
87
84
88
85
89
```
86
-
do $SYSTEM.OBJ.ImportDir("/opt/irisbuild/src",, "ck")
87
-
```
90
+
do $SYSTEM.OBJ.ImportDir("/opt/irisbuild/src",, "ck")
91
+
```
88
92
89
93
90
94
### run tests described in the module
@@ -96,3 +100,18 @@ IRISAPP:zpm>test package-name
96
100
### install ZPM with one line
97
101
// Install ZPM
98
102
set $namespace="%SYS", name="DefaultSSL" do:'##class(Security.SSLConfigs).Exists(name) ##class(Security.SSLConfigs).Create(name) set url="https://pm.community.intersystems.com/packages/zpm/latest/installer" Do ##class(%Net.URLParser).Parse(url,.comp) set ht = ##class(%Net.HttpRequest).%New(), ht.Server = comp("host"), ht.Port = 443, ht.Https=1, ht.SSLConfiguration=name, st=ht.Get(comp("path")) quit:'st $System.Status.GetErrorText(st) set xml=##class(%File).TempFilename("xml"), tFile = ##class(%Stream.FileBinary).%New(), tFile.Filename = xml do tFile.CopyFromAndSave(ht.HttpResponse.Data) do ht.%Close(), $system.OBJ.Load(xml,"ck") do ##class(%File).Delete(xml)
0 commit comments