Skip to content

Commit 119bc6c

Browse files
committed
fix: update DB in the Scheduler SignalR server filtering example
1 parent 9605476 commit 119bc6c

File tree

4 files changed

+92
-88
lines changed

4 files changed

+92
-88
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

scheduler/scheduler-signalr-server-filtering/SignalRLocalHub/Views/Shared/_Layout.cshtml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>@ViewBag.Title - My Telerik MVC Application</title>
5-
6-
<link href="http://cdn.kendostatic.com/2017.3.913/styles/kendo.common.min.css" rel="stylesheet" type="text/css" />
7-
<link href="http://cdn.kendostatic.com/2017.3.913/styles/kendo.default.min.css" rel="stylesheet" type="text/css" />
8-
<script src="http://cdn.kendostatic.com/2017.3.913/js/jquery.min.js"></script>
9-
<script src="http://cdn.kendostatic.com/2017.3.913/js/jszip.min.js"></script>
10-
<script src="http://cdn.kendostatic.com/2017.3.913/js/kendo.all.min.js"></script>
11-
<script src="http://cdn.kendostatic.com/2017.3.913/js/kendo.aspnetmvc.min.js"></script>
4+
<title>@ViewBag.Title - My Telerik MVC Application</title>
5+
<link href="http://cdn.kendostatic.com/2017.3.913/styles/kendo.common.min.css" rel="stylesheet" type="text/css" />
6+
<link href="http://cdn.kendostatic.com/2017.3.913/styles/kendo.default.min.css" rel="stylesheet" type="text/css" />
7+
<script src="http://cdn.kendostatic.com/2017.3.913/js/jquery.min.js"></script>
8+
<script src="http://cdn.kendostatic.com/2017.3.913/js/jszip.min.js"></script>
9+
<script src="http://cdn.kendostatic.com/2017.3.913/js/kendo.all.min.js"></script>
10+
<script src="http://cdn.kendostatic.com/2017.3.913/js/kendo.aspnetmvc.min.js"></script>
11+
<script src="http://cdn.kendostatic.com/2017.3.913/js/kendo.timezones.min.js"></script>
1212
</head>
1313
<body>
1414

scheduler/scheduler-signalr-server-filtering/SignalRLocalHub/Web.config

