Launch .NET application through notification or windows messaging

  • Thread starter Thread starter Andy
  • Start date Start date
A

Andy

Is there any way to launch a .NET application by issuing a windows
message?

I have two .NET applications, A and B.

A writes records to a database, and then issues a message that its
finished.
The message somehow causes application B to launch which then offloads
the records in the database to somewhere else.

What's the best windows technology to use to do this?

Delegates? Windows messaging? Is there anything else?
 
Andy said:
Is there any way to launch a .NET application by issuing a windows
message?

I have two .NET applications, A and B.

A writes records to a database, and then issues a message that its
finished.
The message somehow causes application B to launch which then offloads
the records in the database to somewhere else.

What's the best windows technology to use to do this?

Delegates? Windows messaging? Is there anything else?

1) MS Windows Workflow Messaging
2) MS Windows Communication Foundation using Named Pipe or MS Message Queue
3) SQL Server 2005 and above, using SQL Server .NET CLR, Service Broker and
SQL Server queues.




__________ Information from ESET NOD32 Antivirus, version of virus signature database 4222 (20090707) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com
 
Back
Top