MSMQ with asp.net and wcf
Currently i'm developing an apllication that sends sms via the asp.net. I'm using msmq for th开发者_JAVA技巧e 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.
- How do i create a new queue for the msmq via asp.net
- how do i schedule something in wcf ?
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.
精彩评论