ActiveReports Server Webサイト上でSSL、およびHTTPSを使用するためには、構成変更が必要です。HTTPSプロトコルを使用するためには、SSL証明書を設定する必要があります。詳細については、MSDNライブラリ、市販の雑誌・解説書等を参照してください。
メモ:HTTPS通信プロトコルを使用する場合、 「https://server:443/mobile/」、または「https://server:443/m/」のようにURLを指定する必要があります。 |
web.configファイルの<service></service>タグの間に貼り付けます。 |
コードのコピー
|
---|---|
<endpoint address="https://servername:443/ReportService.svc/json" binding="webHttpBinding" contract="ActiveReports.Server.ReportServices.Servicing.IReportService" bindingConfiguration="ReportServiceJsonBindingSecured" behaviorConfiguration="JsonBehavior" /> |
web.configファイルの<serviceMetadata></serviceMetadata>タグの間に貼り付けます。 |
コードのコピー
|
---|---|
httpsGetEnabled="true"
|
web.configファイルの<webHttpBinding>webHttpBinding>タグの間に貼り付けます。 |
コードのコピー
|
---|---|
<binding name="ReportServiceJsonBindingSecured" maxReceivedMessageSize="0x3000000"> <readerQuotas maxStringContentLength="0x3000000" /> <security mode="Transport" /> </binding> |
web.configファイルの<service></service>タグの間に貼り付けます。 |
コードのコピー
|
---|---|
<endpoint address="https://servername:443/ReportService.svc/json" binding="webHttpBinding" contract="ActiveReports.Server.ReportServices.Servicing.IReportService" bindingConfiguration="ReportServiceJsonBindingSecured" behaviorConfiguration="JsonBehavior" /> |
web.configファイルの<serviceMetadata></serviceMetadata>タグの間に貼り付けます。 |
コードのコピー
|
---|---|
httpsGetEnabled="true"
|
web.configファイルの<webHttpBinding></webHttpBinding>タグの間に貼り付けます。 |
コードのコピー
|
---|---|
<binding name="ReportServiceJsonBindingSecured" maxReceivedMessageSize="0x3000000"> <readerQuotas maxStringContentLength="0x3000000" /> <security mode="Transport" /> </binding> |
SSL、およびHTTPSに関する詳細については、MSDNライブラリ、市販の雑誌・解説書等を参照してください。