Console and web application integration

  • Thread starter Thread starter Cittadino del mondo
  • Start date Start date
C

Cittadino del mondo

Guest
Hello.

I need develop

1) An executable that once per day will read data from a file, load that data to a MS database, and synchronize this data to yet another independent remote system.

2) A web application that will permit analisys of what the executable in point 1) did: What has been done and what not, and approve or deny operations that were not executed because an operator decision is needed. Also define selective exceptions for these elements to be imported locally and exported to the remote system, or create/delete/modify other elements to the same remote system. This web application also need to handle completely different local elements that are anyways related to the formers. So, this web application, will allow some control over the operation of the executable above, but also perform other tasks.

The two above (1 and 2) will share the same database and be tightly integrated. I want the executable to be usable from both the command line and from the web app.
I also would like to use scaffolding, and have most (if not all) the database schema and data handled by the framework and based on my C# classes, so that I will not have to write SQL code.

I already developed the C# classes for the external executable, but I would like that code to be part of the web application, so that if I modify the code on the web platform I will not break the executable and vice versa.
What is the best way to achive this integration in Visual Studio?

I'm a beginner with Visual Studio and C#, but I have a long programming experience in C and Java.

Thank you and best regards.
Robi

Continue reading...
 
Back
Top