Is it possible on a CLR trigger in SQL Server 2005 to send a message to a queue via MSMQ?
I am using the SQL Server Project type, but System.Messaging does not appear as a reference I can add.
Basically I need some type of action to take place (printing) when a row is written to the table. The device generating the row is a hand held scanner that can only do basic operations -- one of which is writing to SQL server over odbc. The initial idea was to just poll the table, grab records, print records, delete records. This will probably work fine, but it seemed like a good case and excuse to learn about message queues.