Some advice needed - I have an app running on windows 10 PC which sends out data in text_binary or json format which will be one line of text normally (small file of roughly 8kb).
It will look something like this -
{source={ivarId={f1d22827-1650-41a0-a31e-28621430bc7d}, channel=1}, common={type=AUDIT_LOG, time=2020-04-20T15:40:11.256Z}, auditLog={clientId=2148, clientIp=127.0.0.1, account=, command=START_LIVE, parameters=[{name=channelId, value=1}, {name=answer, value=1}, {name=replyType, value=1}], result=STATUS_OK}, id={be138cc4-321c-41a9-8d2f-25a1e5d058fc}, addInfo={ivarIp=192.168.1.17}, images=[]}
The protocol it uses to send out is HTTP so i have to set up a webservice to receive this data and provide the URL of the webservice to the application so it can send.
I simply need the webservice to receive this text file and store it somewhere locally. The webservice has to be installed on the same Windows 10 PC where the app resides.
Any ideas on where to get started on this, that is what would be the best method for accepting this file and storing it?