473,804 Members | 3,250 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Safe multithreading in ASP.Net

Consider the following code which enables multithreading in an ASP.Net
application I'm writing:

Code in global.asx Application_sta rt subroutine, Threadnotify is declared
Globally as a new thread where it uses the address of EmailNotify below:

ThreadNotify.Is Background = True

ThreadNotify.St art()

--------

Public Sub EmailNotify()

Dim emails As New ForumEmail

Do While ContinueNotify 'boolean value set to True so loop will continue

emails.EmailNot ify()

Thread.Sleep(no tifyinterval * 60000) 'notifyinterval is set via app
settings in web.config file

Loop

End Sub

--------------------

From global.asx file in Application_End subroutine

ThreadNotify.Ab ort()

As you can probably tell, what happens is Threadnotify is started when the
application starts. The subroutine simply loops through and calls a
subroutine then it pauses in intervals of minutes. Good news: this works.
Bad news: this works too good. Problem is, when does this thread get
terminated? I can set the boolean notify in the loop to false so the thread
will reach the end of it's code and it will terminate. However, beyond this
I have concerns. I'm writing an application on my machine and testing it.
I can't get that thread to stop unless I set the boolean value to false in
that loop which is bad. When I end the debug execution of the app, the
thread continues and it doesn't stop. Heck, I can stop the IIS Service and
the thread still continues to execute. How do I know it's executing. The
goal of this thread is to send emails. I'm getting emails indicating which
tells me this thread is still running.

This leads to a larger issue. When I release this application for others to
use, how can I ensure this thread won't keep running even though a user
might end the web service? This sucker just keeps going and going.

Suppose I upload this to a production webserver. The thread starts and
executes fine. Suppose I make some changes to the application code and copy
the necessary files to the production webserver. Will the thread from the
previous versoin of the website continue while a new thread is started by
the updated code i.e. there will be two threads doing the same thing?

The way this thread runs, I believe I can stop the webservice and destroy
the webapplication. The thread would still run. This isn't acceptable.
How do I ensure this thread stops?

What is this thread running under? I would've thought the thread would run
under IIS and consider IIS to be the parent process. However, I'm
terminating IIS and this thread still keeps going. What is it running
under?

Ultimately, when the heck does this thread terminate?! The only thing I can
do to stop this thread is to reboot the machine! I'm scared to publish this
to my website as it may start up and never stop until they reboot their
machines.

This thread is supposed to send emails after a pause determined by the user.
Is there another way to do this? I though about using a timer that, when X
amount of minutes passed, then the event would fire. I could capture that
event and execute the email code. I wasn't sure how to do this though.
Suggestions?

Thanks

Chris Smith
Nov 18 '05 #1
16 1748
couple issues.

ThreadNotify.Is Background = True
this line instructs the thread to cease all activity when the application
ends. the application doesn't end when the debugger terminates, or the
webpage is closed or session ends. so your thread will keep running.

in the event of an iis reset, your thread will end because the application
ends, but it starts as soon as a request is made which is probably why you
are seeing emails after it has ended. it's not possible for the thread to be
running when the application has ended.

basically, you need to rethink your logic because threads will always be
running as long as the webpage has received an initial request. these
threads won't stop until iis resets or asp.net detects a change to a
configuration file.

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"who be dat?" <wh******@dot.c om> wrote in message
news:10******** *****@corp.supe rnews.com...
Consider the following code which enables multithreading in an ASP.Net
application I'm writing:

Code in global.asx Application_sta rt subroutine, Threadnotify is declared
Globally as a new thread where it uses the address of EmailNotify below:

ThreadNotify.Is Background = True

ThreadNotify.St art()

--------

Public Sub EmailNotify()

Dim emails As New ForumEmail

Do While ContinueNotify 'boolean value set to True so loop will
continue

emails.EmailNot ify()

Thread.Sleep(no tifyinterval * 60000) 'notifyinterval is set via app
settings in web.config file

Loop

End Sub

--------------------

From global.asx file in Application_End subroutine

ThreadNotify.Ab ort()

As you can probably tell, what happens is Threadnotify is started when the
application starts. The subroutine simply loops through and calls a
subroutine then it pauses in intervals of minutes. Good news: this works.
Bad news: this works too good. Problem is, when does this thread get
terminated? I can set the boolean notify in the loop to false so the
thread
will reach the end of it's code and it will terminate. However, beyond
this
I have concerns. I'm writing an application on my machine and testing it.
I can't get that thread to stop unless I set the boolean value to false in
that loop which is bad. When I end the debug execution of the app, the
thread continues and it doesn't stop. Heck, I can stop the IIS Service
and
the thread still continues to execute. How do I know it's executing. The
goal of this thread is to send emails. I'm getting emails indicating
which
tells me this thread is still running.

