Ideas for transferring data to a web service

I have an application that collects data, and I need information on developing a queue service for interacting with various web applications.

I thought about using a centralized database, but I think this idea might be redundant.

Is there a global cache object at the web service level that my application can access, as well as click and pull data?

+3
source share
3 answers

You called a DB, other options may be

, , , WCF System.Runtime.Cache

+2

I had a similar problem, I used MSMQ to get around this.

+1
source

All Articles