Data from Web service to a service(application server)
.NET (Core and Framework)
1
Posts
1
Posters
0
Views
1
Watching
-
Hi All I have a tough one (for me that is). I have written a web service that recieve SOAP messages from an embedded device and it works fine:) I now need to get this information into a service on a server running in the back ground so that I can manipulate the data and in the end save it a SQL2005 db. I have seen that when I receive SOAP udates from my embedded device the web service "fires" on each POST from the embedded device, This can be as much as 10 000 time per second, I can see all my data. My first idea was to allow the web service to udate the SQL2005 db directly but this process is to slow. That is why I planning a service running on the same server as a process in the background. Regards :confused: