473,394 Members | 1,715 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Communication between HttpApplication that run on the same server

Hello,

I've a simple question:

On a server that run multiple asp.net HttpApplication, is there any way with
the asp.net framework to exchange data between different application?

I basically need to send message to a 'server wide' application from any
HttpApplication on the same server and obtain responses (wich may be simple
strings or streams for example), this 'server wide' application is also
HttpApplication.

If such feature doesn't exist, is this a place for remoting?

If this is a place for remoting did you have some hints on how I should host
the remoting server in my 'server wide' HttpApplication (keeping simple
deployment in mind)?

Thanks for any thoughts.

Gauthier
Nov 17 '05 #1
7 1722
Hello

I suggeest using xml web services. Remoting can be used too, and it can be
hosted in IIS, without the need for a separate process. Both solutions are
simple in deploymen, but the xml web service approach is simpler in
implementation.

Best regards,
Sherif

"[Gauthier]" <ms****@ifrance.com> wrote in message
news:OE**************@TK2MSFTNGP11.phx.gbl...
Hello,

I've a simple question:

On a server that run multiple asp.net HttpApplication, is there any way with the asp.net framework to exchange data between different application?

I basically need to send message to a 'server wide' application from any
HttpApplication on the same server and obtain responses (wich may be simple strings or streams for example), this 'server wide' application is also
HttpApplication.

If such feature doesn't exist, is this a place for remoting?

If this is a place for remoting did you have some hints on how I should host the remoting server in my 'server wide' HttpApplication (keeping simple
deployment in mind)?

Thanks for any thoughts.

Gauthier

Nov 17 '05 #2
Thanks for your reply,

I'm more interested with remoting in place of xml web service because it's a
communication between 2 process that live on the same machine and also for
performances reason.

Could you tell me how IIS can host such remote process?

A solution I was thinking about was having a System.Diagnostics.Process
launched in Global.asax.cs within the Application_Start event, a console
process with standard I/O, so I could manage to get the ProcessId in other
HttpApplication and get a reference on that process, but I'm wondering if
remoting and all stuffs that come along wouldn't be a better solution.

I'm almost concerned with request concurrency (many apps that make request
on the 'server wide' application) and I imagine this could be an issue if I
use standard I/O of the process as the sole way to communicate.

So does the solution would be a dedicated process hosted in IIS that
communicate with my httpapps with a remoting client over tcp messages would
be the good one?

Will I have to investigate on threads issues or bottleneck to implement a
such process? (that's surely why xml web service and http communication
'simplify' a lot of stuffs)

Thanks for assistance & best regards

Gauthier

"Sherif ElMetainy" <el*************@wayout.net.NOSPAM> wrote in message
news:eE*************@tk2msftngp13.phx.gbl...
Hello

I suggeest using xml web services. Remoting can be used too, and it can be
hosted in IIS, without the need for a separate process. Both solutions are
simple in deploymen, but the xml web service approach is simpler in
implementation.

Best regards,
Sherif

"[Gauthier]" <ms****@ifrance.com> wrote in message
news:OE**************@TK2MSFTNGP11.phx.gbl...
Hello,

I've a simple question:

On a server that run multiple asp.net HttpApplication, is there any way

with
the asp.net framework to exchange data between different application?

I basically need to send message to a 'server wide' application from any HttpApplication on the same server and obtain responses (wich may be

simple
strings or streams for example), this 'server wide' application is also
HttpApplication.

If such feature doesn't exist, is this a place for remoting?

If this is a place for remoting did you have some hints on how I should

host
the remoting server in my 'server wide' HttpApplication (keeping simple
deployment in mind)?

Thanks for any thoughts.

Gauthier


Nov 17 '05 #3
Remoting is the replacement for all things DCOM. It will allow you, for
example, to push data thru one process boundary into another running process
which is what I think you are after. I'd suggest you start reading up before
you dive in because a couple issues can bite you. Look at ingo rammar's
book, it's the definitive work on remoting.

--
-----------
Got TidBits?
Get it here: www.networkip.net/tidbits
"[Gauthier]" <ms****@ifrance.com> wrote in message
news:Oy**************@TK2MSFTNGP09.phx.gbl...
Thanks for your reply,

I'm more interested with remoting in place of xml web service because it's a communication between 2 process that live on the same machine and also for
performances reason.