This leads to a larger issue. When I release this application for others
to
use, how can I ensure this thread won't keep running even though a user
might end the web service? This sucker just keeps going and going.

Suppose I upload this to a production webserver. The thread starts and
executes fine. Suppose I make some changes to the application code and
copy
the necessary files to the production webserver. Will the thread from the
previous versoin of the website continue while a new thread is started by
the updated code i.e. there will be two threads doing the same thing?

The way this thread runs, I believe I can stop the webservice and destroy
the webapplication. The thread would still run. This isn't acceptable.
How do I ensure this thread stops?

What is this thread running under? I would've thought the thread would
run
under IIS and consider IIS to be the parent process. However, I'm
terminating IIS and this thread still keeps going. What is it running
under?

Ultimately, when the heck does this thread terminate?! The only thing I
can
do to stop this thread is to reboot the machine! I'm scared to publish
this
to my website as it may start up and never stop until they reboot their
machines.

This thread is supposed to send emails after a pause determined by the
user.
Is there another way to do this? I though about using a timer that, when
X
amount of minutes passed, then the event would fire. I could capture that
event and execute the email code. I wasn't sure how to do this though.
Suggestions?

Thanks

Chris Smith

Nov 18 '05 #2
"who be dat?" <wh******@dot.c om> wrote in message
news:10******** *****@corp.supe rnews.com...
Consider the following code which enables multithreading in an ASP.Net
application I'm writing:
....
Suggestions?


Yes. I suggest that you immediately cease all idea of using multithreading
with ASP.NET! Pretend that threads just don't exist, or that any attempt to
use threads with ASP.NET will cause horrible problems for you (which is
true).

Now, since nobody ever listens to such simple-minded suggestions, I'll try
to explain. On every request, ASP.NET instantiates your Page object,
processes it in several phases, then destroys it. Nothing that was on the
page will remain after the request completes. This makes it very hard on any
threads you've started during the request, if they do not terminate before
the request terminates, as they will be operating on a dead page.

The request will not wait for your threads. It doesn't have any idea that
they exist. The fact that your threads still exist and are still referencing
objects you created on the page will not save you - the objects may still
exist, but their state may invalid. This especially goes for any objects
created or manipulated by ASP.NET, since ASP.NET believes that the request
is over, and so is unlikely to continue to maintain the state of any objects
which belong to it.

I strongly recommend that you learn some of the details of what ASP.NET is
doing behind the scenes. Take a look at the following MSDN articles:

The ASP.NET Page Object Model
(http://msdn.microsoft.com/library/de...-us/dnaspp/htm
l/aspnet-pageobjectmodel .asp?frame=true )

Developing ASP.NET Server Controls
(http://msdn.microsoft.com/library/de...-us/cpguide/ht
ml/cpconkeyconcept sinwebformscont roldevelopment. asp)
--
John Saunders
johnwsaundersii i at hotmail

Nov 18 '05 #3
Hi Chris,

Why is your thread running in this endless loop? Shouldn't there be some
logic to terminate the loop in and of itself? unless you're planning on
creating some sort of pool manager for your thread(s) there needs to be
self-destruct logic in your threads. If you do have some such mechanism you
can use a static property on some global (Global works) or static property
that can get triggered by Application shutdowns.

As others have said here I'd be very wary of firing threads out of ASP.Net
unless you know exactly what you're doign. If everything's self contained
and doesn't rely on anything of the page (which usually means copyin what
you need to a new object), then running additional threads is safe. But you
still need an exit strategy of some sort. Do what you need to do - slow or
otherwise and get out!

The other thing that you can do is look into async Web requests, which are
relatively easy to set up and run. But there's really no huge benefit for
this over just tieing up an ASP.Net thread either in the first place.

+++ Rick ---

--

Rick Strahl
West Wind Technologies
http://www.west-wind.com/
http://www.west-wind.com/weblog/
http://www.west-wind.com/wwThreads/
----------------------------------
Making waves on the Web
"who be dat?" <wh******@dot.c om> wrote in message
news:10******** *****@corp.supe rnews.com...
Consider the following code which enables multithreading in an ASP.Net
application I'm writing:

Code in global.asx Application_sta rt subroutine, Threadnotify is declared
Globally as a new thread where it uses the address of EmailNotify below:

ThreadNotify.Is Background = True

ThreadNotify.St art()

--------

Public Sub EmailNotify()

