Changeset 83

User picture

Author: marisic.net

(2009/02/02 07:47) About 3 years ago


  

Affected files

Added UnityWeb/UnityWeb/Modules/Common/BusinessConversation.cs

Show contents

Added UnityWeb/UnityWeb/Modules/Common/Common.csproj

Show contents

Added UnityWeb/UnityWeb/Modules/Common/EnumerationParser.cs

Show contents

Added UnityWeb/UnityWeb/Modules/Common/PresenterScanner.cs

Show contents

Added UnityWeb/UnityWeb/Modules/Common/Properties/AssemblyInfo.cs

Show contents

Added UnityWeb/UnityWeb/Modules/Common/View/IPresenter.cs

Show contents

Added UnityWeb/UnityWeb/Modules/Common/View/Presenter.cs

Show contents

Added UnityWeb/UnityWeb/Modules/Modules/EmployeeManagement/EmployeeController.cs

Show contents

Added UnityWeb/UnityWeb/Modules/Modules/EmployeeManagement/IEmployeeController.cs

Show contents

Added UnityWeb/UnityWeb/Modules/Modules/EmployeeManagement/View/EmployeePresenter.cs

Show contents

Added UnityWeb/UnityWeb/Modules/Modules/EmployeeManagement/View/IEmployeeView.cs

Show contents

Added UnityWeb/UnityWeb/Modules/Modules/Modules.csproj

Show contents

Added UnityWeb/UnityWeb/Modules/Modules/Properties/AssemblyInfo.cs

Show contents

Added UnityWeb/UnityWeb/Modules/Modules/StructureMapRegistery.cs

Show contents

Updated UnityWeb/UnityWeb/Repository/Test/RepositoryTest/CustomerDataProviderTest.cs Download diff

8283
3
using System;
3
using System;
4
using System.IO;
4
using System.IO;
5
using Domain.Business;
5
using Domain.Business;
6
using HibernatingRhinos.NHibernate.Profiler.Appender;
6
using Modules;
7
using Modules.Unity;
7
using Modules.Common;
8
using NUnit.Framework;
8
using NUnit.Framework;
9
using Repository.NHibernateDataAccess.Providers.Interfaces;
9
using Repository.NHibernateDataAccess.Providers.Interfaces;
10
using StructureMap;
10
using StructureMap;
...
...
35
        [SetUp]
35
        [SetUp]
36
        public void MyTestInitialize()
36
        public void MyTestInitialize()
37
        {
37
        {
38
            
39
            ObjectFactory.BuildUp(this);
38
            ObjectFactory.BuildUp(this);
40
        }
39
        }
41
40
...
...
59
        #region Test Methods
58
        #region Test Methods
60
59
61
        [Test]
60
        [Test]
61
        [BusinessConversation]
62
        public void AddCustomer()
62
        public void AddCustomer()
63
        {
63
        {
64
            string id = Convert.ToBase64String(Guid.NewGuid().ToByteArray());
64
            string id = Convert.ToBase64String(Guid.NewGuid().ToByteArray());
...
...
100
        }
100
        }
101
101
102
        [Test]
102
        [Test]
103
        [BusinessConversation]
103
        public void GetCustomer()
104
        public void GetCustomer()
104
        {
105
        {
105
            const string id = "ALFKI";
106
            const string id = "ALFKI";
...
...
112
        }
113
        }
113
114
114
        [Test]
115
        [Test]
116
        [BusinessConversation]
115
        public void GetCustomers()
117
        public void GetCustomers()
