Alternative MSMQ for use in Windows Store apps

I recently discovered that NetMsmqBinding is not supported in Windows Store applications, are there alternative ways to implement a similar queuing system on a host machine from a tablet?

Thank!

+4
source share
1 answer

Well, after I came to the conclusion that MSMQ can not use MSMQ . I found a great article discussing a way to implement OCA (<Temporarily connected application) , which is perfect for what I want to use -

EDIT: Start with Using SQLite in Windows 8 Storage Applications Instead

WINRT / SQLITE SYNC USING SYNC FRAMEWORK TOOL

List of simplified Microsoft Sync Framework Toolkit components :

  • Synchronization Service (uses WCF-based Sync Framework 2.1 related to SQL Server / Express / LocalDB / Azure SQL)
  • Cache controller (client-side, similar to SyncAgent / SyncOrchestrator in Sync Framework)
  • ( )
  • Storage Handler ( , / /)

!

+1

Source: https://habr.com/ru/post/1539296/


All Articles