Problem loading 'Live' site

0
0

I have been developing a solution in WiseJ and all runs well in VS 2015 debug mode, however when I try to publish it I get a time out error.

For you information

I can ping the address to the server

I am using an application pool in integrated mode for dot net 4 (4.5 is a subset of 4)

IIS pointing to the folder containing the following

Bin

Default.html

Default.json

Favicon.ico

Web.config

 

Bin folder contains

Wisej.core.dll

Wisej.web.dll

Solution dll

 

I have tried adding the themes, app data folders etc. .in all locations and no difference.

Also checked all the relevant IIS settings, folder permissions etc.

 

I’m at a bit of a loss now as to where to look next

Any help would be appreciated (web config below)

 

<?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=”Blue-1″ />
<add key=”Document_Location” value=”D:\BMECERT\Documents\” />
</appSettings>
<connectionStrings>
<add name=”BME” connectionString=”Network Library=DBMSSOCN;Data Source=***.***.***.***,1433;Database= ******;Initial Catalog=**********;User ID=*********;Password=*****” providerName=”System.Data.SqlClient” />
</connectionStrings>
<system.web>
<httpRuntime targetFramework=”4.5″ maxRequestLength=”1048576″ />
<compilation>
<assemblies>
<!–
Add additional components here:
<add assembly=”Wisej.Web.Ext.JustGage”/>
–>
</assemblies>
</compilation>
<roleManager defaultProvider=”AspNetSqlProvider” enabled=”true”>
<providers>
<clear />
<add name=”AspNetSqlProvider” type=”System.Web.Security.SqlRoleProvider” connectionStringName=”******” applicationName=”****************” />
</providers>
</roleManager>
<globalization culture=”en-GB” />
<authorization>
<allow roles=”Administrator” />
<allow roles=”User” />
</authorization>
<membership defaultProvider=”AspNetSqlProvider”>
<providers>
<clear />
<add connectionStringName=”**************” enablePasswordRetrieval=”false” enablePasswordReset=”true” requiresQuestionAndAnswer=”true” applicationName=”BMECertification” requiresUniqueEmail=”true” passwordFormat=”Hashed” maxInvalidPasswordAttempts=”5″ minRequiredPasswordLength=”7″ minRequiredNonalphanumericCharacters=”1″ passwordAttemptWindow=”10″ passwordStrengthRegularExpression=”” name=”AspNetSqlProvider” type=”System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a” />
</providers>
</membership>
</system.web>
<system.webServer>
<modules>
<add name=”Wisej” type=”Wisej.Core.HttpModule, Wisej.Core” />
</modules>
<handlers>
<add name=”json” verb=”*” path=”*.json” type=”System.Web.HttpForbiddenHandler” />
<add name=”wisej” verb=”*” path=”*.wx” type=”Wisej.Core.HttpHandler, Wisej.Core” />
</handlers>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength=”1073741824″ />
</requestFiltering>
</security>
<defaultDocument enabled=”true”>
<files>
<add value=”Default.html” />
</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>
<!–ProjectGuid: {21F07195-1C51-4297-B74C-07D1B5E6C11B}–>

  • You must to post comments
1
0

Hi,

before reader further, please remove your Wisej.LicenseKey, asap :).

Best,

Jens

  • Gareth Bond
    Thanks Jens – missed that
  • You must to post comments
0
0

Hi Gareth,

How do you get the timeout error? Things to check:

  • If you created a new app pool, make sure it has full permissions on the app’s directory. (try with the default pool)
  • Make sure the app’s directory has full control for IIS_IUSRS (you can also try NETWORK_SERVICE)
  • Test this URL http://yourapp/wisej.wx (you have to get the loader code: http://demo.wisej.com/wisej.wx)
  • In Chrome with F12 look under Network to see what error you get, it’s possible that IIS is just not hitting the app.

Let me know.

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.