116
        {
118
        {
117
            var Customers = _provider.GetAll();
119
            var Customers = _provider.GetAll();

Updated UnityWeb/UnityWeb/Repository/Test/RepositoryTest/EmployeeConversationTest.cs Download diff

8283
3
using System;
3
using System;
4
using System.IO;
4
using System.IO;
5
using Domain.Business;
5
using Domain.Business;
6
using Modules.Base;
6
using Modules;
7
using Modules.Unity;
7
using Modules.Common;
8
using NUnit.Framework;
8
using NUnit.Framework;
9
using Repository.NHibernateDataAccess.Providers.Interfaces;
9
using Repository.NHibernateDataAccess.Providers.Interfaces;
10
using StructureMap;
10
using StructureMap;

Updated UnityWeb/UnityWeb/Repository/Test/RepositoryTest/EmployeeDataProviderTest.cs Download diff

8283
3
using System;
3
using System;
4
using System.IO;
4
using System.IO;
5
using Domain.Business;
5
using Domain.Business;
6
using Modules.Base;
6
using Modules;
7
using Modules.Unity;
7
using Modules.Common;
8
using NUnit.Framework;
8
using NUnit.Framework;
9
using Repository.NHibernateDataAccess.Providers.Interfaces;
9
using Repository.NHibernateDataAccess.Providers.Interfaces;
10
using StructureMap;
10
using StructureMap;

Updated UnityWeb/UnityWeb/Repository/Test/RepositoryTest/ProductDataProviderTest.cs Download diff

8283
2
2
3
using System;
3
using System;
4
using System.IO;
4
using System.IO;
5
using Domain.Business;
6
using HibernatingRhinos.NHibernate.Profiler.Appender;
5
using HibernatingRhinos.NHibernate.Profiler.Appender;
7
using Modules.Base;
6
using Modules;
8
using Modules.Unity;
7
using Modules.Common;
9
using NUnit.Framework;
8
using NUnit.Framework;
10
using Repository.NHibernateDataAccess;
11
using Repository.NHibernateDataAccess.Providers.Interfaces;
9
using Repository.NHibernateDataAccess.Providers.Interfaces;
12
using StructureMap;
10
using StructureMap;
13
using StructureMap.Attributes;
11
using StructureMap.Attributes;
...
...
92
            Assert.IsTrue(Product.Category.Id > 0);
90
            Assert.IsTrue(Product.Category.Id > 0);
93
        }
91
        }
94
92
93
        #endregion
94
95
        //[Test]
95
        //[Test]
96
        //[BusinessConversation]
96
        //[BusinessConversation]
97
        //public void ProductDataProviderGetProducts()
97
        //public void ProductDataProviderGetProducts()
...
...
133
        //    }
133
        //    }
134
        //}
134
        //}
135
135
136
        #endregion
137
138
        //[Test]
136
        //[Test]
139
        //public void ProductDataProviderAddProduct()
137
        //public void ProductDataProviderAddProduct()
140
        //{
138
        //{

Updated UnityWeb/UnityWeb/Repository/Test/RepositoryTest/RepositoryTest.csproj Download diff

8283
112
    <None Include="App.config" />
112
    <None Include="App.config" />
113
  </ItemGroup>
113
  </ItemGroup>
114
  <ItemGroup>
114
  <ItemGroup>
115
    <ProjectReference Include="..\..\..\Base\Base.csproj">
116
      <Project>{62CAE9B3-2E87-47EF-8145-872B915CBC0B}</Project>
117
      <Name>Base</Name>
118
    </ProjectReference>
119
    <ProjectReference Include="..\..\..\Domain\Business\Business.csproj">
115
    <ProjectReference Include="..\..\..\Domain\Business\Business.csproj">
120
      <Project>{C043FD7C-4EB0-4854-9CDA-7BC409E73E26}</Project>
116
      <Project>{C043FD7C-4EB0-4854-9CDA-7BC409E73E26}</Project>
121
      <Name>Business</Name>
117
      <Name>Business</Name>
122
    </ProjectReference>
118
    </ProjectReference>
123
    <ProjectReference Include="..\..\..\Modules\Unity\Unity.csproj">
119
    <ProjectReference Include="..\..\..\Modules\Common\Common.csproj">
124
      <Project>{4F98493D-6B1D-4B97-AF2E-FFD5CDB8700C}</Project>
120
      <Project>{F5A7225F-4CC0-482A-B8D5-37A276634EA1}</Project>
