6 <section name=
"castle" type=
"Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor" />
7 <section name=
"igloo" type=
"Castle.Igloo.Configuration.ConfigurationSectionHandler, Castle.Igloo"/>
12 <facility id=
"IgluFacility" type=
"Castle.Igloo.IglooFacility, Castle.Igloo" >
13 <assembyView>Igloo.Clinic.Web
</assembyView>
18 <!-- Igloo components -->
20 <component id=
"XmlWebViewManager"
21 service=
"Castle.Igloo.UI.IViewManager, Castle.Igloo"
22 type=
"Castle.Igloo.UI.Web.XmlWebViewManager, Castle.Igloo" />
24 <component id=
"ConversationManager"
25 service=
"Castle.Igloo.Scopes.IConversationManager, Castle.Igloo"
26 type=
"Castle.Igloo.Scopes.Web.WebConversationManager, Castle.Igloo" />
28 <component id=
"GraphNavigator"
29 service=
"Castle.Igloo.Navigation.INavigator, Castle.Igloo"
30 type=
"Castle.Igloo.Navigation.GraphNavigator, Castle.Igloo" />
33 <component id=
"Login.Controller" type=
"Igloo.Clinic.Application.LoginController, Igloo.Clinic.Application" />
34 <component id=
"Patient.Controller" type=
"Igloo.Clinic.Application.PatientController, Igloo.Clinic.Application" />
35 <component id=
"Drug.Controller" type=
"Igloo.Clinic.Application.DrugController, Igloo.Clinic.Application" />
38 <component id=
"Service.Authentification"
39 type=
"Igloo.Clinic.Services.Impl.ServiceAuthentification, Igloo.Clinic.Services"
40 service=
"Igloo.Clinic.Services.Interfaces.IServiceAuthentification, Igloo.Clinic.Services"
42 <component id=
"Service.Patient"
43 type=
"Igloo.Clinic.Services.Impl.PatientService, Igloo.Clinic.Services"
44 service=
"Igloo.Clinic.Services.Interfaces.IPatientService, Igloo.Clinic.Services"/>
48 type=
"Igloo.Clinic.Domain.Cart, Igloo.Clinic.Domain"
49 service=
"Igloo.Clinic.Domain.ICart, Igloo.Clinic.Domain"
50 scope=
"Request" proxyScope=
"true"/>
56 <view id=
"login" path=
"/views/login.aspx" />
57 <view id=
"register" path=
"/views/register.aspx" />
58 <view id=
"index" path=
"/views/index.aspx" />
59 <view id=
"drug" path=
"/views/drug.aspx" />
63 <action id=
"logout" view=
"login" />
67 <actions view=
"login">
68 <action id=
"login" view=
"index" />
70 <actions view=
"register">
71 <action id=
"register" view=
"login" />
73 <actions view=
"index">
74 <action id=
"searchDrug" view=
"drug" />
84 Set compilation debug="true" to insert debugging
85 symbols into the compiled page. Because this
86 affects performance, set this value to true only
89 <compilation debug=
"true" />
91 The <authentication> section enables configuration
92 of the security authentication mode used by
93 ASP.NET to identify an incoming user.
97 <add name=
"ScopeLifestyleModule" type=
"Castle.Igloo.LifestyleManager.ScopeLifestyleModule, Castle.Igloo" />
100 <authentication mode=
"Windows" />
102 The <customErrors> section enables configuration
103 of what to do if/when an unhandled error occurs
104 during the execution of a request. Specifically,
105 it enables developers to configure html error pages
106 to be displayed in place of a error stack trace.
108 <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
109 <error statusCode="403" redirect="NoAccess.htm" />
110 <error statusCode="404" redirect="FileNotFound.htm" />
113 <sessionState timeout=
"1">
116 <trace enabled=
"true" />