Dim emails As New ForumEmail

Do While ContinueNotify 'boolean value set to True so loop will continue
emails.EmailNot ify()

Thread.Sleep(no tifyinterval * 60000) 'notifyinterval is set via app
settings in web.config file

Loop

End Sub

--------------------

From global.asx file in Application_End subroutine

ThreadNotify.Ab ort()

As you can probably tell, what happens is Threadnotify is started when the
application starts. The subroutine simply loops through and calls a
subroutine then it pauses in intervals of minutes. Good news: this works.
Bad news: this works too good. Problem is, when does this thread get
terminated? I can set the boolean notify in the loop to false so the thread will reach the end of it's code and it will terminate. However, beyond this I have concerns. I'm writing an application on my machine and testing it.
I can't get that thread to stop unless I set the boolean value to false in
that loop which is bad. When I end the debug execution of the app, the
thread continues and it doesn't stop. Heck, I can stop the IIS Service and the thread still continues to execute. How do I know it's executing. The
goal of this thread is to send emails. I'm getting emails indicating which tells me this thread is still running.

This leads to a larger issue. When I release this application for others to use, how can I ensure this thread won't keep running even though a user
might end the web service? This sucker just keeps going and going.

Suppose I upload this to a production webserver. The thread starts and
executes fine. Suppose I make some changes to the application code and copy the necessary files to the production webserver. Will the thread from the
previous versoin of the website continue while a new thread is started by
the updated code i.e. there will be two threads doing the same thing?

The way this thread runs, I believe I can stop the webservice and destroy
the webapplication. The thread would still run. This isn't acceptable.
How do I ensure this thread stops?

What is this thread running under? I would've thought the thread would run under IIS and consider IIS to be the parent process. However, I'm
terminating IIS and this thread still keeps going. What is it running
under?

Ultimately, when the heck does this thread terminate?! The only thing I can do to stop this thread is to reboot the machine! I'm scared to publish this to my website as it may start up and never stop until they reboot their
machines.

This thread is supposed to send emails after a pause determined by the user. Is there another way to do this? I though about using a timer that, when X amount of minutes passed, then the event would fire. I could capture that
event and execute the email code. I wasn't sure how to do this though.
Suggestions?

Thanks

Chris Smith

Nov 18 '05 #4
Hi Chris,

Perhaps you would be better off using a message queue? Throwing the
necessary data into the queue as you need and writing a .NET service to
poll the queue. Any threads would be contained in a block of non
ASP.NET code with more intuitively comprehensible behaviour when it
comes to starting and stopping.

Just a thought without a think through...

Regards,

Duncan Kennedy
who be dat? wrote:
This thread is supposed to send emails after a pause determined by the user.
Is there another way to do this? I though about using a timer that, when X
amount of minutes passed, then the event would fire. I could capture that
event and execute the email code. I wasn't sure how to do this though.
Suggestions?

Thanks

Chris Smith

Nov 18 '05 #5
"John Saunders" <jo************ **@notcoldmail. com> wrote in
news:ex******** *****@TK2MSFTNG P12.phx.gbl:
"who be dat?" <wh******@dot.c om> wrote in message
news:10******** *****@corp.supe rnews.com...
Consider the following code which enables multithreading in an
ASP.Net application I'm writing:


...
Suggestions?


Yes. I suggest that you immediately cease all idea of using
multithreading with ASP.NET! Pretend that threads just don't
exist, or that any attempt to use threads with ASP.NET will
cause horrible problems for you (which is true).

Now, since nobody ever listens to such simple-minded
suggestions, I'll try to explain. On every request, ASP.NET
instantiates your Page object, processes it in several phases,
then destroys it. Nothing that was on the page will remain after
the request completes. This makes it very hard on any threads
you've started during the request, if they do not terminate
before the request terminates, as they will be operating on a
dead page.

The request will not wait for your threads. It doesn't have any
idea that they exist. The fact that your threads still exist and
are still referencing objects you created on the page will not
save you - the objects may still exist, but their state may
invalid. This especially goes for any objects created or
manipulated by ASP.NET, since ASP.NET believes that the request
is over, and so is unlikely to continue to maintain the state of
any objects which belong to it.

I strongly recommend that you learn some of the details of what
ASP.NET is doing behind the scenes. Take a look at the following
MSDN articles:

The ASP.NET Page Object Model
(http://msdn.microsoft.com/library/de.../library/en-us
/dnaspp/htm l/aspnet-pageobjectmodel .asp?frame=true )

Developing ASP.NET Server Controls
(http://msdn.microsoft.com/library/de.../library/en-us
/cpguide/ht ml/cpconkeyconcept sinwebformscont roldevelopment. asp)


