ActiveReports 9 Server User Guide > Installation > Configuring ActiveReports 9 Server on SSL and HTTPS Web Sites |
To use SSL and HTTPS on the ActiveReports 9 Server Web site, you need to make some configuration changes.
Note: If you want to use the HTTPS communication protocol, you need to specify the URL as "https://server:443/mobile/" or "https://server:443/m/". |
To use the HTTPS protocol, you must create an SSL certificate. For help with this, see Microsoft's article How to: Configure an IIS-hosted WCF service with SSL.
Paste in the web.config file BETWEEN the <service> and </service> tags |
Copy Code
|
---|---|
<endpoint address="https://servername:443/ReportService.svc/json" binding="webHttpBinding" contract="ActiveReports.Server.ReportServices.Servicing.IReportService" bindingConfiguration="ReportServiceJsonBindingSecured" behaviorConfiguration="JsonBehavior" /> |
httpGetEnabled="true
from <serviceMetadata> tag and add the following code.
Paste in the web.config file BETWEEN the <serviceMetadata> and </serviceMetadata> tags |
Copy Code
|
---|---|
httpsGetEnabled="true"
|
Paste in the web.config file BETWEEN the <webHttpBinding> and </webHttpBinding> tags |
Copy Code
|
---|---|
<binding name="ReportServiceJsonBindingSecured" maxReceivedMessageSize="0x3000000"> <readerQuotas maxStringContentLength="0x3000000" /> <security mode="Transport" /> </binding> |
<security mode="None /">
to <security mode="TransportWithMessageCredential" />
.Paste in the web.config file BETWEEN the <service> and </service> tags |
Copy Code
|
---|---|
<endpoint address="https://servername:443/ReportService.svc/json" binding="webHttpBinding" contract="ActiveReports.Server.ReportServices.Servicing.IReportService" bindingConfiguration="ReportServiceJsonBindingSecured" behaviorConfiguration="JsonBehavior" /> |
Paste in the web.config file BETWEEN the <serviceMetadata> and </serviceMetadata> tags |
Copy Code
|
---|---|
httpsGetEnabled="true"
|
Paste in the web.config file BETWEEN the and </webHttpBinding> tags |
Copy Code
|
---|---|
<binding name="ReportServiceJsonBindingSecured" maxReceivedMessageSize="0x3000000"> <readerQuotas maxStringContentLength="0x3000000" /> <security mode="Transport" /> </binding> |
Once you set up the certificate and start using https:// to access the Web site on which ActiveReports 9 Server is installed, it begins working in secure mode.
For more help with this, see Microsoft's article on Configuring SSL on a Web Server or Web Site (IIS 6.0) or How to Set Up SSL on IIS 7.