Home > Blockchain >  Get response back from unpingable websites (C# ASP .net mvc)
Get response back from unpingable websites (C# ASP .net mvc)

Time:06-11

I'm not a network expert, but for one of my projects, I need to ensure that the website I'm sending the request to is alive. Some websites do not respond to ping; basically, their configuration prevents response to ping requests.
I was trying to Arping instead of pinging websites, but Arping only works on the local network and will not go beyond the network segment (this). I can download the whole or part of the webpage and confirm if the content is the same as the previous state, but I rather have one more level of confirmation before downloading Html.

Is there any other method that enables the app to get a response back from non-pingable websites outside the network?

CodePudding user response:

Based on common practices you may use ping, telnet and tracert as a client to the requested server (at this point the website or the service you want to connect) and make sure the 3 command are enable to your side. You may also try to access it to your browser.

If its API you may also try to use POSTMAN and call the service.

Goodluck and happy coding :)

CodePudding user response:

try this tool:

curl https:example.com

There is alternative for Windows, can be combined with PS

  • Related