Haven't tried it, but

a) write a async web service in .NET and use it from CF
        http://www.123aspx.com/resdetail.aspx?res=26694

b) write a COM

Some VB to post message

Private Sub PostMessage()

        Dim QI as New MSMQQueueInfo
        Dim RequestQ As MSMQQueue
        Dim msg As New MSMQMessage

        QI.PathName = "MyServer\QueueName"
        Set RequestQ = QI.Open(MQ_SEND_ACCESS, MQ_DENY_NONE)

        Msg.Label = "what ever..."
        Msg.Body = "what ever..."
        Msg.Send RequestQ

        RequestQ.Close

End Sub

C) write a cfx_ in C++

or

D) Use JMS :-)

let us know!!

WG

> -----Original Message-----
> From: Tony Weeg [mailto:[EMAIL PROTECTED]]
> Sent: 29 January 2003 14:07
> To: CF-Talk
> Subject: cf and msmq
>
>
> just a question
>
> has anyone successfully, integrated cf/cfmx with microsofts msmq
> (Microsoft Message Queueing Service)
> to either get/receive data?
>
> thank you!
>
> ...tony
>
> Tony Weeg
> Senior Web Developer
> UnCertified Advanced ColdFusion Developer
> Information System Design
> Navtrak, Inc.
> Mobile workforce monitoring, mapping & reporting
> www.navtrak.net
> 410.548.2337
>
> 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to