Click here to Skip to main content
15,886,734 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi Everyone,
New To Web Applications
My requirement is like i am developing a remote diagnosis tool it has to report the errors to severs which it will work as below
1. webserver is located in delhi for suppose
2. Client system is located in hyderabad for suppose
3. In client system we want to install our application and webservice app
4. Application errors will be logged in a file
5. Webservice App needs to push log file data automatically to webserver using internet daily
6. Whenever it pushed a log file to server in our webserver needs to get notification
7. Here team will look into log files based on notification

Please Suggest me some best ideas to implement webservice app design using .NET
Which webservices will push the data automatically?
What are the best ways to achieve the target?

Thanks in Advance sorry for if my english was bad

What I have tried:

I am able to implement Application with errors to be logged in file and Webserver which has database to save the files and display to user
But facing the problem of how to implement in webservice in client side?
Which is the best way to implement the client to server service without effecting much performance of the system
Posted
Updated 8-Feb-21 3:55am
v2
Comments
RickZeeland 4-Feb-21 4:27am    
How do you log? e.g. using log4net or other library?

 
Share this answer
 
Run an Azure Function app on a CRON schedule that hits your webserver. That triggers the code to collect the logs and send it off to the place of your liking.

You can even use Azure Storage.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900