Dashboard > MonoRail > ... > Castle.MonoRail.Views.AspView > Minimal Web.Config for MonoRail with AspView
Log In   View a printable version of the current page.
Minimal Web.Config for MonoRail with AspView
Added by Gauthier Segay, last edited by Roelof Blom on Aug 11, 2008  (view change)
Labels: 
(None)


Use this web.config file for new AspView websites

<?xml version="1.0"?>

<configuration>

	<configSections>
		<section name="monoRail" type="Castle.MonoRail.Framework.Configuration.MonoRailSectionHandler, Castle.MonoRail.Framework" />
		<section name="aspview" type="Castle.MonoRail.Views.AspView.AspViewConfigurationSection, Castle.MonoRail.Views.AspView" />
	</configSections>

	<monoRail>
		<controllers>
			<assembly>YourWebProjectAssembly</assembly>
		</controllers>
		<viewEngine
			viewPathRoot="Views"
			customEngine="Castle.MonoRail.Views.AspView.AspViewEngine, Castle.MonoRail.Views.AspView" />
	</monoRail>

	<aspview saveFiles="false" autoRecompilation="true" debug="true" allowPartiallyTrustedCallers="false">
		<reference assembly="YourWebProjectAssembly.dll"/>
	</aspview>

	<system.web>
		<httpHandlers>
			<add verb="*" path="*.mvc"
				 type="Castle.MonoRail.Framework.MonoRailHttpHandlerFactory, Castle.MonoRail.Framework" />
		</httpHandlers>

		<httpModules>
			<add name="monorail" type="Castle.MonoRail.Framework.EngineContextModule, Castle.MonoRail.Framework" />
		</httpModules>

	</system.web>
	<!-- Optional: use C# 3.5 compiler when compiling views -->
	<system.codedom>
		<compilers>
			<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
				<providerOption name="CompilerVersion" value="v3.5"/>
				<providerOption name="WarnAsError" value="false"/>
			</compiler>
		</compilers>
	</system.codedom>
</configuration>

Site running on a free Atlassian Confluence Community License granted to Castle Project. Evaluate Confluence today.
Powered by Atlassian Confluence, the Enterprise Wiki. (Version: 2.5.4 Build:#809 Jun 12, 2007) - Bug/feature request - Contact Administrators