1
I have a C# Desktop System and the data is recorded in Sqlserver. How can I write this data simultaneously to a WEB system developed in ASP . NET ?
1
I have a C# Desktop System and the data is recorded in Sqlserver. How can I write this data simultaneously to a WEB system developed in ASP . NET ?
Browser other questions tagged c# asp.net sql-server
You are not signed in. Login or sign up in order to post.
This system is a REST API?
– dcastro
No @dcastro, ado.net 3 layers with two library class
– Renoir
This has nothing to do with whether it is a REST API or not. Ado is the framework used to access the database, and the fact that it uses two Ibraries is irrelevant. I’m asking what the public interface of this project is. It’s an API or it’s web pages?
– dcastro
Sorry lack of knowledge, are web pages.
– Renoir
then there is no way to integrate programmatically. You need to expose the operation through a API
– dcastro
It has like through a webservice?
– Renoir
Yes, what is usually called a web service is a SOAP API. SOAP is falling into disuse, I recommend before that link I posted in my last comment, but either one "works".
– dcastro
Not every webservice is a Soap api. I particularly prefer json by the smaller overhead. But every case is a case and Soap is still very useful.
– Anderson Matos