Upgrade from 1.x
Upgrade Checklist



Replacing Wisej.Web by Wisej.Framework
New SDK Format
Designer and Templates

Last updated
Was this helpful?
Was this helpful?
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<appSettings>
<add key="Wisej.LicenseKey" value="" />
<add key="Wisej.DefaultTheme" value="Bootstrap-4" />
</appSettings>
<system.web>
<compilation debug="true" />
<httpRuntime targetFramework="4.8" maxRequestLength="1048576" />
<httpModules>
<add name="Wisej" type="Wisej.Core.HttpModule, Wisej.Framework" />
</httpModules>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<handlers>
<add name="json" verb="*" path="*.json" type="System.Web.HttpForbiddenHandler" />
<add name="wisej" verb="*" path="*.wx" type="Wisej.Core.HttpHandler, Wisej.Framework" />
</handlers>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
<defaultDocument enabled="true">
<files>
<add value="Default.html" />
</files>
</defaultDocument>
</system.webServer>
<!--
Uncomment the trace listener below to enable logging to a log file.
-->
<!--
<system.diagnostics>
<trace autoflush="true" indentsize="4">
<listeners>
<remove name="Default" />
<add name="Default" type="System.Diagnostics.TextWriterTraceListener" initializeData="Trace.log" />
</listeners>
</trace>
</system.diagnostics>
-->
</configuration>
<!--ProjectGuid: f56c9a70-bc66-49ef-957b-6de7ca9980d5-->