125
      <Name>Unity</Name>
121
      <Name>Common</Name>
126
    </ProjectReference>
122
    </ProjectReference>
123
    <ProjectReference Include="..\..\..\Modules\Modules\Modules.csproj">
124
      <Project>{1B4146E9-3C1E-4E74-8ADA-1547057809B6}</Project>
125
      <Name>Modules %28Modules\Modules%29</Name>
126
    </ProjectReference>
127
    <ProjectReference Include="..\..\NHibernateDataAccess\NHibernateDataAccess.csproj">
127
    <ProjectReference Include="..\..\NHibernateDataAccess\NHibernateDataAccess.csproj">
128
      <Project>{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}</Project>
128
      <Project>{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}</Project>
129
      <Name>NHibernateDataAccess</Name>
129
      <Name>NHibernateDataAccess</Name>

Updated UnityWeb/UnityWeb/UnityWeb.sln Download diff

8283
121
EndProject
121
EndProject
122
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NHibernateDataAccess",
"Repository\NHibernateDataAccess\NHibernateDataAccess.csproj", "{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}"
122
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NHibernateDataAccess",
"Repository\NHibernateDataAccess\NHibernateDataAccess.csproj", "{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}"
123
EndProject
123
EndProject
124
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeManagement", "Modules\Customer\EmployeeManagement.csproj", "{7419C9FA-59B5-418D-BFD8-B1F428A1B042}"
125
EndProject
126
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity", "Modules\Unity\Unity.csproj", "{4F98493D-6B1D-4B97-AF2E-FFD5CDB8700C}"
127
EndProject
128
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Base", "Base\Base.csproj", "{62CAE9B3-2E87-47EF-8145-872B915CBC0B}"
129
EndProject
130
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Deploy", "Deploy", "{580602F7-0A18-4652-BD25-3E9FDE2B789B}"
124
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Deploy", "Deploy", "{580602F7-0A18-4652-BD25-3E9FDE2B789B}"
131
EndProject
125
EndProject
132
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Development", "Development",
"{907A9018-8339-476E-8B57-1AFB14ED8EDD}"
126
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Development", "Development",
"{907A9018-8339-476E-8B57-1AFB14ED8EDD}"
...
...
195
		Library\StructureMap\StructureMapDoctor.exe = Library\StructureMap\StructureMapDoctor.exe
189
		Library\StructureMap\StructureMapDoctor.exe = Library\StructureMap\StructureMapDoctor.exe
196
	EndProjectSection
190
	EndProjectSection
197
EndProject
191
EndProject
192
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Modules", "Modules\Modules\Modules.csproj",
"{1B4146E9-3C1E-4E74-8ADA-1547057809B6}"
193
EndProject
194
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "Modules\Common\Common.csproj",
"{F5A7225F-4CC0-482A-B8D5-37A276634EA1}"
195
EndProject
198
Global
196
Global
199
	GlobalSection(SubversionScc) = preSolution
197
	GlobalSection(SubversionScc) = preSolution
200
		Svn-Managed = True
198
		Svn-Managed = True
...
...
217
		{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}.Debug|Any CPU.Build.0 = Debug|Any CPU
215
		{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}.Debug|Any CPU.Build.0 = Debug|Any CPU
218
		{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}.Release|Any CPU.ActiveCfg = Release|Any CPU
216
		{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}.Release|Any CPU.ActiveCfg = Release|Any CPU
219
		{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}.Release|Any CPU.Build.0 = Release|Any CPU
217
		{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}.Release|Any CPU.Build.0 = Release|Any CPU
220
		{7419C9FA-59B5-418D-BFD8-B1F428A1B042}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
221
		{7419C9FA-59B5-418D-BFD8-B1F428A1B042}.Debug|Any CPU.Build.0 = Debug|Any CPU
222
		{7419C9FA-59B5-418D-BFD8-B1F428A1B042}.Release|Any CPU.ActiveCfg = Release|Any CPU