Could you tell me how IIS can host such remote process?

A solution I was thinking about was having a System.Diagnostics.Process
launched in Global.asax.cs within the Application_Start event, a console
process with standard I/O, so I could manage to get the ProcessId in other
HttpApplication and get a reference on that process, but I'm wondering if
remoting and all stuffs that come along wouldn't be a better solution.

I'm almost concerned with request concurrency (many apps that make request
on the 'server wide' application) and I imagine this could be an issue if I use standard I/O of the process as the sole way to communicate.

So does the solution would be a dedicated process hosted in IIS that
communicate with my httpapps with a remoting client over tcp messages would be the good one?

Will I have to investigate on threads issues or bottleneck to implement a
such process? (that's surely why xml web service and http communication
'simplify' a lot of stuffs)

Thanks for assistance & best regards

Gauthier

"Sherif ElMetainy" <el*************@wayout.net.NOSPAM> wrote in message
news:eE*************@tk2msftngp13.phx.gbl...
Hello

I suggeest using xml web services. Remoting can be used too, and it can be
hosted in IIS, without the need for a separate process. Both solutions are simple in deploymen, but the xml web service approach is simpler in
implementation.

Best regards,
Sherif

"[Gauthier]" <ms****@ifrance.com> wrote in message
news:OE**************@TK2MSFTNGP11.phx.gbl...
Hello,

I've a simple question:

On a server that run multiple asp.net HttpApplication, is there any way
with
the asp.net framework to exchange data between different application?

I basically need to send message to a 'server wide' application from
any
HttpApplication on the same server and obtain responses (wich may be

simple
strings or streams for example), this 'server wide' application is

also HttpApplication.

If such feature doesn't exist, is this a place for remoting?

If this is a place for remoting did you have some hints on how I should host
the remoting server in my 'server wide' HttpApplication (keeping

simple deployment in mind)?

Thanks for any thoughts.

Gauthier



Nov 17 '05 #4
Thanks, I've succesfully implemented a quick test and registered a
tcpchannel in my Global.asax.cs and it's work succesfully: I can call simple
methods from a remote application.

Now I've a simple question:
Is there an clean way to ensure that an httpapplication is allready started
(for my 'server wide' application), because my client applications need that
the httpapplication is started to make remote method calls, and it's fail if
the 'server wide' application is not started?

A simple solution I've think about is to make some 'activation httprequests'
on the 'server wide' application in my client applications, but that seams a
dirty solution if there is a more convinient way to autostart
httpapplications with iis or such thing.

Thanks for insight.

Gauthier

"Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote in
message news:Os*************@tk2msftngp13.phx.gbl...
Remoting is the replacement for all things DCOM. It will allow you, for
example, to push data thru one process boundary into another running process which is what I think you are after. I'd suggest you start reading up before you dive in because a couple issues can bite you. Look at ingo rammar's
book, it's the definitive work on remoting.

--
-----------
Got TidBits?
Get it here: www.networkip.net/tidbits
"[Gauthier]" <ms****@ifrance.com> wrote in message
news:Oy**************@TK2MSFTNGP09.phx.gbl...
Thanks for your reply,

I'm more interested with remoting in place of xml web service because it's
a
communication between 2 process that live on the same machine and also for performances reason.

Could you tell me how IIS can host such remote process?

A solution I was thinking about was having a System.Diagnostics.Process
launched in Global.asax.cs within the Application_Start event, a console
process with standard I/O, so I could manage to get the ProcessId in other HttpApplication and get a reference on that process, but I'm wondering if remoting and all stuffs that come along wouldn't be a better solution.

I'm almost concerned with request concurrency (many apps that make request on the 'server wide' application) and I imagine this could be an issue if
I
use standard I/O of the process as the sole way to communicate.

So does the solution would be a dedicated process hosted in IIS that
communicate with my httpapps with a remoting client over tcp messages would
be the good one?

Will I have to investigate on threads issues or bottleneck to implement

a such process? (that's surely why xml web service and http communication
'simplify' a lot of stuffs)

Thanks for assistance & best regards

Gauthier

"Sherif ElMetainy" <el*************@wayout.net.NOSPAM> wrote in message
news:eE*************@tk2msftngp13.phx.gbl...
Hello

I suggeest using xml web services. Remoting can be used too, and it can be hosted in IIS, without the need for a separate process. Both solutions are simple in deploymen, but the xml web service approach is simpler in
implementation.

