Click here to Skip to main content
15,897,718 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
What are the best ways to create a Listener in ASP .NET?
I have Data coming from API (Sending GPS data - post method).Data is in JSON format.

Now i want to take the data and save it in my Database by writting any service / listener / or any other method so that i can keep listen every 2 to 3 minitus and save the data autometically.
The Response Body is:
JavaScript
{
"unitCodes": [
  19224,
  19245,
  19219,
  19240
],
"start":"2018-03-02T00:59:00.000Z",
"end":"2018-03-02T01:00:00.000Z",
"fields": [
  "unitCode",
  "timedate",
  "latitude",
  "longitude",
  "ignition",
  "velocity",
  "positionerror",
  "digitherm5"
]
}

Is there any way to achieve this??? Please some one help me out on this.

What I have tried:

I have tried with writing a console application and im not getting response back and not sure how to catch up the data.
Posted
Updated 18-Mar-18 21:07pm
v2
Comments
Kornfeld Eliyahu Peter 18-Mar-18 18:15pm    
It is not clear how you got to ASP.NET... Check about windows services...
Richard Deeming 19-Mar-18 12:51pm    
REPOST
You have already posted this question, albeit with much less information:
https://www.codeproject.com/Questions/1235197/How-do-I-write-a-listener-in-Csharp-console-applic[^]

You should delete the previous copy of this question, since it has less information.

In future, if you want to update your question, click the green "Improve question" link and edit your question.

1 solution

You may try looking at [ASP.NET SignalR] to push data in a certain time. See: Integrating with ASP.NET SignalR push services[^]

If you are looking for a job scheduler. There are a few options that are out there which can use to implement and run scheduled jobs in ASP.NET. Some of the popular out there are Quartz.Net, FluentScheduler and HangFire.

Here are some great examples that might help you get started:
(1)Scheduled Tasks In ASP.NET With Quartz.Net[^]
(2)Schedule Background Jobs Using Hangfire In ASP.NET Core[^]

Otherwise, as already suggested, you could create and run a windows service to do this.
 
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