This is a migrated thread and some comments may be shown as answers.

http and https with Telerik Reporting

1 Answer 115 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
JR
Top achievements
Rank 1
JR asked on 10 Jan 2011, 03:00 PM
I have Telerik reporting in my silverlight application. How to make the ReportService to work with both http and https at the same time? If I make it to work with https it stops to work with http and if I make it to work with http it stops to work with https.

1 Answer, 1 is accepted

Sort by
0
Steve
Telerik team
answered on 13 Jan 2011, 05:53 PM
Hi JR,

You simply need to define two endpoints for each of the protocols e.g.:

                 binding="basicHttpBinding"
                 bindingConfiguration="SecuredBasicHttpBindingConfig"
                 contract="Telerik.Reporting.Service.IReportService">
         <identity>
           <dns value="localhost" />
         </identity>
       </endpoint>
        
                 binding="basicHttpBinding"
                 contract="Telerik.Reporting.Service.IReportService">
         <identity>
           <dns value="localhost" />
         </identity>
       </endpoint>


All the best,
Steve
the Telerik team
Get started with Telerik Reporting with numerous videos and detailed documentation.
Tags
General Discussions
Asked by
JR
Top achievements
Rank 1
Answers by
Steve
Telerik team
Share this question
or