ericlee
ericlee

Reputation: 2753

MSMQ with asp.net and wcf

Currently i'm developing an apllication that sends sms via the asp.net. I'm using msmq for the queuing incase of multiple sending of sms. The wcf will then check for new queue and using teh queue to send out a sms. I've a few question.

  1. How do i create a new queue for the msmq via asp.net
  2. how do i schedule something in wcf ?

Upvotes: 0

Views: 509

Answers (1)

marc_s
marc_s

Reputation: 754468

1 . How do i create a new queue for the msmq via asp.net

In order to create queues on the fly, you can use System.Messaging in .NET - see e.g. this article on how to do it.

2 . how do i schedule something in wcf ?

Why do you need to schedule something in WCF? What are you trying to do, trying to achieve here??

WCF is a service-oriented framework - it's about messages and stuff like that - not scheduling.

Upvotes: 1

Related Questions