Best regards,
Sherif

"[Gauthier]" <ms****@ifrance.com> wrote in message
news:OE**************@TK2MSFTNGP11.phx.gbl...
> Hello,
>
> I've a simple question:
>
> On a server that run multiple asp.net HttpApplication, is there any way with
> the asp.net framework to exchange data between different
application? >
> I basically need to send message to a 'server wide' application from

any
> HttpApplication on the same server and obtain responses (wich may be
simple
> strings or streams for example), this 'server wide' application is

also > HttpApplication.
>
> If such feature doesn't exist, is this a place for remoting?
>
> If this is a place for remoting did you have some hints on how I should host
> the remoting server in my 'server wide' HttpApplication (keeping simple > deployment in mind)?
>
> Thanks for any thoughts.
>
> Gauthier
>
>



Nov 17 '05 #5
you don't need to explicitly check for it. just make the call. the
application object and everthing related to it will either honor the request
if it is running or the runtime will first create and run the application,
initializing all the relevant objects before honoring the call.

--
-----------
Got TidBits?
Get it here: www.networkip.net/tidbits
"[Gauthier]" <ms****@ifrance.com> wrote in message
news:eZ*************@tk2msftngp13.phx.gbl...
Thanks, I've succesfully implemented a quick test and registered a
tcpchannel in my Global.asax.cs and it's work succesfully: I can call simple methods from a remote application.

Now I've a simple question:
Is there an clean way to ensure that an httpapplication is allready started (for my 'server wide' application), because my client applications need that the httpapplication is started to make remote method calls, and it's fail if the 'server wide' application is not started?

A simple solution I've think about is to make some 'activation httprequests' on the 'server wide' application in my client applications, but that seams a dirty solution if there is a more convinient way to autostart
httpapplications with iis or such thing.

Thanks for insight.

Gauthier

"Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote in
message news:Os*************@tk2msftngp13.phx.gbl...
Remoting is the replacement for all things DCOM. It will allow you, for
example, to push data thru one process boundary into another running process
which is what I think you are after. I'd suggest you start reading up

before
you dive in because a couple issues can bite you. Look at ingo rammar's
book, it's the definitive work on remoting.

--
-----------
Got TidBits?
Get it here: www.networkip.net/tidbits
"[Gauthier]" <ms****@ifrance.com> wrote in message
news:Oy**************@TK2MSFTNGP09.phx.gbl...
Thanks for your reply,

I'm more interested with remoting in place of xml web service because it's
a
communication between 2 process that live on the same machine and also for performances reason.

Could you tell me how IIS can host such remote process?

A solution I was thinking about was having a System.Diagnostics.Process launched in Global.asax.cs within the Application_Start event, a console process with standard I/O, so I could manage to get the ProcessId in other HttpApplication and get a reference on that process, but I'm wondering if remoting and all stuffs that come along wouldn't be a better solution.

I'm almost concerned with request concurrency (many apps that make request on the 'server wide' application) and I imagine this could be an issue if
I
use standard I/O of the process as the sole way to communicate.

So does the solution would be a dedicated process hosted in IIS that
communicate with my httpapps with a remoting client over tcp messages

would
be the good one?

Will I have to investigate on threads issues or bottleneck to implement a such process? (that's surely why xml web service and http
communication 'simplify' a lot of stuffs)

Thanks for assistance & best regards

Gauthier

"Sherif ElMetainy" <el*************@wayout.net.NOSPAM> wrote in message news:eE*************@tk2msftngp13.phx.gbl...
> Hello
>
> I suggeest using xml web services. Remoting can be used too, and it

can
be
> hosted in IIS, without the need for a separate process. Both solutions are
> simple in deploymen, but the xml web service approach is simpler in
> implementation.
>
> Best regards,
> Sherif
>
> "[Gauthier]" <ms****@ifrance.com> wrote in message
> news:OE**************@TK2MSFTNGP11.phx.gbl...
> > Hello,
> >
> > I've a simple question:
> >
> > On a server that run multiple asp.net HttpApplication, is there
any way
> with
> > the asp.net framework to exchange data between different application? > >
> > I basically need to send message to a 'server wide' application

from any

> > HttpApplication on the same server and obtain responses (wich may

be > simple
> > strings or streams for example), this 'server wide' application is