John,

I disagree. When done properly, threads can be easily and
effectively implemented in ASP.Net. They are especially useful in
getting around timeout problems associated with long running
proceses. Here's an article that shows how:

http://www.ftponline.com/vsm/2002_11...chester/defaul
t.aspx

or

http://tinyurl.com/ysaf7
Chris.
-------------
C.R. Timmons Consulting, Inc.
http://www.crtimmonsinc.com/
Nov 18 '05 #6
"who be dat?" <wh******@dot.c om> wrote in
news:10******** *****@corp.supe rnews.com:
Consider the following code which enables multithreading in an
ASP.Net application I'm writing:

Code in global.asx Application_sta rt subroutine, Threadnotify is
declared Globally as a new thread where it uses the address of
EmailNotify below:

<SNIP/>

Chris,

Do you really want to start a new thread for each application
instance? Or do you just want a maximum of one thread running as
long as there is at least one application instance running?

Maybe you could also tell us more about the functional requirements
of your app. Do users log into/out of your app? If so, when do you
want the thread(s) to run - when the app starts or when the first
user logs in? If users are required to log in, then maybe you could
shut down the thread(s) when the user logs out, instead of when the
app ends.

--
Hope this helps.

Chris.
-------------
C.R. Timmons Consulting, Inc.
http://www.crtimmonsinc.com/
Nov 18 '05 #7

"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
news:eE******** ******@TK2MSFTN GP12.phx.gbl...
couple issues.

ThreadNotify.Is Background = True
this line instructs the thread to cease all activity when the application
ends. the application doesn't end when the debugger terminates, or the
webpage is closed or session ends. so your thread will keep running.

in the event of an iis reset, your thread will end because the application
ends, but it starts as soon as a request is made which is probably why you
are seeing emails after it has ended. it's not possible for the thread to be running when the application has ended.


This has me scratching my head because I've tested this several times. I
shut down IIS thru MMC console and I'm still receiving emails. I left IIS
turned off (at least stopped the service) and it's still going. The only
way I can stop the thread is to reboot. See a response I'm about to leave
to Chris R. Timmons for more info.

Thanks!

Chris Smith
Nov 18 '05 #8
in your subject line for the email, put the timestamp so you know when the
email was sent. then you can verify whether or not a thread is running or
not by examing this timestamp.

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"who be dat?" <wh******@dot.c om> wrote in message
news:10******** *****@corp.supe rnews.com...

"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
news:eE******** ******@TK2MSFTN GP12.phx.gbl...
couple issues.

ThreadNotify.Is Background = True
this line instructs the thread to cease all activity when the application
ends. the application doesn't end when the debugger terminates, or the
webpage is closed or session ends. so your thread will keep running.

in the event of an iis reset, your thread will end because the
application
ends, but it starts as soon as a request is made which is probably why
you
are seeing emails after it has ended. it's not possible for the thread to

be
running when the application has ended.


This has me scratching my head because I've tested this several times. I
shut down IIS thru MMC console and I'm still receiving emails. I left IIS
turned off (at least stopped the service) and it's still going. The only
way I can stop the thread is to reboot. See a response I'm about to leave
to Chris R. Timmons for more info.

Thanks!

Chris Smith

Nov 18 '05 #9

"Chris R. Timmons" <crtimmons@X_NO SPAM_Xcrtimmons inc.com> wrote in message
news:Xn******** *************** ***********@207 .46.248.16...
"who be dat?" <wh******@dot.c om> wrote in
news:10******** *****@corp.supe rnews.com:
Chris,

Do you really want to start a new thread for each application
instance? Or do you just want a maximum of one thread running as
long as there is at least one application instance running?

Maybe you could also tell us more about the functional requirements
of your app. Do users log into/out of your app? If so, when do you
want the thread(s) to run - when the app starts or when the first
user logs in? If users are required to log in, then maybe you could
shut down the thread(s) when the user logs out, instead of when the
app ends.

--
Hope this helps.

Chris.

Hi Chris,

I'm writing a bulletinboard application in order to learn ASP.Net. I've got
it going pretty good. You can see it at http://www.dotnetforum.net as a
matter of fact if you'd like. I'm now adding a new feature on my machine at
home. Once this feature is fully implemented and debugged, I will transfer
the update to the previously mentioned website. This feature will email
users when someone responds to a topic the user is watching letting that
user know someone has responded to a topic and provide a link the user can
click on to view the topic in their web browser. This is feature is fairly
typical among such applications.

