views:

20

answers:

1

I am trying to add a Silverlight application running on the .Net 4 Application Pool as a child application of a ASP.Net application running on the Classic .Net Application Pool. I receive several configuration errors due to the Silverlight application inheriting configuration elements from the parent application. Does anyone know of an article, or some basic steps, that can help clarify the process of accomplishing this task?

Thank you

A: 

The two applications (.NET 3.5 and .NET 4) will need to run in different application pools.

I.e. the child folder containing the .NET 4 application will need to be its own application, assigned to a different application pool.

However neither will be a Silverlight application --- they will be server profile .NET (Silverlight doesn't make sense, it is for client applications, not a web site).

Richard
They are running in different application pools. I receive the error 'There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined'I assume this is coming from some issue with the child application inheriting configuration elements from the parent. Any ideas?
Sidney
@Sidney: As fas as I am aware the web.config from the root of an IIS Application only inherits from machine config files (machine.config + web.config in same folder). But it is on my to do list to check this.
Richard