also
> > HttpApplication.
> >
> > If such feature doesn't exist, is this a place for remoting?
> >
> > If this is a place for remoting did you have some hints on how I

should
> host
> > the remoting server in my 'server wide' HttpApplication (keeping

simple
> > deployment in mind)?
> >
> > Thanks for any thoughts.
> >
> > Gauthier
> >
> >
>
>



Nov 17 '05 #6
Hello,

I've missexplained my problem here:

My problem is that my 'server wide' HttpApplication is not allready started
in some case (for exemple just after saving the web.config of the
application).

Since I initialize my Channel in the Application_Start event, it's ok if the
application is allready started (for exemple just after a web request on
this application was made).

But i'm getting SocketException with the following message: 'No connection
could be made because the target machine actively refused it' when the
application is not allready started.

So the solution would be:
1: find a way to start the application when iis service is starting and
expecting that the application is not recycled is no request are made on it
after a period of time (is there such behavior in the asp.net framework?)

2: find a way to check that the channel exist (the 'server wide' application
is allready started) in my client remotefacade.

I've allready think about a possible implementation of the second solution
but the primmer seems simpler if it's possible and I don't know wether it is
or not.

Anyway I have to make such test (the second solution) to ensure that the
'server wide' application has registered the channel, for the sake of
robustness.

Thanks

Gauthier

"Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote in
message news:#K**************@TK2MSFTNGP12.phx.gbl...
you don't need to explicitly check for it. just make the call. the
application object and everthing related to it will either honor the request if it is running or the runtime will first create and run the application,
initializing all the relevant objects before honoring the call.

--
-----------
Got TidBits?
Get it here: www.networkip.net/tidbits
"[Gauthier]" <ms****@ifrance.com> wrote in message
news:eZ*************@tk2msftngp13.phx.gbl...
Thanks, I've succesfully implemented a quick test and registered a
tcpchannel in my Global.asax.cs and it's work succesfully: I can call simple
methods from a remote application.

Now I've a simple question:
Is there an clean way to ensure that an httpapplication is allready

started
(for my 'server wide' application), because my client applications need

that
the httpapplication is started to make remote method calls, and it's fail if
the 'server wide' application is not started?

A simple solution I've think about is to make some 'activation httprequests'
on the 'server wide' application in my client applications, but that seams a
dirty solution if there is a more convinient way to autostart
httpapplications with iis or such thing.

Thanks for insight.

Gauthier

"Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote
in message news:Os*************@tk2msftngp13.phx.gbl...
Remoting is the replacement for all things DCOM. It will allow you, for example, to push data thru one process boundary into another running

process
which is what I think you are after. I'd suggest you start reading up

before
you dive in because a couple issues can bite you. Look at ingo rammar's book, it's the definitive work on remoting.

--
-----------
Got TidBits?
Get it here: www.networkip.net/tidbits
"[Gauthier]" <ms****@ifrance.com> wrote in message
news:Oy**************@TK2MSFTNGP09.phx.gbl...
> Thanks for your reply,
>
> I'm more interested with remoting in place of xml web service because
it's
a
> communication between 2 process that live on the same machine and
also for
> performances reason.
>
> Could you tell me how IIS can host such remote process?
>
> A solution I was thinking about was having a System.Diagnostics.Process > launched in Global.asax.cs within the Application_Start event, a console > process with standard I/O, so I could manage to get the ProcessId in

other
> HttpApplication and get a reference on that process, but I'm
wondering if
> remoting and all stuffs that come along wouldn't be a better
solution. >
> I'm almost concerned with request concurrency (many apps that make

request
> on the 'server wide' application) and I imagine this could be an issue if
I
> use standard I/O of the process as the sole way to communicate.
>
> So does the solution would be a dedicated process hosted in IIS that
> communicate with my httpapps with a remoting client over tcp
messages would
> be the good one?
>
> Will I have to investigate on threads issues or bottleneck to

