commit f801f52a9c846a68d410405e6e5994ae05f714b4 Author: Jon Knight Date: Tue Jun 6 11:34:58 2017 +0100 Changed default to https as this is now required for authenticated Panopto SOAP API calls diff --git a/lib/Panopto/Interface/SessionManagement.pm b/lib/Panopto/Interface/SessionManagement.pm index 3da7caf..38e3e2d 100644 --- a/lib/Panopto/Interface/SessionManagement.pm +++ b/lib/Panopto/Interface/SessionManagement.pm @@ -309,7 +309,7 @@ sub _call { push(@parameters, $param); } } - $self->endpoint('http://' . Panopto->ServerName . $method{endpoint}) + $self->endpoint('https://' . Panopto->ServerName . $method{endpoint}) ->ns($method{namespace}) ->on_action(sub{qq!"$method{soapaction}"!}); $self->serializer->register_ns("http://tempuri.org/","tns");