I could just run through the code to send the emails to users everytime a
user responds which after my experiment in multi-threading I'm considering
doing. However, I was concerned about performance on a busy website.
Everytime a user responds, the code will look through the tables, figure out
all the emails it needs to send, and send all the emails. Not to bad if one
or two users are online at once responding away. But, I became concerned
about performance when there would be a large number of users online
responding multiple times. The site would go through the email routine
every time a large amount of users responded to the site. When a single
user responds, that user might spawn a lot of emails to be sent out which
means they would have to wait till the emails were sent if there are a lot
people watching a particular topic. Add in the fact lots of people could be
responding at the same time and it could hurt website performance not to
mention individual users might notice the wait as the data was retrieved and
emails were sent. They would have to wait for those actions to complete
till they could move in the website. I thought I could help the site out by
creating a thread that ran in the background. The thread would search the
tables, send out the emails it needed to, then sleep for X amount of minutes
where X is determined by an app setting value in web.config. It's working
great. Problem is, the dang thread never terminates.

What you think about this? I suppose I could just write a thread like the
following:

Dim ThreadNotify as Thread 'declared in a code module as a public object to
be accessed anywhere

When user responds the message is posted then this bit of code is executed:

..
..
..
ThreadNotify = New Thread(New ThreadStart(Add ressOf EmailNotify))
ThreadNotify.St art()
..
..

..

Public Sub EmailNotify()

Dim emails As New ForumEmail

Do

emails.EmailNot ify()

End Sub

Thing is, everytime someone responds a new thread will be created. But,
once the code for emailnotify reached the end sub statement, the thread
would terminate, right? I'd rather not create a thread everytime someone
responds but at least the grunt work would get done in another process and
hopefully the user won't notice it.

Can you think of a better way to do this? Thanks!

Chris Smith


Nov 18 '05 #10

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

Similar topics

1
1332
by: John Black | last post by:
Hi, I want to use static member variable to monitor the execution state, but I am not sure this is multi-thread or multi task safe. Here is my class: calss MyClass{ static int numCandidates; public: MyClass();
9
5623
by: Andy Chang | last post by:
Hi, If I have this function void DoSomething(int& index) { ::Sleep(10000); DoSomethingWith(index); } Is the variable index thread safe? Meaning that if I call this from two
5
2574
by: nicolas_riesch | last post by:
Does someone know if the module pytz (http://sourceforge.net/projects/pytz/) is thread-safe ? I have not seen it explicitely stated, and just wanted to be sure, as I want to use it. That's because in the file pytz/tzinfo.py, I see global variables _timedelta_cache, _datetime_cache, _ttinfo_cache, which are dictionnaries and are used as cache. I always thought that you must protect shared data with locks when multithreading, but I don't...
20
3501
by: Sacha | last post by:
Consider I have a working thread like this, while (1) { if ( g_pObject ) g_pObject->DoOneStep(); } with an class hierarchie like this
1
1950
by: Jeff Yang | last post by:
These days,I have read the artile "Safe, Simple Multithreading in Windows Forms, Part 1" on MSDN,and I also runed the example of it. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnforms/html/winforms06112002.asp The question is In function void ShowProgress(string pi, int totalDigits, int digitsSoFar); if I use Invoke(showProgress, new object { pi, totalDigits, digitsSoFar});the UI performs better(it responses to my...
8
3971
by: Robert Zurer | last post by:
I have a server application that makes a MarshalByReferenceObject available via remoting. It's lifetime is set to never expire and it is implemented as a Singleton. Are calls to this object inherently thread safe? If 1000 threads all call the same method of this object at once, do I have to add anything to my code to assure that there are no problems? Excuse me if this is really obvious. I am somewhat new to remoting and totally new...
6
8311
by: GG | last post by:
Is this public static method thread safe. //Receives a file name as a parameter //and returns the contents of that file as a string public static string FileToStr(string fileName) { FileStream fStream=null; lock(fStream) //just in case we use it for multithreading to be thread safe {
0
1366
by: Need2CSharp | last post by:
Hi All, Following is a quote from an article on MSDN. Article Title: Safe, Simple Multithreading in Windows Forms URL: http://msdn.microsoft.com/library/en-us/dnforms/html/winforms06112002.asp?frame=true Language: C#
2
1531
by: Roy Smith | last post by:
I'm perusing PEP-3108 and came upon this interesting statement (under the "Hardly used" section): mutex Not thread-safe. How can a mutex, whose sole reason for existence is to mediate thread safety, not be thread safe?
0
9588
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10340
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9161
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7625
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6857
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5527
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5663
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4302
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2999
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.