implement
a
> such process? (that's surely why xml web service and http

communication > 'simplify' a lot of stuffs)
>
> Thanks for assistance & best regards
>
> Gauthier
>
> "Sherif ElMetainy" <el*************@wayout.net.NOSPAM> wrote in message > news:eE*************@tk2msftngp13.phx.gbl...
> > Hello
> >
> > I suggeest using xml web services. Remoting can be used too, and it can
be
> > hosted in IIS, without the need for a separate process. Both solutions are
> > simple in deploymen, but the xml web service approach is simpler
in > > implementation.
> >
> > Best regards,
> > Sherif
> >
> > "[Gauthier]" <ms****@ifrance.com> wrote in message
> > news:OE**************@TK2MSFTNGP11.phx.gbl...
> > > Hello,
> > >
> > > I've a simple question:
> > >
> > > On a server that run multiple asp.net HttpApplication, is there

any way
> > with
> > > the asp.net framework to exchange data between different

application?
> > >
> > > I basically need to send message to a 'server wide' application from any
>
> > > HttpApplication on the same server and obtain responses (wich may be
> > simple
> > > strings or streams for example), this 'server wide' application

is also
> > > HttpApplication.
> > >
> > > If such feature doesn't exist, is this a place for remoting?
> > >
> > > If this is a place for remoting did you have some hints on how I
should
> > host
> > > the remoting server in my 'server wide' HttpApplication (keeping
simple
> > > deployment in mind)?
> > >
> > > Thanks for any thoughts.
> > >
> > > Gauthier
> > >
> > >
> >
> >
>
>



Nov 17 '05 #7
This isn't built in. You may write a service to do that but it's difficult
to do since the OS scheduler isn't guaranteed to start services in a
particular order. Better said, the service which start aren't guaranteed to
start in a particular order, so you aren't guaranteed that because iis
service starts before your service that iis will actually end up running
before your service resulting in errors on your part from this discrapency.

I suggest you go with option 2.

--
-----------
Got TidBits?
Get it here: www.networkip.net/tidbits
"[Gauthier]" <ms****@ifrance.com> wrote in message
news:e$**************@tk2msftngp13.phx.gbl...
Hello,

I've missexplained my problem here:

My problem is that my 'server wide' HttpApplication is not allready started in some case (for exemple just after saving the web.config of the
application).

Since I initialize my Channel in the Application_Start event, it's ok if the application is allready started (for exemple just after a web request on
this application was made).

But i'm getting SocketException with the following message: 'No connection
could be made because the target machine actively refused it' when the
application is not allready started.

So the solution would be:
1: find a way to start the application when iis service is starting and
expecting that the application is not recycled is no request are made on it after a period of time (is there such behavior in the asp.net framework?)

2: find a way to check that the channel exist (the 'server wide' application is allready started) in my client remotefacade.

I've allready think about a possible implementation of the second solution
but the primmer seems simpler if it's possible and I don't know wether it is or not.

Anyway I have to make such test (the second solution) to ensure that the
'server wide' application has registered the channel, for the sake of
robustness.

Thanks

Gauthier

"Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote in
message news:#K**************@TK2MSFTNGP12.phx.gbl...
you don't need to explicitly check for it. just make the call. the
application object and everthing related to it will either honor the request
if it is running or the runtime will first create and run the application,
initializing all the relevant objects before honoring the call.

--
-----------
Got TidBits?
Get it here: www.networkip.net/tidbits
"[Gauthier]" <ms****@ifrance.com> wrote in message
news:eZ*************@tk2msftngp13.phx.gbl...
Thanks, I've succesfully implemented a quick test and registered a
tcpchannel in my Global.asax.cs and it's work succesfully: I can call

simple
methods from a remote application.

Now I've a simple question:
Is there an clean way to ensure that an httpapplication is allready

started
(for my 'server wide' application), because my client applications need
that
the httpapplication is started to make remote method calls, and it's fail
if
the 'server wide' application is not started?

A simple solution I've think about is to make some 'activation

httprequests'
on the 'server wide' application in my client applications, but that

seams
a
dirty solution if there is a more convinient way to autostart
httpapplications with iis or such thing.

Thanks for insight.

Gauthier

"Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote

in message news:Os*************@tk2msftngp13.phx.gbl...
> Remoting is the replacement for all things DCOM. It will allow you, for > example, to push data thru one process boundary into another running
process
> which is what I think you are after. I'd suggest you start reading
up before
> you dive in because a couple issues can bite you. Look at ingo

