Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Jan 21, 2012 09:22 PM by yzhang738
Member
288 Points
228 Posts
Jan 19, 2012 08:13 PM|LINK
Hi,
I am running an asp.net 2.0 application on .net 4.0 in vs 2010. It references Ajax Control Toolkit 1.0. In debugging, the following message appears,
Microsoft JScript runtime error: ASP.NET Ajax client-side framework failed to load.
What is going wrong? Thanks for any help.
All-Star
65729 Points
11138 Posts
Jan 20, 2012 02:16 AM|LINK
In this scenario, I would like to suggest you try to check the following link,Jonathan has provided a detailed solution there: Error: ASP.NET Ajax client-side framework failed to load. http://forums.asp.net/t/1243449.aspx#2291128
http://forums.asp.net/p/1279937/2442844.aspx If I’ve misunderstood the facing issue, please feel free to let me know.
http://geekswithblogs.net/WillSmith/archive/2008/12/11/resolving-asp.net-ajax-client-side-framework-failed-to-load.aspx
Jan 21, 2012 09:22 PM|LINK
Hi Chetan,
Thanks for reply. I modified web.config by Jonathan's post, but I got error "There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined ".
5: <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> 6: <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> 7: <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> The following is the web.config file: <?xml version="1.0"?> <configuration> <configSections> <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/> <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> </sectionGroup> </sectionGroup> </sectionGroup> <section name="PaymentGateways" type="Hardcore.PaymentProcessor.GatewayHandler,Hardcore.Commerce"/> <section name="HardcoreApplications" type="Hardcore.ApplicationSectionHandler,Hardcore.System"/> <sectionGroup name="telerik.web.ui"> <section name="radScheduler" type="Telerik.Web.UI.RadSchedulerConfigurationSection, Telerik.Web.UI, PublicKeyToken=121fae78165ba3d4" allowDefinition="MachineToApplication" requirePermission="false"/> </sectionGroup> </configSections> <connectionStrings> <remove name="LocalSqlServer"/> <add name="ConnString" connectionString="server=74.208.17.114,43001;database=DisputeSuite_Test;uid=disputesuite;pwd=bvm943@bhr^!fwik;Connect Timeout=30;" providerName="System.Data.SqlClient"/> <add name="Scraper" connectionString="server=74.208.17.114,43001;database=DisputeSuite_Scraper;uid=disputesuite;pwd=bvm943@bhr^!fwik;Connect Timeout=30;" providerName="System.Data.SqlClient"/> </connectionStrings> <appSettings> <add key="ClamScanAntiVirusPath" value="C:\Program Files\ClamWin\bin\clamscan.exe"/> <add key="ClamScanDBDirectory" value="C:\ProgramData\.clamwin\db"/> <add key="ViewStateConnectionString" value="server=74.208.17.114,43001;uid=disputesuite;pwd=bvm943@bhr^!fwik;Database=ASPState;"/> <add key="ViewStateTimeout" value="60"/> <add key="LetterServer" value="testletters.disputesuite.com"/> <add key="ImportServer" value="ftp://test.disputesuite.com/"/> <add key="ImportDomain" value=""/> <add key="ImportUsername" value="T1\ImportClient"/> <add key="ImportPassword" value="1234567"/> <add key="ImportPASV" value="False"/> <add key="AF_APIUsername" value="test"/> <add key="AF_APIPassword" value="test"/> <add key="AF_APIUrl" value="http://test.disputesuite.com/aff/modules/api/default.asmx"/> <add key="TXP_APIUrl" value="https://websvctest.globalclientsolutions.com/v3.0/Webservices.asmx"/> </appSettings> <system.web> <machineKey validationKey="395FE71D8FA82086DD0E6C504A65531E30B720412F716694023EDE74D927465F25B530AFEC5D88050E0E1992C9E0EB7B58DD1DF4E57D229A78D0B5BB1DD5DE02" decryptionKey="503EC0E5E579D446D5586DB4172E5AE95F39F84CFFF1F3B4ADCD8BB785EFC6DF" validation="SHA1" decryption="AES"/> <customErrors mode="Off" defaultRedirect="~/errorPage.aspx"> <error statusCode="404" redirect="~/error.aspx"/> </customErrors> <sessionState mode="SQLServer" sqlConnectionString="server=74.208.17.114,43001;uid=disputesuite;pwd=bvm943@bhr^!fwik;" cookieless="false" timeout="40"/> <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"> <namespaces> <clear/> <add namespace="System"/> <add namespace="System.Collections"/> <add namespace="System.Collections.Specialized"/> <add namespace="System.Configuration"/> <add namespace="System.Data"/> <add namespace="System.Text"/> <add namespace="System.Text.RegularExpressions"/> <add namespace="System.Web"/> <add namespace="System.Web.Caching"/> <add namespace="System.Web.SessionState"/> <add namespace="System.Web.Security"/> <add namespace="System.Web.Profile"/> <add namespace="System.Web.UI"/> <add namespace="System.Web.UI.WebControls"/> <add namespace="System.Web.UI.WebControls.WebParts"/> <add namespace="System.Web.UI.HtmlControls"/> </namespaces> <tagMapping> <add tagType="System.Web.UI.WebControls.CompareValidator" mappedTagType="Sample.Web.UI.Compatibility.CompareValidator, Validators, Version=1.0.0.0"/> <add tagType="System.Web.UI.WebControls.CustomValidator" mappedTagType="Sample.Web.UI.Compatibility.CustomValidator, Validators, Version=1.0.0.0"/> <add tagType="System.Web.UI.WebControls.RangeValidator" mappedTagType="Sample.Web.UI.Compatibility.RangeValidator, Validators, Version=1.0.0.0"/> <add tagType="System.Web.UI.WebControls.RegularExpressionValidator" mappedTagType="Sample.Web.UI.Compatibility.RegularExpressionValidator, Validators, Version=1.0.0.0"/> <add tagType="System.Web.UI.WebControls.RequiredFieldValidator" mappedTagType="Sample.Web.UI.Compatibility.RequiredFieldValidator, Validators, Version=1.0.0.0"/> <add tagType="System.Web.UI.WebControls.ValidationSummary" mappedTagType="Sample.Web.UI.Compatibility.ValidationSummary, Validators, Version=1.0.0.0"/> </tagMapping> <controls> <!-- STANDARD WEB CONTROLS --> <!-- HARDCORE WEB CONTROLS --> <add tagPrefix="hc" namespace="Hardcore.Web.UI.WebControls" assembly="Hardcore.Web.WebUtility"/> <add tagPrefix="hc" namespace="Hardcore.Web.UI.WebControls" assembly="Hardcore.Web.System"/> <add tagPrefix="hc" namespace="Hardcore.Web.UI.WebControls" assembly="Hardcore.Web.Commerce"/> <add tagPrefix="hcv" namespace="Hardcore.Web.Validation" assembly="Hardcore.Web.Validation"/> <add tagPrefix="fp" namespace="Hardcore.Web.UI.FormParts" assembly="Hardcore.Web.UI.FormParts"/> <!-- FREETEXTBOX WEB CONTROLS --> <add tagPrefix="ftb" namespace="FreeTextBoxControls" assembly="FreeTextBox"/> <!-- HARDCORE ACCOUNTS WEB CONTROLS --> <add tagPrefix="hca" namespace="Hardcore.Web.UI.WebControls" assembly="Hardcore.Web.Accounts"/> <add tagPrefix="fpa" namespace="Hardcore.Web.UI.FormParts" assembly="Hardcore.Web.Accounts"/> <!-- HARDCORE CONTENT WEB CONTROLS --> <add tagPrefix="hcc" namespace="Hardcore.Web.UI.WebControls" assembly="Hardcore.Web.Content"/> <!-- DISPUTE SUITE WEB CONTROLS --> <add tagPrefix="ds" namespace="DisputeSuite.Web.UI.WebControls" assembly="DisputeSuite.Web"/> <!-- TELERIK WEB CONTROLS --> <add tagPrefix="rad" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI"/> <!-- Ajax Toolkit --> <add tagPrefix="atk" namespace="AjaxControlToolkit" assembly="AjaxControlToolkit"/> <!-- Essential Objects --> <add tagPrefix="eo" namespace="EO.Web" assembly="EO.Web"/> </controls> </pages> <authentication mode="Forms"> <forms name="HardcoreAccounts" defaultUrl="~/Modules/DisputeSuite/Customers/" loginUrl="~/Login.aspx" protection="All" timeout="99999" path="/"/> </authentication> <authorization> <allow users="*"/> </authorization> <!-- Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development. --> <compilation debug="true" targetFramework="4.0"> <assemblies> <!-- <add assembly="BCL.EasyConverterHTML.Interop, Version=3.0.0.0, Culture=neutral, PublicKeyToken=db709b4c74199509"/> --> <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Web.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Runtime.Remoting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="Microsoft.JScript, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.DirectoryServices.Protocols, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Web.RegularExpressions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Messaging, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> </assemblies> </compilation> <httpRuntime maxRequestLength="2097151" executionTimeout="99999"/> <httpHandlers> <remove verb="*" path="*.asmx"/> <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/> <add path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI"/> <add path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/> <add path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/> <add path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/> <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false"/> </httpHandlers> <httpModules> <!-- Remove unnecessary Http Modules for faster pipeline --> <!--<remove name="Session" /> <remove name="WindowsAuthentication"/>--> <remove name="PassportAuthentication"/> <!--<remove name="AnonymousIdentification" />--> <remove name="UrlAuthorization"/> <remove name="FileAuthorization"/> <remove name="OutputCache"/> <remove name="RoleManager"/> <remove name="Profile"/> <remove name="ErrorHandlerModule"/> <remove name="ServiceModel"/> <add name="UserTrackingModule" type="Hardcore.Web.HttpModules.UserTrackingModule, Hardcore.Web.Accounts"/> <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI"/> </httpModules> </system.web> <system.web.extensions> <scripting> <webServices> <jsonSerialization maxJsonLength="5000000"> <converters> </converters> </jsonSerialization> </webServices> </scripting> </system.web.extensions> <system.webServer> <validation validateIntegratedModeConfiguration="false"/> <modules> <add name="UserTrackingModule" type="Hardcore.Web.HttpModules.UserTrackingModule, Hardcore.Web.Accounts"/> <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" preCondition="managedHandler"/> </modules> <handlers> <add name="ChartImage.axd_*" path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode,runtimeVersionv2.0"/> <add name="Telerik.Web.UI.SpellCheckHandler.axd_*" path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode,runtimeVersionv2.0"/> <add name="Telerik.Web.UI.DialogHandler.aspx_*" path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode,runtimeVersionv2.0"/> <add name="Telerik.RadUploadProgressHandler.ashx_*" path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI" preCondition="integratedMode,runtimeVersionv2.0"/> <add name="Telerik.Web.UI.WebResource.axd_*" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" preCondition="integratedMode,runtimeVersionv2.0"/> </handlers> <defaultDocument> <files> <clear/> <add value="Index.aspx"/> <add value="Default.aspx"/> <add value="index.html"/> </files> </defaultDocument> </system.webServer> <PaymentGateways> <Gateway Name="AuthNetARBTest" Url="https://apitest.authorize.net/xml/v1/request.api" LoginName="55euNxY3Db" TransactionKey="5xcU46f949k2MMB6"/> <Gateway Name="AuthNetARBLive" Url="https://api.authorize.net/xml/v1/request.api" LoginName="36EbkM4AB6H" TransactionKey="2fU2p8Y5h3jB566V"/> <Gateway Name="AuthNetAIMTest" Url="https://test.authorize.net/gateway/transact.dll" LoginName="55euNxY3Db" TransactionKey="5xcU46f949k2MMB6"/> <Gateway Name="AuthNetAIMLive" Url="https://secure.authorize.net/gateway/transact.dll" LoginName="36EbkM4AB6H" TransactionKey="2fU2p8Y5h3jB566V"/> </PaymentGateways> <!-- Setup the Hardcore Applications that this application will use from the SystemApplications Database Table --> <HardcoreApplications> <Application ApplicationName="DisputeManager" IsDefault="True"/> </HardcoreApplications> <telerik.web.ui> <radScheduler defaultAppointmentProvider="Integrated"> <appointmentProviders> <add name="ReadOnlyXmlSchedulerProvider" type="Telerik.Web.UI.XmlSchedulerProvider" fileName="~/App_Data/Appointments.xml" persistChanges="false"/> <add name="ReadOnlySchedulerData" type="Telerik.Web.Examples.Scheduler.MyDbSchedulerProvider" connectionStringName="RadSchedulerConnectionString" persistChanges="false"/> </appointmentProviders> </radScheduler> </telerik.web.ui> </configuration>
yzhang738
Member
288 Points
228 Posts
Microsoft JScript runtime error: ASP.NET Ajax client-side framework failed to load.
Jan 19, 2012 08:13 PM|LINK
Hi,
I am running an asp.net 2.0 application on .net 4.0 in vs 2010. It references Ajax Control Toolkit 1.0. In debugging, the following message appears,
Microsoft JScript runtime error: ASP.NET Ajax client-side framework failed to load.
What is going wrong? Thanks for any help.
chetan.sarod...
All-Star
65729 Points
11138 Posts
Re: Microsoft JScript runtime error: ASP.NET Ajax client-side framework failed to load.
Jan 20, 2012 02:16 AM|LINK
In this scenario, I would like to suggest you try to check the following link,Jonathan has provided a detailed solution there:
Error: ASP.NET Ajax client-side framework failed to load.
http://forums.asp.net/t/1243449.aspx#2291128
http://forums.asp.net/p/1279937/2442844.aspx
If I’ve misunderstood the facing issue, please feel free to let me know.
http://geekswithblogs.net/WillSmith/archive/2008/12/11/resolving-asp.net-ajax-client-side-framework-failed-to-load.aspx
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
yzhang738
Member
288 Points
228 Posts
Re: Microsoft JScript runtime error: ASP.NET Ajax client-side framework failed to load.
Jan 21, 2012 09:22 PM|LINK
Hi Chetan,
Thanks for reply. I modified web.config by Jonathan's post, but I got error "There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined ".
5: <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> 6: <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> 7: <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> The following is the web.config file: <?xml version="1.0"?> <configuration> <configSections> <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/> <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> </sectionGroup> </sectionGroup> </sectionGroup> <section name="PaymentGateways" type="Hardcore.PaymentProcessor.GatewayHandler,Hardcore.Commerce"/> <section name="HardcoreApplications" type="Hardcore.ApplicationSectionHandler,Hardcore.System"/> <sectionGroup name="telerik.web.ui"> <section name="radScheduler" type="Telerik.Web.UI.RadSchedulerConfigurationSection, Telerik.Web.UI, PublicKeyToken=121fae78165ba3d4" allowDefinition="MachineToApplication" requirePermission="false"/> </sectionGroup> </configSections> <connectionStrings> <remove name="LocalSqlServer"/> <add name="ConnString" connectionString="server=74.208.17.114,43001;database=DisputeSuite_Test;uid=disputesuite;pwd=bvm943@bhr^!fwik;Connect Timeout=30;" providerName="System.Data.SqlClient"/> <add name="Scraper" connectionString="server=74.208.17.114,43001;database=DisputeSuite_Scraper;uid=disputesuite;pwd=bvm943@bhr^!fwik;Connect Timeout=30;" providerName="System.Data.SqlClient"/> </connectionStrings> <appSettings> <add key="ClamScanAntiVirusPath" value="C:\Program Files\ClamWin\bin\clamscan.exe"/> <add key="ClamScanDBDirectory" value="C:\ProgramData\.clamwin\db"/> <add key="ViewStateConnectionString" value="server=74.208.17.114,43001;uid=disputesuite;pwd=bvm943@bhr^!fwik;Database=ASPState;"/> <add key="ViewStateTimeout" value="60"/> <add key="LetterServer" value="testletters.disputesuite.com"/> <add key="ImportServer" value="ftp://test.disputesuite.com/"/> <add key="ImportDomain" value=""/> <add key="ImportUsername" value="T1\ImportClient"/> <add key="ImportPassword" value="1234567"/> <add key="ImportPASV" value="False"/> <add key="AF_APIUsername" value="test"/> <add key="AF_APIPassword" value="test"/> <add key="AF_APIUrl" value="http://test.disputesuite.com/aff/modules/api/default.asmx"/> <add key="TXP_APIUrl" value="https://websvctest.globalclientsolutions.com/v3.0/Webservices.asmx"/> </appSettings> <system.web> <machineKey validationKey="395FE71D8FA82086DD0E6C504A65531E30B720412F716694023EDE74D927465F25B530AFEC5D88050E0E1992C9E0EB7B58DD1DF4E57D229A78D0B5BB1DD5DE02" decryptionKey="503EC0E5E579D446D5586DB4172E5AE95F39F84CFFF1F3B4ADCD8BB785EFC6DF" validation="SHA1" decryption="AES"/> <customErrors mode="Off" defaultRedirect="~/errorPage.aspx"> <error statusCode="404" redirect="~/error.aspx"/> </customErrors> <sessionState mode="SQLServer" sqlConnectionString="server=74.208.17.114,43001;uid=disputesuite;pwd=bvm943@bhr^!fwik;" cookieless="false" timeout="40"/> <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"> <namespaces> <clear/> <add namespace="System"/> <add namespace="System.Collections"/> <add namespace="System.Collections.Specialized"/> <add namespace="System.Configuration"/> <add namespace="System.Data"/> <add namespace="System.Text"/> <add namespace="System.Text.RegularExpressions"/> <add namespace="System.Web"/> <add namespace="System.Web.Caching"/> <add namespace="System.Web.SessionState"/> <add namespace="System.Web.Security"/> <add namespace="System.Web.Profile"/> <add namespace="System.Web.UI"/> <add namespace="System.Web.UI.WebControls"/> <add namespace="System.Web.UI.WebControls.WebParts"/> <add namespace="System.Web.UI.HtmlControls"/> </namespaces> <tagMapping> <add tagType="System.Web.UI.WebControls.CompareValidator" mappedTagType="Sample.Web.UI.Compatibility.CompareValidator, Validators, Version=1.0.0.0"/> <add tagType="System.Web.UI.WebControls.CustomValidator" mappedTagType="Sample.Web.UI.Compatibility.CustomValidator, Validators, Version=1.0.0.0"/> <add tagType="System.Web.UI.WebControls.RangeValidator" mappedTagType="Sample.Web.UI.Compatibility.RangeValidator, Validators, Version=1.0.0.0"/> <add tagType="System.Web.UI.WebControls.RegularExpressionValidator" mappedTagType="Sample.Web.UI.Compatibility.RegularExpressionValidator, Validators, Version=1.0.0.0"/> <add tagType="System.Web.UI.WebControls.RequiredFieldValidator" mappedTagType="Sample.Web.UI.Compatibility.RequiredFieldValidator, Validators, Version=1.0.0.0"/> <add tagType="System.Web.UI.WebControls.ValidationSummary" mappedTagType="Sample.Web.UI.Compatibility.ValidationSummary, Validators, Version=1.0.0.0"/> </tagMapping> <controls> <!-- STANDARD WEB CONTROLS --> <!-- HARDCORE WEB CONTROLS --> <add tagPrefix="hc" namespace="Hardcore.Web.UI.WebControls" assembly="Hardcore.Web.WebUtility"/> <add tagPrefix="hc" namespace="Hardcore.Web.UI.WebControls" assembly="Hardcore.Web.System"/> <add tagPrefix="hc" namespace="Hardcore.Web.UI.WebControls" assembly="Hardcore.Web.Commerce"/> <add tagPrefix="hcv" namespace="Hardcore.Web.Validation" assembly="Hardcore.Web.Validation"/> <add tagPrefix="fp" namespace="Hardcore.Web.UI.FormParts" assembly="Hardcore.Web.UI.FormParts"/> <!-- FREETEXTBOX WEB CONTROLS --> <add tagPrefix="ftb" namespace="FreeTextBoxControls" assembly="FreeTextBox"/> <!-- HARDCORE ACCOUNTS WEB CONTROLS --> <add tagPrefix="hca" namespace="Hardcore.Web.UI.WebControls" assembly="Hardcore.Web.Accounts"/> <add tagPrefix="fpa" namespace="Hardcore.Web.UI.FormParts" assembly="Hardcore.Web.Accounts"/> <!-- HARDCORE CONTENT WEB CONTROLS --> <add tagPrefix="hcc" namespace="Hardcore.Web.UI.WebControls" assembly="Hardcore.Web.Content"/> <!-- DISPUTE SUITE WEB CONTROLS --> <add tagPrefix="ds" namespace="DisputeSuite.Web.UI.WebControls" assembly="DisputeSuite.Web"/> <!-- TELERIK WEB CONTROLS --> <add tagPrefix="rad" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI"/> <!-- Ajax Toolkit --> <add tagPrefix="atk" namespace="AjaxControlToolkit" assembly="AjaxControlToolkit"/> <!-- Essential Objects --> <add tagPrefix="eo" namespace="EO.Web" assembly="EO.Web"/> </controls> </pages> <authentication mode="Forms"> <forms name="HardcoreAccounts" defaultUrl="~/Modules/DisputeSuite/Customers/" loginUrl="~/Login.aspx" protection="All" timeout="99999" path="/"/> </authentication> <authorization> <allow users="*"/> </authorization> <!-- Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development. --> <compilation debug="true" targetFramework="4.0"> <assemblies> <!-- <add assembly="BCL.EasyConverterHTML.Interop, Version=3.0.0.0, Culture=neutral, PublicKeyToken=db709b4c74199509"/> --> <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Web.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Runtime.Remoting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="Microsoft.JScript, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.DirectoryServices.Protocols, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Web.RegularExpressions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Messaging, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> </assemblies> </compilation> <httpRuntime maxRequestLength="2097151" executionTimeout="99999"/> <httpHandlers> <remove verb="*" path="*.asmx"/> <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/> <add path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI"/> <add path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/> <add path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/> <add path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/> <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false"/> </httpHandlers> <httpModules> <!-- Remove unnecessary Http Modules for faster pipeline --> <!--<remove name="Session" /> <remove name="WindowsAuthentication"/>--> <remove name="PassportAuthentication"/> <!--<remove name="AnonymousIdentification" />--> <remove name="UrlAuthorization"/> <remove name="FileAuthorization"/> <remove name="OutputCache"/> <remove name="RoleManager"/> <remove name="Profile"/> <remove name="ErrorHandlerModule"/> <remove name="ServiceModel"/> <add name="UserTrackingModule" type="Hardcore.Web.HttpModules.UserTrackingModule, Hardcore.Web.Accounts"/> <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI"/> </httpModules> </system.web> <system.web.extensions> <scripting> <webServices> <jsonSerialization maxJsonLength="5000000"> <converters> </converters> </jsonSerialization> </webServices> </scripting> </system.web.extensions> <system.webServer> <validation validateIntegratedModeConfiguration="false"/> <modules> <add name="UserTrackingModule" type="Hardcore.Web.HttpModules.UserTrackingModule, Hardcore.Web.Accounts"/> <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" preCondition="managedHandler"/> </modules> <handlers> <add name="ChartImage.axd_*" path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode,runtimeVersionv2.0"/> <add name="Telerik.Web.UI.SpellCheckHandler.axd_*" path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode,runtimeVersionv2.0"/> <add name="Telerik.Web.UI.DialogHandler.aspx_*" path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode,runtimeVersionv2.0"/> <add name="Telerik.RadUploadProgressHandler.ashx_*" path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI" preCondition="integratedMode,runtimeVersionv2.0"/> <add name="Telerik.Web.UI.WebResource.axd_*" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" preCondition="integratedMode,runtimeVersionv2.0"/> </handlers> <defaultDocument> <files> <clear/> <add value="Index.aspx"/> <add value="Default.aspx"/> <add value="index.html"/> </files> </defaultDocument> </system.webServer> <PaymentGateways> <Gateway Name="AuthNetARBTest" Url="https://apitest.authorize.net/xml/v1/request.api" LoginName="55euNxY3Db" TransactionKey="5xcU46f949k2MMB6"/> <Gateway Name="AuthNetARBLive" Url="https://api.authorize.net/xml/v1/request.api" LoginName="36EbkM4AB6H" TransactionKey="2fU2p8Y5h3jB566V"/> <Gateway Name="AuthNetAIMTest" Url="https://test.authorize.net/gateway/transact.dll" LoginName="55euNxY3Db" TransactionKey="5xcU46f949k2MMB6"/> <Gateway Name="AuthNetAIMLive" Url="https://secure.authorize.net/gateway/transact.dll" LoginName="36EbkM4AB6H" TransactionKey="2fU2p8Y5h3jB566V"/> </PaymentGateways> <!-- Setup the Hardcore Applications that this application will use from the SystemApplications Database Table --> <HardcoreApplications> <Application ApplicationName="DisputeManager" IsDefault="True"/> </HardcoreApplications> <telerik.web.ui> <radScheduler defaultAppointmentProvider="Integrated"> <appointmentProviders> <add name="ReadOnlyXmlSchedulerProvider" type="Telerik.Web.UI.XmlSchedulerProvider" fileName="~/App_Data/Appointments.xml" persistChanges="false"/> <add name="ReadOnlySchedulerData" type="Telerik.Web.Examples.Scheduler.MyDbSchedulerProvider" connectionStringName="RadSchedulerConnectionString" persistChanges="false"/> </appointmentProviders> </radScheduler> </telerik.web.ui> </configuration>