wcf - How to use message queue with Windows phone 8 app? -


i have windows phone 8 application, communicates wcf service using basichttpbinding. service hosted on iis7 (and not using windows azure)

as service may go down reason, exploring use of message queues increase reliability of system.

i have looked @ netmsmqbinding provided in wcf - looks binding not supported wp8 client. looking @ using rabbitmq, cannot find working example wp8 client using wcf.

please can suggest best way forward? sample code (or links) appreciated.

thanks

first off, netmsmqbinding cannot used across internet. because uses msmq not exposed on http.

when you're making calls resource across internet, unreliability need factor application. because of number of possible problems can encounter, it's not case of if, when, there failure , it's how application deals this important.

even so, there things can minimize reliability issues experience, 1 of involve queuing.

where queuing can useful taking large, complex, , long running processes offline. because calls such processes implemented synchronously time out, can gain lot of reliability making actual processing call asynchronous.

as example, common have web server invoke offline process via message queuing , return client request being processed. because doing inexpensive calls far less fail. problem becomes 1 of how return response client once offline processing has been done.


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -