Hi There,
I have created sample Wisej 3 (.net framwork) web application and I am trying to publish it on IIS 10 server. Publish is successful on IIS 10 server. I have attached screenshot here just to making you sure that all required file, default.html, default.json and web.config is available in root directory.
Now, the real problem is, when I am trying to access web page – It coming up as blank and also if I try to access http://sitename/wisej.wx then it does give 200 Ok response with blank response.
Note: I did make required changes in my web.config file as mentioned in document https://docs.wisej.com/deployment/targets/iis#.net-framework.
<?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>
<appSettings>
<add key=”Wisej.LicenseKey” value=””/>
<add key=”Wisej.DefaultTheme” value=”Bootstrap-4″/>
</appSettings>
<system.web>
<compilation debug=”false” />
<httpRuntime targetFramework=”4.8″ maxRequestLength=”1048576″/>
<httpModules>
<remove name=”Wisej”/>
<add name=”Wisej” type=”Wisej.Core.HttpModule, Wisej.Framework”/>
</httpModules>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration=”false”/>
<handlers>
<remove name=”json”/>
<remove name=”wisej”/>
<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>
</files>
</defaultDocument>
</system.webServer>
<!–<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>
What could be the actual problem behind this ? Could you please help me with this ?
i have the same issue whether publishing to Winhost or azure
Please login first to submit.