223
		{7419C9FA-59B5-418D-BFD8-B1F428A1B042}.Release|Any CPU.Build.0 = Release|Any CPU
224
		{4F98493D-6B1D-4B97-AF2E-FFD5CDB8700C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
225
		{4F98493D-6B1D-4B97-AF2E-FFD5CDB8700C}.Debug|Any CPU.Build.0 = Debug|Any CPU
226
		{4F98493D-6B1D-4B97-AF2E-FFD5CDB8700C}.Release|Any CPU.ActiveCfg = Release|Any CPU
227
		{4F98493D-6B1D-4B97-AF2E-FFD5CDB8700C}.Release|Any CPU.Build.0 = Release|Any CPU
228
		{62CAE9B3-2E87-47EF-8145-872B915CBC0B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
229
		{62CAE9B3-2E87-47EF-8145-872B915CBC0B}.Debug|Any CPU.Build.0 = Debug|Any CPU
230
		{62CAE9B3-2E87-47EF-8145-872B915CBC0B}.Release|Any CPU.ActiveCfg = Release|Any CPU
231
		{62CAE9B3-2E87-47EF-8145-872B915CBC0B}.Release|Any CPU.Build.0 = Release|Any CPU
232
		{90EEFC33-1A60-4710-AB1D-03F225462D6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
218
		{90EEFC33-1A60-4710-AB1D-03F225462D6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
233
		{90EEFC33-1A60-4710-AB1D-03F225462D6E}.Debug|Any CPU.Build.0 = Debug|Any CPU
219
		{90EEFC33-1A60-4710-AB1D-03F225462D6E}.Debug|Any CPU.Build.0 = Debug|Any CPU
234
		{90EEFC33-1A60-4710-AB1D-03F225462D6E}.Release|Any CPU.ActiveCfg = Release|Any CPU
220
		{90EEFC33-1A60-4710-AB1D-03F225462D6E}.Release|Any CPU.ActiveCfg = Release|Any CPU
...
...
237
		{4B2A90DE-897E-45D2-86DB-D03D37622A35}.Debug|Any CPU.Build.0 = Debug|Any CPU
223
		{4B2A90DE-897E-45D2-86DB-D03D37622A35}.Debug|Any CPU.Build.0 = Debug|Any CPU
238
		{4B2A90DE-897E-45D2-86DB-D03D37622A35}.Release|Any CPU.ActiveCfg = Release|Any CPU
224
		{4B2A90DE-897E-45D2-86DB-D03D37622A35}.Release|Any CPU.ActiveCfg = Release|Any CPU
239
		{4B2A90DE-897E-45D2-86DB-D03D37622A35}.Release|Any CPU.Build.0 = Release|Any CPU
225
		{4B2A90DE-897E-45D2-86DB-D03D37622A35}.Release|Any CPU.Build.0 = Release|Any CPU
226
		{1B4146E9-3C1E-4E74-8ADA-1547057809B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
227
		{1B4146E9-3C1E-4E74-8ADA-1547057809B6}.Debug|Any CPU.Build.0 = Debug|Any CPU
228
		{1B4146E9-3C1E-4E74-8ADA-1547057809B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
229
		{1B4146E9-3C1E-4E74-8ADA-1547057809B6}.Release|Any CPU.Build.0 = Release|Any CPU
230
		{F5A7225F-4CC0-482A-B8D5-37A276634EA1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
231
		{F5A7225F-4CC0-482A-B8D5-37A276634EA1}.Debug|Any CPU.Build.0 = Debug|Any CPU
232
		{F5A7225F-4CC0-482A-B8D5-37A276634EA1}.Release|Any CPU.ActiveCfg = Release|Any CPU
233
		{F5A7225F-4CC0-482A-B8D5-37A276634EA1}.Release|Any CPU.Build.0 = Release|Any CPU
240
	EndGlobalSection
234
	EndGlobalSection
241
	GlobalSection(SolutionProperties) = preSolution
235
	GlobalSection(SolutionProperties) = preSolution
242
		HideSolutionNode = FALSE
236
		HideSolutionNode = FALSE
...
...
246
		{E0577D18-1E43-4C51-B040-A953D8D570F6} = {F42F1289-8908-479B-9B9C-F68EDFC35F75}
240
		{E0577D18-1E43-4C51-B040-A953D8D570F6} = {F42F1289-8908-479B-9B9C-F68EDFC35F75}
247
		{2262B8D1-70B4-4BAF-9A42-14D9E98D87DD} = {F42F1289-8908-479B-9B9C-F68EDFC35F75}
241
		{2262B8D1-70B4-4BAF-9A42-14D9E98D87DD} = {F42F1289-8908-479B-9B9C-F68EDFC35F75}
248
		{9AC2D34A-4387-4CDF-BA03-C09F7DF68CAA} = {F42F1289-8908-479B-9B9C-F68EDFC35F75}
242
		{9AC2D34A-4387-4CDF-BA03-C09F7DF68CAA} = {F42F1289-8908-479B-9B9C-F68EDFC35F75}
249
		{7419C9FA-59B5-418D-BFD8-B1F428A1B042} = {71D29CE7-1DAE-4270-9BD5-C18F3C72F1EE}
243
		{1B4146E9-3C1E-4E74-8ADA-1547057809B6} = {71D29CE7-1DAE-4270-9BD5-C18F3C72F1EE}
250
		{4F98493D-6B1D-4B97-AF2E-FFD5CDB8700C} = {71D29CE7-1DAE-4270-9BD5-C18F3C72F1EE}
244
		{F5A7225F-4CC0-482A-B8D5-37A276634EA1} = {71D29CE7-1DAE-4270-9BD5-C18F3C72F1EE}
251
		{62CAE9B3-2E87-47EF-8145-872B915CBC0B} = {71D29CE7-1DAE-4270-9BD5-C18F3C72F1EE}
252
		{C043FD7C-4EB0-4854-9CDA-7BC409E73E26} = {4DC882D4-2778-4491-B4EC-CE7C519F0B7E}
245
		{C043FD7C-4EB0-4854-9CDA-7BC409E73E26} = {4DC882D4-2778-4491-B4EC-CE7C519F0B7E}
253
		{2332706B-F179-4F56-BF97-48D081A63BBE} = {886BB9C1-A5A8-4AED-83A4-EB9207C07005}
246
		{2332706B-F179-4F56-BF97-48D081A63BBE} = {886BB9C1-A5A8-4AED-83A4-EB9207C07005}
254
		{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8} = {886BB9C1-A5A8-4AED-83A4-EB9207C07005}
247
		{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8} = {886BB9C1-A5A8-4AED-83A4-EB9207C07005}

Updated UnityWeb/UnityWeb/UnityWeb/Global.asax.cs Download diff

8283
2
2
3
using System;
3
using System;
4
using System.Web;
4
using System.Web;
5
using Modules.EmployeeManagement.View;
5
using Modules;
6
using Modules.Unity;
7
using StructureMap;
6
using StructureMap;
8
7
9
#endregion
8
#endregion
...
...
14
    {
13
    {
15
        protected void Application_Start(object sender, EventArgs e)
14
        protected void Application_Start(object sender, EventArgs e)
16
        {
15
        {
17
            ObjectFactory.Initialize(factory =>
16
            ObjectFactory.Initialize(factory => factory.AddRegistry<StructureMapRegistery>());
18
                                         {
19
                                             factory.AddRegistry<StructureMapRegistery>();
20
                                             //factory.SetAllProperties(
21
                                             //    policy => policy.OfType<EmployeePresenter>());
22
                                         }
23
                );
24
        }
17
        }
25
18
26
        protected void Session_Start(object sender, EventArgs e)
19
        protected void Session_Start(object sender, EventArgs e)

Updated UnityWeb/UnityWeb/UnityWeb/UnityWeb.csproj Download diff

8283
89
    </Compile>
89
    </Compile>
90
    <Compile Include="Properties\AssemblyInfo.cs" />
90
    <Compile Include="Properties\AssemblyInfo.cs" />
91
    <Compile Include="QueryStringExtensions.cs" />
91
    <Compile Include="QueryStringExtensions.cs" />
92
    <Compile Include="UnityHttpModule.cs" />
93
  </ItemGroup>
92
  </ItemGroup>
94
  <ItemGroup>
93
  <ItemGroup>
95
    <ProjectReference Include="..\Base\Base.csproj">
96
      <Project>{62CAE9B3-2E87-47EF-8145-872B915CBC0B}</Project>
97
      <Name>Base</Name>
98
    </ProjectReference>
99
    <ProjectReference Include="..\Domain\Business\Business.csproj">
94
    <ProjectReference Include="..\Domain\Business\Business.csproj">
100
      <Project>{C043FD7C-4EB0-4854-9CDA-7BC409E73E26}</Project>
95
      <Project>{C043FD7C-4EB0-4854-9CDA-7BC409E73E26}</Project>
101
      <Name>Business</Name>
96
      <Name>Business</Name>
102
    </ProjectReference>
97
    </ProjectReference>
103
    <ProjectReference Include="..\Modules\Customer\EmployeeManagement.csproj">
98
    <ProjectReference Include="..\Modules\Common\Common.csproj">
104
      <Project>{7419C9FA-59B5-418D-BFD8-B1F428A1B042}</Project>
99
      <Project>{F5A7225F-4CC0-482A-B8D5-37A276634EA1}</Project>
105
      <Name>EmployeeManagement</Name>
100
      <Name>Common</Name>
106
    </ProjectReference>
101
    </ProjectReference>
107
    <ProjectReference Include="..\Modules\Unity\Unity.csproj">
102
    <ProjectReference Include="..\Modules\Modules\Modules.csproj">
108
      <Project>{4F98493D-6B1D-4B97-AF2E-FFD5CDB8700C}</Project>
103
      <Project>{1B4146E9-3C1E-4E74-8ADA-1547057809B6}</Project>
109
      <Name>Unity</Name>
104
      <Name>Modules %28Modules\Modules%29</Name>
110
    </ProjectReference>
105
    </ProjectReference>
111
    <ProjectReference Include="..\Repository\NHibernateDataAccess\NHibernateDataAccess.csproj">
106
    <ProjectReference Include="..\Repository\NHibernateDataAccess\NHibernateDataAccess.csproj">
112
      <Project>{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}</Project>
107
      <Project>{73BF2E1A-B55C-43E7-B390-572AF3CC6EE8}</Project>
...
...
141
        <WebProjectProperties>
136
        <WebProjectProperties>
142
          <UseIIS>False</UseIIS>
137
          <UseIIS>False</UseIIS>
143
          <AutoAssignPort>True</AutoAssignPort>
138
          <AutoAssignPort>True</AutoAssignPort>
144
          <DevelopmentServerPort>2393</DevelopmentServerPort>
139
          <DevelopmentServerPort>9403</DevelopmentServerPort>
145
          <DevelopmentServerVPath>/</DevelopmentServerVPath>
140
          <DevelopmentServerVPath>/</DevelopmentServerVPath>
146
          <IISUrl>
141
          <IISUrl>
147
          </IISUrl>
142
          </IISUrl>

Updated UnityWeb/UnityWeb/UnityWeb/Web.config Download diff

8283
81
    </httpHandlers>
81
    </httpHandlers>
82
    <httpModules>
82
    <httpModules>
83
      <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35"/>
83
      <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35"/>
84
      <add name="UnityHttpModule" type="UnityWeb.UnityHttpModule, UnityWeb, Version=1.0.0.0, Culture=neutral"/>
85
    </httpModules>
84
    </httpModules>
86
  </system.web>
85
  </system.web>
87
  <system.codedom>
86
  <system.codedom>