Home All Groups Group Topic Archive Search About
Author
10 Mar 2005 6:43 PM
JV
Is there a way to determine that an assembly is running under an ASP.NET web
application as opposed to a Windows application?

For example, in an ASP.NET application if I call
Assembly.GetExecutingAssembly(), can I determine that the current assembly
is a web application?
Author
10 Mar 2005 6:54 PM
MuZZy
JV wrote:
> Is there a way to determine that an assembly is running under an ASP.NET web
> application as opposed to a Windows application?
>
> For example, in an ASP.NET application if I call
> Assembly.GetExecutingAssembly(), can I determine that the current assembly
> is a web application?
>
>
You can check what class it's derived from, eg WinForm vs WebForm
Are all your drivers up to date? click for free checkup

Author
10 Mar 2005 6:57 PM
Nicholas Paldino [.NET/C# MVP]
JV,

    I think a good way to test whether or not you are running in an ASP.NET
application is to access the static Current property on the HttpContext
class.  If it is not running in ASP.NET, then the property should return
null.

    Hope this helps.


--
               - Nicholas Paldino [.NET/C# MVP]
               - mvp@spam.guard.caspershouse.com

Show quoteHide quote
"JV" <johnNOSPAMme@goisc.com> wrote in message
news:OPATXEaJFHA.1280@TK2MSFTNGP09.phx.gbl...
> Is there a way to determine that an assembly is running under an ASP.NET
> web application as opposed to a Windows application?
>
> For example, in an ASP.NET application if I call
> Assembly.GetExecutingAssembly(), can I determine that the current assembly
> is a web application?
>
Author
10 Mar 2005 8:08 PM
William F. Robertson, Jr.
Be aware if your solution doesn't have a reference to System.Web.dll, it
will throw an exception if you access System.Web.HttpContext.

bill

Show quoteHide quote
"Nicholas Paldino [.NET/C# MVP]" <mvp@spam.guard.caspershouse.com> wrote in
message news:Olu$BMaJFHA.1172@TK2MSFTNGP12.phx.gbl...
> JV,
>
>     I think a good way to test whether or not you are running in an
ASP.NET
> application is to access the static Current property on the HttpContext
> class.  If it is not running in ASP.NET, then the property should return
> null.
>
>     Hope this helps.
>
>
> --
>                - Nicholas Paldino [.NET/C# MVP]
>                - mvp@spam.guard.caspershouse.com
>
> "JV" <johnNOSPAMme@goisc.com> wrote in message
> news:OPATXEaJFHA.1280@TK2MSFTNGP09.phx.gbl...
> > Is there a way to determine that an assembly is running under an ASP.NET
> > web application as opposed to a Windows application?
> >
> > For example, in an ASP.NET application if I call
> > Assembly.GetExecutingAssembly(), can I determine that the current
assembly
> > is a web application?
> >
>
>
Author
10 Mar 2005 9:12 PM
Scott Allen
bill:

I think you meant to say "yield a compiler error", not "throw an
exception exception"....

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Thu, 10 Mar 2005 14:08:08 -0600, "William F. Robertson, Jr."
<the***@nameht.org> wrote:

Show quoteHide quote
>Be aware if your solution doesn't have a reference to System.Web.dll, it
>will throw an exception if you access System.Web.HttpContext.
>
>bill
>
Author
11 Mar 2005 7:52 AM
William F. Robertson, Jr.
Thanks for making me think about my response.  <grin>  I actually didn't
even mean exception, infact after reading my response, I think I just
randomly typed something in that sounded good...

Not all threads in a asp.net application have a HttpContext.Current attached
to it.  You can use the HttpContext.Current if you want to know if the
calling thread ( current context) is currently processing a request through
the Http Pipeline, but it is not a reliable indicator that the calling
assembly is a windows application, or a web app.  Timers, callbacks, user
created threads, etc will have a null value and can be from either.

Thanks for straightening me out Scott!

bill


Show quoteHide quote
"Scott Allen" <scott@nospam.odetocode.com> wrote in message
news:csd131dhjmjjeuh906jql1a5f1l1bepett@4ax.com...
> bill:
>
> I think you meant to say "yield a compiler error", not "throw an
> exception exception"....
>
> --
> Scott
> http://www.OdeToCode.com/blogs/scott/
>
> On Thu, 10 Mar 2005 14:08:08 -0600, "William F. Robertson, Jr."
> <the***@nameht.org> wrote:
>
> >Be aware if your solution doesn't have a reference to System.Web.dll, it
> >will throw an exception if you access System.Web.HttpContext.
> >
> >bill
> >
>
Author
11 Mar 2005 8:16 AM
Henning Krause [MVP]
I have not tried this,

but instead of Assembly.GetExecutingAssembly(), try
Assembly.GetEntryAssembly()...

Greetings,
Henning Krause [MVP]
==========================
Visit my website: http://www.infinitec.de
Try my free Exchange Explorer: Mistaya
(http://www.infinitec.de/software/mistaya.aspx)


Show quoteHide quote
"JV" <johnNOSPAMme@goisc.com> wrote in message
news:OPATXEaJFHA.1280@TK2MSFTNGP09.phx.gbl...
> Is there a way to determine that an assembly is running under an ASP.NET
web
> application as opposed to a Windows application?
>
> For example, in an ASP.NET application if I call
> Assembly.GetExecutingAssembly(), can I determine that the current assembly
> is a web application?
>
>

Bookmark and Share