Application Roots for assemblies

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: Application Roots for assemblies

    As long as the "facades" virtual directory is configured as an Application
    that's the way ASP.Net works. You can always remove the Application
    configuration for that directory in order to make it a part of the root
    Application.

    HTH,

    Kevin Spencer
    Microsoft FrontPage MVP
    Internet Developer
    [url]http://www.takempis.com[/url]
    Some things just happen.
    Everything else occurs.

    "Ian Turner" <iturner100@hotmail.com> wrote in message
    news:uO31UIXQDHA.3020@TK2MSFTNGP10.phx.gbl...
    > Hi,
    >
    > I've come across a strange problem to do with locating and loading
    > assemblies when deployed into Web Applications.
    >
    > I'll describe the scenario:
    > We have a web solution that contains a traditional Web Application project
    > with ASPX etc., another Web Application project with a number of Web
    > Services that act as facades into our business services layer, and a
    number
    > of private assemblies are used by each application (though not the same
    > assemblies - i.e. no shared assemblies are required).
    >
    > When developing locally, both web projects are given virtual directories
    > underneath the default website within IIS (though their physical paths are
    > not located in wwwroot). In this configuration, each individual
    application
    > is able to correctly locate and load their assemblies. Some assemblies are
    > loaded dynamically (as part of factory patterns etc.)
    >
    > When we deploy this solution to staging servers, we do not use the same
    > configuration of virtual directories. Instead, the aspx application is
    > installed directly into the root of a new website in IIS (i.e. it doesn't
    > get it's own virtual directory). The facades application, however, IS
    > installed in a virtual directory of the IIS website.
    >
    > The strange thing with this configuration is that when trying to locate
    > assemblies, the CLR is looking in the facades virtual directory - even
    when
    > the assemblies that it is looking for belong to the aspx application.
    >
    > Sticking the assemblies into the GAC provides a workaround - but should
    not
    > be necessary.
    >
    > Has anybody seen similar behaviour before and / or have any suggestions?
    >
    > Cheers
    > Ian
    >
    >

    Kevin Spencer Guest

  2. Similar Questions and Discussions

    1. Can testing server URL prefix include SSL roots (https)?
      Still trying to figure out why DW8 doesn't like my testing server. Perhaps SSL is the problem?
    2. I'm gettting roots/postmasters mail
      Hi, I'm running qmail and RedHat Version 7.2 I've been working on this problem for two days now. A few days ago a server that I have managed...
    3. How to prevent referenced assemblies from being compiled into the application?
      My question may be a bit odd. Right now I can see that all referenced assemblies in my project are compiled into the application assembly so when...
    4. Assemblies and Application Blocks problem
      Hi everybody I do not have Visual Studio. I only use Notepad and WebMatrix. My problems are : 1. I have DotNet Framework installed and it is...
    5. CA Trusted Roots
      I install a new CA into the Trusted Root Authority Store. Certificate works fine. When I reboot the certificate authority CA is gone. I am running...
  3. #2

    Default Re: Application Roots for assemblies

    Hi Kevin,

    Thanks for that. So, I guess the question is: does the aspx application (if
    it does not get its own virtual directory) also get configured as an
    application? I'm assuming that it doesn't - as that would explain the
    behaviour.

    Cheers
    Ian

    "Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
    news:ehXrgmXQDHA.2460@TK2MSFTNGP10.phx.gbl...
    > As long as the "facades" virtual directory is configured as an Application
    > that's the way ASP.Net works. You can always remove the Application
    > configuration for that directory in order to make it a part of the root
    > Application.
    >
    > HTH,
    >
    > Kevin Spencer
    > Microsoft FrontPage MVP
    > Internet Developer
    > [url]http://www.takempis.com[/url]
    > Some things just happen.
    > Everything else occurs.
    >
    > "Ian Turner" <iturner100@hotmail.com> wrote in message
    > news:uO31UIXQDHA.3020@TK2MSFTNGP10.phx.gbl...
    > > Hi,
    > >
    > > I've come across a strange problem to do with locating and loading
    > > assemblies when deployed into Web Applications.
    > >
    > > I'll describe the scenario:
    > > We have a web solution that contains a traditional Web Application
    project
    > > with ASPX etc., another Web Application project with a number of Web
    > > Services that act as facades into our business services layer, and a
    > number
    > > of private assemblies are used by each application (though not the same
    > > assemblies - i.e. no shared assemblies are required).
    > >
    > > When developing locally, both web projects are given virtual directories
    > > underneath the default website within IIS (though their physical paths
    are
    > > not located in wwwroot). In this configuration, each individual
    > application
    > > is able to correctly locate and load their assemblies. Some assemblies
    are
    > > loaded dynamically (as part of factory patterns etc.)
    > >
    > > When we deploy this solution to staging servers, we do not use the same
    > > configuration of virtual directories. Instead, the aspx application is
    > > installed directly into the root of a new website in IIS (i.e. it
    doesn't
    > > get it's own virtual directory). The facades application, however, IS
    > > installed in a virtual directory of the IIS website.
    > >
    > > The strange thing with this configuration is that when trying to locate
    > > assemblies, the CLR is looking in the facades virtual directory - even
    > when
    > > the assemblies that it is looking for belong to the aspx application.
    > >
    > > Sticking the assemblies into the GAC provides a workaround - but should
    > not
    > > be necessary.
    > >
    > > Has anybody seen similar behaviour before and / or have any suggestions?
    > >
    > > Cheers
    > > Ian
    > >
    > >
    >
    >

    Ian Turner Guest

  4. #3

    Default Re: Application Roots for assemblies

    I don't understand what you're asking. In IIS, and Application Domain is
    determined by several factors:

    1. The root folder is configured in IIS as an Application.
    2. All folders under the root folder, unless they are configured as
    Applications, are part of the root Application.

    The actual Application is not a set of folders; it is a memory space, in
    which all the executable code and data for that Application resides. The
    folders simply define what files are to be loaded into that Application
    space when used.

    HTH,

    Kevin Spencer
    Microsoft FrontPage MVP
    Internet Developer
    [url]http://www.takempis.com[/url]
    Some things just happen.
    Everything else occurs.

    "Ian Turner" <iturner100@hotmail.com> wrote in message
    news:uAvGavXQDHA.2320@TK2MSFTNGP12.phx.gbl...
    > Hi Kevin,
    >
    > Thanks for that. So, I guess the question is: does the aspx application
    (if
    > it does not get its own virtual directory) also get configured as an
    > application? I'm assuming that it doesn't - as that would explain the
    > behaviour.
    >
    > Cheers
    > Ian
    >
    > "Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
    > news:ehXrgmXQDHA.2460@TK2MSFTNGP10.phx.gbl...
    > > As long as the "facades" virtual directory is configured as an
    Application
    > > that's the way ASP.Net works. You can always remove the Application
    > > configuration for that directory in order to make it a part of the root
    > > Application.
    > >
    > > HTH,
    > >
    > > Kevin Spencer
    > > Microsoft FrontPage MVP
    > > Internet Developer
    > > [url]http://www.takempis.com[/url]
    > > Some things just happen.
    > > Everything else occurs.
    > >
    > > "Ian Turner" <iturner100@hotmail.com> wrote in message
    > > news:uO31UIXQDHA.3020@TK2MSFTNGP10.phx.gbl...
    > > > Hi,
    > > >
    > > > I've come across a strange problem to do with locating and loading
    > > > assemblies when deployed into Web Applications.
    > > >
    > > > I'll describe the scenario:
    > > > We have a web solution that contains a traditional Web Application
    > project
    > > > with ASPX etc., another Web Application project with a number of Web
    > > > Services that act as facades into our business services layer, and a
    > > number
    > > > of private assemblies are used by each application (though not the
    same
    > > > assemblies - i.e. no shared assemblies are required).
    > > >
    > > > When developing locally, both web projects are given virtual
    directories
    > > > underneath the default website within IIS (though their physical paths
    > are
    > > > not located in wwwroot). In this configuration, each individual
    > > application
    > > > is able to correctly locate and load their assemblies. Some assemblies
    > are
    > > > loaded dynamically (as part of factory patterns etc.)
    > > >
    > > > When we deploy this solution to staging servers, we do not use the
    same
    > > > configuration of virtual directories. Instead, the aspx application is
    > > > installed directly into the root of a new website in IIS (i.e. it
    > doesn't
    > > > get it's own virtual directory). The facades application, however, IS
    > > > installed in a virtual directory of the IIS website.
    > > >
    > > > The strange thing with this configuration is that when trying to
    locate
    > > > assemblies, the CLR is looking in the facades virtual directory - even
    > > when
    > > > the assemblies that it is looking for belong to the aspx application.
    > > >
    > > > Sticking the assemblies into the GAC provides a workaround - but
    should
    > > not
    > > > be necessary.
    > > >
    > > > Has anybody seen similar behaviour before and / or have any
    suggestions?
    > > >
    > > > Cheers
    > > > Ian
    > > >
    > > >
    > >
    > >
    >
    >

    Kevin Spencer Guest

  5. #4

    Default Re: Application Roots for assemblies

    Clearly. So, in that case, why would the root of a website not be able to
    correctly locate assemblies that are deployed in its bin directory. The
    actual error that the CLR throws out is that the assembly or dependency can
    not be found. Looking at the fusion logs identified that it was looking in
    the bin directory of the facades virtual directory.

    This is what I am asking.

    Ian

    "Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
    news:uBMxraYQDHA.2476@TK2MSFTNGP10.phx.gbl...
    > I don't understand what you're asking. In IIS, and Application Domain is
    > determined by several factors:
    >
    > 1. The root folder is configured in IIS as an Application.
    > 2. All folders under the root folder, unless they are configured as
    > Applications, are part of the root Application.
    >
    > The actual Application is not a set of folders; it is a memory space, in
    > which all the executable code and data for that Application resides. The
    > folders simply define what files are to be loaded into that Application
    > space when used.
    >
    > HTH,
    >
    > Kevin Spencer
    > Microsoft FrontPage MVP
    > Internet Developer
    > [url]http://www.takempis.com[/url]
    > Some things just happen.
    > Everything else occurs.
    >
    > "Ian Turner" <iturner100@hotmail.com> wrote in message
    > news:uAvGavXQDHA.2320@TK2MSFTNGP12.phx.gbl...
    > > Hi Kevin,
    > >
    > > Thanks for that. So, I guess the question is: does the aspx application
    > (if
    > > it does not get its own virtual directory) also get configured as an
    > > application? I'm assuming that it doesn't - as that would explain the
    > > behaviour.
    > >
    > > Cheers
    > > Ian
    > >
    > > "Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
    > > news:ehXrgmXQDHA.2460@TK2MSFTNGP10.phx.gbl...
    > > > As long as the "facades" virtual directory is configured as an
    > Application
    > > > that's the way ASP.Net works. You can always remove the Application
    > > > configuration for that directory in order to make it a part of the
    root
    > > > Application.
    > > >
    > > > HTH,
    > > >
    > > > Kevin Spencer
    > > > Microsoft FrontPage MVP
    > > > Internet Developer
    > > > [url]http://www.takempis.com[/url]
    > > > Some things just happen.
    > > > Everything else occurs.
    > > >
    > > > "Ian Turner" <iturner100@hotmail.com> wrote in message
    > > > news:uO31UIXQDHA.3020@TK2MSFTNGP10.phx.gbl...
    > > > > Hi,
    > > > >
    > > > > I've come across a strange problem to do with locating and loading
    > > > > assemblies when deployed into Web Applications.
    > > > >
    > > > > I'll describe the scenario:
    > > > > We have a web solution that contains a traditional Web Application
    > > project
    > > > > with ASPX etc., another Web Application project with a number of Web
    > > > > Services that act as facades into our business services layer, and a
    > > > number
    > > > > of private assemblies are used by each application (though not the
    > same
    > > > > assemblies - i.e. no shared assemblies are required).
    > > > >
    > > > > When developing locally, both web projects are given virtual
    > directories
    > > > > underneath the default website within IIS (though their physical
    paths
    > > are
    > > > > not located in wwwroot). In this configuration, each individual
    > > > application
    > > > > is able to correctly locate and load their assemblies. Some
    assemblies
    > > are
    > > > > loaded dynamically (as part of factory patterns etc.)
    > > > >
    > > > > When we deploy this solution to staging servers, we do not use the
    > same
    > > > > configuration of virtual directories. Instead, the aspx application
    is
    > > > > installed directly into the root of a new website in IIS (i.e. it
    > > doesn't
    > > > > get it's own virtual directory). The facades application, however,
    IS
    > > > > installed in a virtual directory of the IIS website.
    > > > >
    > > > > The strange thing with this configuration is that when trying to
    > locate
    > > > > assemblies, the CLR is looking in the facades virtual directory -
    even
    > > > when
    > > > > the assemblies that it is looking for belong to the aspx
    application.
    > > > >
    > > > > Sticking the assemblies into the GAC provides a workaround - but
    > should
    > > > not
    > > > > be necessary.
    > > > >
    > > > > Has anybody seen similar behaviour before and / or have any
    > suggestions?
    > > > >
    > > > > Cheers
    > > > > Ian
    > > > >
    > > > >
    > > >
    > > >
    > >
    > >
    >
    >

    Ian Turner Guest

  6. #5

    Default Re: Application Roots for assemblies

    Let me point you to a couple of MSDN articles that should help:

    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconhowruntimelocatesassemblies.asp[/url]
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconspecifyingassemblyslocation.asp[/url]

    HTH,

    Kevin Spencer
    Microsoft FrontPage MVP
    Internet Developer
    [url]http://www.takempis.com[/url]
    Some things just happen.
    Everything else occurs.

    "Ian Turner" <iturner100@hotmail.com> wrote in message
    news:ObFe0sYQDHA.2228@tk2msftngp13.phx.gbl...
    > Clearly. So, in that case, why would the root of a website not be able to
    > correctly locate assemblies that are deployed in its bin directory. The
    > actual error that the CLR throws out is that the assembly or dependency
    can
    > not be found. Looking at the fusion logs identified that it was looking in
    > the bin directory of the facades virtual directory.
    >
    > This is what I am asking.
    >
    > Ian
    >
    > "Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
    > news:uBMxraYQDHA.2476@TK2MSFTNGP10.phx.gbl...
    > > I don't understand what you're asking. In IIS, and Application Domain is
    > > determined by several factors:
    > >
    > > 1. The root folder is configured in IIS as an Application.
    > > 2. All folders under the root folder, unless they are configured as
    > > Applications, are part of the root Application.
    > >
    > > The actual Application is not a set of folders; it is a memory space, in
    > > which all the executable code and data for that Application resides. The
    > > folders simply define what files are to be loaded into that Application
    > > space when used.
    > >
    > > HTH,
    > >
    > > Kevin Spencer
    > > Microsoft FrontPage MVP
    > > Internet Developer
    > > [url]http://www.takempis.com[/url]
    > > Some things just happen.
    > > Everything else occurs.
    > >
    > > "Ian Turner" <iturner100@hotmail.com> wrote in message
    > > news:uAvGavXQDHA.2320@TK2MSFTNGP12.phx.gbl...
    > > > Hi Kevin,
    > > >
    > > > Thanks for that. So, I guess the question is: does the aspx
    application
    > > (if
    > > > it does not get its own virtual directory) also get configured as an
    > > > application? I'm assuming that it doesn't - as that would explain the
    > > > behaviour.
    > > >
    > > > Cheers
    > > > Ian
    > > >
    > > > "Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
    > > > news:ehXrgmXQDHA.2460@TK2MSFTNGP10.phx.gbl...
    > > > > As long as the "facades" virtual directory is configured as an
    > > Application
    > > > > that's the way ASP.Net works. You can always remove the Application
    > > > > configuration for that directory in order to make it a part of the
    > root
    > > > > Application.
    > > > >
    > > > > HTH,
    > > > >
    > > > > Kevin Spencer
    > > > > Microsoft FrontPage MVP
    > > > > Internet Developer
    > > > > [url]http://www.takempis.com[/url]
    > > > > Some things just happen.
    > > > > Everything else occurs.
    > > > >
    > > > > "Ian Turner" <iturner100@hotmail.com> wrote in message
    > > > > news:uO31UIXQDHA.3020@TK2MSFTNGP10.phx.gbl...
    > > > > > Hi,
    > > > > >
    > > > > > I've come across a strange problem to do with locating and loading
    > > > > > assemblies when deployed into Web Applications.
    > > > > >
    > > > > > I'll describe the scenario:
    > > > > > We have a web solution that contains a traditional Web Application
    > > > project
    > > > > > with ASPX etc., another Web Application project with a number of
    Web
    > > > > > Services that act as facades into our business services layer, and
    a
    > > > > number
    > > > > > of private assemblies are used by each application (though not the
    > > same
    > > > > > assemblies - i.e. no shared assemblies are required).
    > > > > >
    > > > > > When developing locally, both web projects are given virtual
    > > directories
    > > > > > underneath the default website within IIS (though their physical
    > paths
    > > > are
    > > > > > not located in wwwroot). In this configuration, each individual
    > > > > application
    > > > > > is able to correctly locate and load their assemblies. Some
    > assemblies
    > > > are
    > > > > > loaded dynamically (as part of factory patterns etc.)
    > > > > >
    > > > > > When we deploy this solution to staging servers, we do not use the
    > > same
    > > > > > configuration of virtual directories. Instead, the aspx
    application
    > is
    > > > > > installed directly into the root of a new website in IIS (i.e. it
    > > > doesn't
    > > > > > get it's own virtual directory). The facades application, however,
    > IS
    > > > > > installed in a virtual directory of the IIS website.
    > > > > >
    > > > > > The strange thing with this configuration is that when trying to
    > > locate
    > > > > > assemblies, the CLR is looking in the facades virtual directory -
    > even
    > > > > when
    > > > > > the assemblies that it is looking for belong to the aspx
    > application.
    > > > > >
    > > > > > Sticking the assemblies into the GAC provides a workaround - but
    > > should
    > > > > not
    > > > > > be necessary.
    > > > > >
    > > > > > Has anybody seen similar behaviour before and / or have any
    > > suggestions?
    > > > > >
    > > > > > Cheers
    > > > > > Ian
    > > > > >
    > > > > >
    > > > >
    > > > >
    > > >
    > > >
    > >
    > >
    >
    >

    Kevin Spencer Guest

  7. #6

    Default Re: Application Roots for assemblies

    I've already read both of them and, even using the <assemblyBinding> and
    <codebase> overrides in web.config doesn't help.

    I'm actually at TechEd Europe at the moment and I've asked a couple of the
    experts on the same subject and so far am getting the same suggestions that
    you are giving.

    I've got a pretty busy week or two ahead but after that I'll try and put a
    simple solution together that repeats the problem and post it here. So keep
    an eye on this thread.

    Thanks for all your suggestions so far. This one has got me pretty stumped.

    Cheers
    Ian

    "Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
    news:OKDrCvZQDHA.2480@tk2msftngp13.phx.gbl...
    > Let me point you to a couple of MSDN articles that should help:
    >
    >
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconhowruntimelocatesassemblies.asp[/url]
    >
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconspecifyingassemblyslocation.asp[/url]
    >
    > HTH,
    >
    > Kevin Spencer
    > Microsoft FrontPage MVP
    > Internet Developer
    > [url]http://www.takempis.com[/url]
    > Some things just happen.
    > Everything else occurs.
    >
    > "Ian Turner" <iturner100@hotmail.com> wrote in message
    > news:ObFe0sYQDHA.2228@tk2msftngp13.phx.gbl...
    > > Clearly. So, in that case, why would the root of a website not be able
    to
    > > correctly locate assemblies that are deployed in its bin directory. The
    > > actual error that the CLR throws out is that the assembly or dependency
    > can
    > > not be found. Looking at the fusion logs identified that it was looking
    in
    > > the bin directory of the facades virtual directory.
    > >
    > > This is what I am asking.
    > >
    > > Ian
    > >
    > > "Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
    > > news:uBMxraYQDHA.2476@TK2MSFTNGP10.phx.gbl...
    > > > I don't understand what you're asking. In IIS, and Application Domain
    is
    > > > determined by several factors:
    > > >
    > > > 1. The root folder is configured in IIS as an Application.
    > > > 2. All folders under the root folder, unless they are configured as
    > > > Applications, are part of the root Application.
    > > >
    > > > The actual Application is not a set of folders; it is a memory space,
    in
    > > > which all the executable code and data for that Application resides.
    The
    > > > folders simply define what files are to be loaded into that
    Application
    > > > space when used.
    > > >
    > > > HTH,
    > > >
    > > > Kevin Spencer
    > > > Microsoft FrontPage MVP
    > > > Internet Developer
    > > > [url]http://www.takempis.com[/url]
    > > > Some things just happen.
    > > > Everything else occurs.
    > > >
    > > > "Ian Turner" <iturner100@hotmail.com> wrote in message
    > > > news:uAvGavXQDHA.2320@TK2MSFTNGP12.phx.gbl...
    > > > > Hi Kevin,
    > > > >
    > > > > Thanks for that. So, I guess the question is: does the aspx
    > application
    > > > (if
    > > > > it does not get its own virtual directory) also get configured as an
    > > > > application? I'm assuming that it doesn't - as that would explain
    the
    > > > > behaviour.
    > > > >
    > > > > Cheers
    > > > > Ian
    > > > >
    > > > > "Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
    > > > > news:ehXrgmXQDHA.2460@TK2MSFTNGP10.phx.gbl...
    > > > > > As long as the "facades" virtual directory is configured as an
    > > > Application
    > > > > > that's the way ASP.Net works. You can always remove the
    Application
    > > > > > configuration for that directory in order to make it a part of the
    > > root
    > > > > > Application.
    > > > > >
    > > > > > HTH,
    > > > > >
    > > > > > Kevin Spencer
    > > > > > Microsoft FrontPage MVP
    > > > > > Internet Developer
    > > > > > [url]http://www.takempis.com[/url]
    > > > > > Some things just happen.
    > > > > > Everything else occurs.
    > > > > >
    > > > > > "Ian Turner" <iturner100@hotmail.com> wrote in message
    > > > > > news:uO31UIXQDHA.3020@TK2MSFTNGP10.phx.gbl...
    > > > > > > Hi,
    > > > > > >
    > > > > > > I've come across a strange problem to do with locating and
    loading
    > > > > > > assemblies when deployed into Web Applications.
    > > > > > >
    > > > > > > I'll describe the scenario:
    > > > > > > We have a web solution that contains a traditional Web
    Application
    > > > > project
    > > > > > > with ASPX etc., another Web Application project with a number of
    > Web
    > > > > > > Services that act as facades into our business services layer,
    and
    > a
    > > > > > number
    > > > > > > of private assemblies are used by each application (though not
    the
    > > > same
    > > > > > > assemblies - i.e. no shared assemblies are required).
    > > > > > >
    > > > > > > When developing locally, both web projects are given virtual
    > > > directories
    > > > > > > underneath the default website within IIS (though their physical
    > > paths
    > > > > are
    > > > > > > not located in wwwroot). In this configuration, each individual
    > > > > > application
    > > > > > > is able to correctly locate and load their assemblies. Some
    > > assemblies
    > > > > are
    > > > > > > loaded dynamically (as part of factory patterns etc.)
    > > > > > >
    > > > > > > When we deploy this solution to staging servers, we do not use
    the
    > > > same
    > > > > > > configuration of virtual directories. Instead, the aspx
    > application
    > > is
    > > > > > > installed directly into the root of a new website in IIS (i.e.
    it
    > > > > doesn't
    > > > > > > get it's own virtual directory). The facades application,
    however,
    > > IS
    > > > > > > installed in a virtual directory of the IIS website.
    > > > > > >
    > > > > > > The strange thing with this configuration is that when trying to
    > > > locate
    > > > > > > assemblies, the CLR is looking in the facades virtual
    directory -
    > > even
    > > > > > when
    > > > > > > the assemblies that it is looking for belong to the aspx
    > > application.
    > > > > > >
    > > > > > > Sticking the assemblies into the GAC provides a workaround - but
    > > > should
    > > > > > not
    > > > > > > be necessary.
    > > > > > >
    > > > > > > Has anybody seen similar behaviour before and / or have any
    > > > suggestions?
    > > > > > >
    > > > > > > Cheers
    > > > > > > Ian
    > > > > > >
    > > > > > >
    > > > > >
    > > > > >
    > > > >
    > > > >
    > > >
    > > >
    > >
    > >
    >
    >

    Ian Turner Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139