cancel
Showing results for 
Search instead for 
Did you mean: 

Northbound - not works on port https 9443

helio_carvalho_
New Contributor
We upgrade to version 3.5.1.0.862 Virtual SmartZone, when i try use of API authenticantion with NorthBound Portal Services over https port 9443 the connection is closed, the port is not closed but not work
When use over http 9080, its work normaly.

Any solution to resolve this problem


2 REPLIES 2

michael_brado
Esteemed Contributor II
Port 9443 might be reserved.  Did it work before you upgraded?  If so, I'd open a ticket.

helio_carvalho_
New Contributor
Michael, a solve de problem using  multi security protocol, work now.


ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12 | SecurityProtocolType.Ssl3 | SecurityProtocolType.SystemDefault;
            ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;