Hello Telerik Team,
I have a question with regard to telerik reports. I am converting crystal reports to telerik reports.
As we have "Default values for nulls" and "Exceptions for nulls" (in the section expert) option in crystal reports.
Can we set like that anywhere in the telerik report.Beacuse in my telerik report if i have empty string value it will not evalute the conditional formaating correctly.
I appreciate your response.
Thank you,
Smith
private void Print()
{
System.Data.EntityClient.
EntityConnectionStringBuilder entCSB = new System.Data.EntityClient.EntityConnectionStringBuilder();
entCSB.ConnectionString =
App.CurrentApp.CurrentEnvironment.Connection;
Telerik.Reporting.
ReportBook book = new Telerik.Reporting.ReportBook();
foreach (OpenOnlineOrderDetails details in Transactions)
{
if (details.Selected)
{
book.Reports.Add(new OrderReport(entCSB.ProviderConnectionString, details.SaleTransactionID.ToString()));
}
}
AppView.Views.
ReportForm report = new LogiText.AppView.Views.ReportForm(book);
report.Show();
}
And this is the form with the report viewer:
public partial class ReportForm : Form
{
Telerik.Reporting.
ReportBook book;
public ReportForm(Telerik.Reporting.ReportBook reportBook)
{
InitializeComponent();
this.book = reportBook;
}
private void ReportForm_Load(object sender, EventArgs e)
{
reportViewer1.Report =
this.book;
reportViewer1.RefreshReport();
}
}
Hello,
We have a problem with Telerik Reporting. We need make a report accessible trought RIA services in silverlight application from remote computer. Problem is that on local computer is all right, but on remote computer not. We would like to configure our ISS on WindowsAutentification and set impersonate on true. But we can’t connect to reporting service. The Error message wich we get is bellow:
IIS specified authentication schemes 'IntegratedWindowsAuthentication, Anonymous', but the binding only supports specification of exactly one authentication scheme. Valid authentication schemes are Digest, Negotiate, NTLM, Basic, or Anonymous. Change the IIS settings so that only a single authentication scheme is used.
Our web.config containts this configuration:
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
<add name="DomainServiceModule" preCondition="managedHandler"
type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</modules>
<validation validateIntegratedModeConfiguration="false" />
</system.webServer>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<customErrors mode="Off"/>
<authentication mode="Windows" />
<identity impersonate="true" />
<httpModules>
<add name="DomainServiceModule" type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</httpModules>
</system.web>
<connectionStrings>
<add name="TFSExtensionEntityDiagrams"
connectionString="data source=(local);initial catalog=TFSExtension;user id=pokus;Password=P@s5w0rd"
providerName="System.Data.SqlClient" />
<!--<add name="TFSExtensionEntityDiagrams"
connectionString="Data Source=(local);Initial Catalog=TFSExtension;Integrated Security=True"
providerName="System.Data.SqlClient" />-->
<!--<add name="ReportingLibrary.Properties.Settings.TFSExtension2"
connectionString="Data Source=(local);Initial Catalog=TFSExtension;Integrated Security=True"
providerName="System.Data.SqlClient" />-->
</connectionStrings>
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"
multipleSiteBindingsEnabled="true" />
<services>
<service name="Telerik.Reporting.Service.ReportService" behaviorConfiguration="ReportServiceBehavior">
<endpoint address="" binding="basicHttpBinding" contract="Telerik.Reporting.Service.IReportService">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="resources" binding="webHttpBinding" behaviorConfiguration="WebBehavior" contract="Telerik.Reporting.Service.IResourceService"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ReportServiceBehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="WebBehavior">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
</system.serviceModel>
</configuration>