Finally i got to receive the message from the queue. I'm placing here the code, just in case anyone needs it. Thanks for all the help Bill! dim body Set qQueue = Server.CreateObject ("MSMQ.MSMQQueueInfo") Set qMessage = Server.CreateObject ("MSMQ.MSMQMessage") qQueue.FormatName = "PUBLIC=fc3ebf19-bd12-4dfa-8029-e0062a5c7b2f" 'u get this ID in the properties of your queue Set qReceive = qQueue.Open(1,0) If qReceive.isopen then 'Response.write "
opened
" end if Set qMessage = qReceive.Receive (0 , true , true , 100) if Not qMessage is Nothing then body = qMessage.body Response.Write "
" + Body + "
" else Response.Write "Empty Queue" end if