Lines changed: 84 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -4,84 +4,88 @@
44
http://go.microsoft.com/fwlink/?LinkId=152368
55
-->
66
<configuration>
7-
<configSections>
8-
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
9-
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
10-
</configSections>
11-
<connectionStrings><add name="SampleEntities" connectionString="metadata=res://*/Models.Sample.csdl|res://*/Models.Sample.ssdl|res://*/Models.Sample.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=(LocalDB)\Projects;attachdbfilename=|DataDirectory|\Sample.mdf;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /><add name="SampleEntities1" connectionString="metadata=res://*/Models.Sample.csdl|res://*/Models.Sample.ssdl|res://*/Models.Sample.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=(LocalDB)\Projects;attachdbfilename=|DataDirectory|\Sample.mdf;integrated security=True;multipleactiveresultsets=True;application name=EntityFramework&quot;" providerName="System.Data.EntityClient" /></connectionStrings>
12-
<appSettings>
13-
<add key="webpages:Version" value="2.0.0.0" />
14-
<add key="webpages:Enabled" value="true" />
15-
<add key="PreserveLoginUrl" value="true" />
16-
<add key="ClientValidationEnabled" value="true" />
17-
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
18-
</appSettings>
19-
<system.web>
20-
<compilation debug="true" targetFramework="4.5">
21-
<assemblies>
22-
<add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
23-
<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
24-
</assemblies>
25-
</compilation>
26-
<httpRuntime targetFramework="4.5" encoderType="System.Web.Security.AntiXss.AntiXssEncoder, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
27-
<machineKey compatibilityMode="Framework45" />
28-
<pages>
29-
<namespaces>
30-
<add namespace="System.Web.Helpers" />
31-
<add namespace="System.Web.Mvc" />
32-
<add namespace="System.Web.Mvc.Ajax" />
33-
<add namespace="System.Web.Mvc.Html" />
34-
<add namespace="System.Web.Routing" />
35-
<add namespace="System.Web.WebPages" />
36-
<add namespace="Kendo.Mvc.UI" />
37-
</namespaces>
38-
</pages>
39-
</system.web>
40-
<system.webServer>
41-
<validation validateIntegratedModeConfiguration="false" />
42-
<modules runAllManagedModulesForAllRequests="true" />
43-
<handlers>
44-
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
45-
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
46-
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
47-
<add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
48-
<add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
49-
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
50-
</handlers>
51-
</system.webServer>
52-
<runtime>
53-
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
54-
<dependentAssembly>
55-
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
56-
<bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
57-
</dependentAssembly>
58-
<dependentAssembly>
59-
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
60-
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
61-
</dependentAssembly>
62-
<dependentAssembly>
63-
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
64-
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
65-
</dependentAssembly>
66-
<dependentAssembly>
67-
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
68-
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
69-
</dependentAssembly>
70-
<dependentAssembly>
71-
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
72-
<bindingRedirect oldVersion="0.0.0.0-2.0.1.0" newVersion="2.0.1.0" />
73-
</dependentAssembly>
74-
<dependentAssembly>
75-
<assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" />
76-
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
77-
</dependentAssembly>
78-
<dependentAssembly>
79-
<assemblyIdentity name="Microsoft.AspNet.SignalR.Core" publicKeyToken="31bf3856ad364e35" culture="neutral" />
80-
<bindingRedirect oldVersion="0.0.0.0-2.0.2.0" newVersion="2.0.2.0" />
81-
</dependentAssembly>
82-
</assemblyBinding>
83-
</runtime>
84-
<entityFramework>
85-
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
86-
</entityFramework>
7+
<configSections>
8+
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
9+
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
10+
</configSections>
11+
<connectionStrings>
12+
<add name="SampleEntities1"
13+
connectionString="metadata=res://*/Models.Sample.csdl|res://*/Models.Sample.ssdl|res://*/Models.Sample.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\Sample.mdf;Integrated Security=True&quot;"
14+
providerName="System.Data.EntityClient" />
15+
</connectionStrings>
16+
<appSettings>
17+
<add key="webpages:Version" value="2.0.0.0" />
18+
<add key="webpages:Enabled" value="true" />
19+
<add key="PreserveLoginUrl" value="true" />
20+
<add key="ClientValidationEnabled" value="true" />
21+
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
22+
</appSettings>
23+
<system.web>
24+
<compilation debug="true" targetFramework="4.5">
25+
<assemblies>
26+
<add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
27+
<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
28+
</assemblies>
29+
</compilation>
30+
<httpRuntime targetFramework="4.5" encoderType="System.Web.Security.AntiXss.AntiXssEncoder, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
31+
<machineKey compatibilityMode="Framework45" />
32+
<pages>
33+
<namespaces>
34+
<add namespace="System.Web.Helpers" />
35+
<add namespace="System.Web.Mvc" />
36+
<add namespace="System.Web.Mvc.Ajax" />
37+
<add namespace="System.Web.Mvc.Html" />
38+
<add namespace="System.Web.Routing" />
39+
<add namespace="System.Web.WebPages" />
40+
<add namespace="Kendo.Mvc.UI" />
41+
</namespaces>
42+
</pages>
43+
</system.web>
44+
<system.webServer>
45+
<validation validateIntegratedModeConfiguration="false" />
46+
<modules runAllManagedModulesForAllRequests="true" />
47+
<handlers>
48+
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
49+
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
50+
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
51+
<add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
52+
<add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
53+
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
54+
</handlers>
55+
</system.webServer>
56+
<runtime>
57+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
58+
<dependentAssembly>
59+
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
60+
<bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
61+
</dependentAssembly>
62+
<dependentAssembly>
63+
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
64+
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
65+
</dependentAssembly>
66+
<dependentAssembly>
67+
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
68+
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
69+
</dependentAssembly>
70+
<dependentAssembly>
71+
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
72+
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
73+
</dependentAssembly>
74+
<dependentAssembly>
75+
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
76+
<bindingRedirect oldVersion="0.0.0.0-2.0.1.0" newVersion="2.0.1.0" />
77+
</dependentAssembly>
78+
<dependentAssembly>
79+
<assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" />
80+
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
81+
</dependentAssembly>
82+
<dependentAssembly>
83+
<assemblyIdentity name="Microsoft.AspNet.SignalR.Core" publicKeyToken="31bf3856ad364e35" culture="neutral" />
84+
<bindingRedirect oldVersion="0.0.0.0-2.0.2.0" newVersion="2.0.2.0" />
85+
</dependentAssembly>
86+
</assemblyBinding>
87+
</runtime>
88+
<entityFramework>
89+
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
90+
</entityFramework>
8791
</configuration>

0 commit comments

Comments
 (0)