I'm working with a WebService (SOAP + XML) that requires access every day on a link, I want to automate this service on my Ubuntu Server, I thought of using Lynx along with CronTab to access the link and then close, follows the CronTab code:
0 6 * * * lynx https://site.com/WebService
1 6 * * * killall lynx
So, access occurs every day at the same time and after a minute it closes everything that exists in Lynx, the problem is that it does not work!
It accesses the link, but it is as if it "did not activate the XML" of the page, therefore, WebService does not work
The code page was developed in PHP and using cURL to call / execute XML. If you access the link through a browser, it works perfectly
Is there any way to resolve this? Or another method to automate this access?