uwefranke / msgDSM7Module

powershell Module SOAP interface Ivanti DSM
GNU General Public License v3.0
9 stars 1 forks source link

Bitte Möglichkeit für SSL hinzufügen #4

Closed malex-17 closed 3 years ago

malex-17 commented 3 years ago

Könnte man den Connect-Aufruf ein wenig abändern, damit er auch SSL unterstützt? z.B.

param ( [System.String]$WebServer = "localhost", [System.String]$Port = "8080", [switch]$UseDefaultCredential = $false, [System.String]$User, [System.String]$UserPW, [switch]$UseSSL, $Credential ) if($UseSSL){ $protocol = "https" $port = "443" } else { $protocol = "http" } $DSM7wsdlURL = $protocol + "://" + $WebServer + ":" + $Port + "/blsAdministration/AdministrationService.asmx?WSDL"

uwefranke commented 3 years ago

bitte Version [1.0.2.9] (https://github.com/uwefranke/msgDSM7Module/releases/tag/1.0.2.9) testen, ich habe keine Möglichkeit es zu überprüfen im Moment

malex-17 commented 3 years ago

Funktioniert einwandfrei! Super Sache :-)

uwefranke commented 3 years ago

bitte nochmal mit [1.0.3.0] (https://github.com/uwefranke/msgDSM7Module/releases/tag/1.0.3.0) überprüfen, Port wieder änderbar: if ($UseSSL) { $Protocol = "https://" if (!$Port) { $Port = "443" } } else { $Protocol = "http://" if (!$Port) { $Port = "8080" } }

malex-17 commented 3 years ago

Funzt auch

uwefranke commented 3 years ago

closed with release [1.0.3.1] (https://github.com/uwefranke/msgDSM7Module/releases/tag/1.0.3.1)