Click here to Skip to main content
15,894,896 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
My message subscriber service is .Net WCF Web services. I wanted know that how I can process the MQ message that is received in queue and require to trigger for other system using web service but without using pulling mechanism. Message processing should work just as pub/sub. Publisher should publish the message in the MQ and subscriber need it using WCF web services without pulling it from the MQ but MQ should send / trigger it to subscriber.
Posted

1 solution

IBM WebSphere MQ provides a custom channel for WCF. You can start here: http://www-01.ibm.com/support/knowledgecenter/SSFKSJ_7.5.0/com.ibm.mq.dev.doc/q029740_.htm[^].

Everything else is done how it is done with WCF with any other channels.

—SA
 
Share this answer
 
Comments
Suryakant Torvekar 17-Nov-14 14:15pm    
Hi Sergey,

I gone through the link but not able to conclude whether MQ support WCF web services? I need to know if it is possible to develop a custom adaptor in .Net as a listener which can consume WCF web services. The listener should call the wcf web service as soon as message land in the MQ.

Regards
Surya
Sergey Alexandrovich Kryukov 17-Nov-14 14:31pm    
Yes, it does, through the channel code referenced. When you develop your listener, remember that it is agnostic to channels and can use any channels, easily replace them, etc. This is the basics of WCF modular architecture.
—SA
Suryakant Torvekar 24-Nov-14 12:40pm    
Thanks, I will explore more on this and try to build a POC with same approach.
Sergey Alexandrovich Kryukov 24-Nov-14 13:42pm    
You are very welcome.
Good luck, call again.
—SA
Suryakant Torvekar 3-Dec-14 18:59pm    
Do you have a sample code for this approach?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900