rammar's > book, it's the definitive work on remoting.
>
> --
>
>
> -----------
> Got TidBits?
> Get it here: www.networkip.net/tidbits
> "[Gauthier]" <ms****@ifrance.com> wrote in message
> news:Oy**************@TK2MSFTNGP09.phx.gbl...
> > Thanks for your reply,
> >
> > I'm more interested with remoting in place of xml web service because it's
> a
> > communication between 2 process that live on the same machine and also for
> > performances reason.
> >
> > Could you tell me how IIS can host such remote process?
> >
> > A solution I was thinking about was having a

System.Diagnostics.Process
> > launched in Global.asax.cs within the Application_Start event, a

console
> > process with standard I/O, so I could manage to get the ProcessId in other
> > HttpApplication and get a reference on that process, but I'm wondering if
> > remoting and all stuffs that come along wouldn't be a better solution. > >
> > I'm almost concerned with request concurrency (many apps that make
request
> > on the 'server wide' application) and I imagine this could be an issue if
> I
> > use standard I/O of the process as the sole way to communicate.
> >
> > So does the solution would be a dedicated process hosted in IIS that > > communicate with my httpapps with a remoting client over tcp messages > would
> > be the good one?
> >
> > Will I have to investigate on threads issues or bottleneck to

implement
a
> > such process? (that's surely why xml web service and http

communication
> > 'simplify' a lot of stuffs)
> >
> > Thanks for assistance & best regards
> >
> > Gauthier
> >
> > "Sherif ElMetainy" <el*************@wayout.net.NOSPAM> wrote in

message
> > news:eE*************@tk2msftngp13.phx.gbl...
> > > Hello
> > >
> > > I suggeest using xml web services. Remoting can be used too, and it can
> be
> > > hosted in IIS, without the need for a separate process. Both

solutions
> are
> > > simple in deploymen, but the xml web service approach is simpler in > > > implementation.
> > >
> > > Best regards,
> > > Sherif
> > >
> > > "[Gauthier]" <ms****@ifrance.com> wrote in message
> > > news:OE**************@TK2MSFTNGP11.phx.gbl...
> > > > Hello,
> > > >
> > > > I've a simple question:
> > > >
> > > > On a server that run multiple asp.net HttpApplication, is there any
> way
> > > with
> > > > the asp.net framework to exchange data between different
application?
> > > >
> > > > I basically need to send message to a 'server wide'
application
from
> any
> >
> > > > HttpApplication on the same server and obtain responses (wich

may
be
> > > simple
> > > > strings or streams for example), this 'server wide'

application is > also
> > > > HttpApplication.
> > > >
> > > > If such feature doesn't exist, is this a place for remoting?
> > > >
> > > > If this is a place for remoting did you have some hints on how

I > should
> > > host
> > > > the remoting server in my 'server wide' HttpApplication (keeping > simple
> > > > deployment in mind)?
> > > >
> > > > Thanks for any thoughts.
> > > >
> > > > Gauthier
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Ralf Gross | last post by:
Hi, I installed DB2 V8.1 with fixpak 10, created a new database and can connect to the database. $ db2 connect to mkstest Database Connection Information Database server =...
4
by: Sačo Zagoranski | last post by:
Hi! I'm writing a simple 3D First person shooter game. It is a multiplayer game, where all the players connect to one server.
3
by: AinO | last post by:
Hi, - I've created a webservice in VS2003/c# wich relies heavily on cache. It has a cache manager wich loads resources (triggered by requests) and wich has also a built in timer wich triggers...
4
by: Halcyon Woodward | last post by:
I have an odd problem... We have a small development team (three coders) working on the same project (a C# web application). Each coder has a unique 'sandbox' site on a shared Windows 2003...
10
by: Girish | last post by:
Ok, Ive been thinking about this problem for a while. I have 30 odd aspx pages (already built) on my website that I need to have some validation occur before the page should load. The validation...
2
by: Breeto | last post by:
Can anyone please tell me why the following doesn't work... using System; using System.Web; namespace AspTests {
1
by: phil2phil | last post by:
can someone tell me the difference between the httpcontext and httpapplication object, they seems to have similar methods, such as getting the Response, REquest, Server variables, are there times...
2
by: walter | last post by:
Hi there, I know there is pool of HttpApplications, and for each request coming in, HttpRuntime will dedicate one from pool to serve the request. My questions are : 1. since HttpModule is plug...
4
by: Zhangming Su | last post by:
Hi, Any one know "How to get HttpApplication from Windows Form" by using C# on Windows 2003 server? Thank for the help!
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.