Borrar filtros
Borrar filtros

HOW TO RETRIEVE A VISITOR'S IP ADDRESS

5 visualizaciones (últimos 30 días)
mohammad ibrahim
mohammad ibrahim el 1 de Ag. de 2021
Editada: mohammad ibrahim el 1 de Ag. de 2021
How can I retrieve the IP address of visitors to my web app using MATLAB ?
for example in .NET, we can use:
public string IpAddress()
{ string strIpAddress; strIpAddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (strIpAddress == null)
{ strIpAddress = Request.ServerVariables["REMOTE_ADDR"]; }
return strIpAddress; }
thank you

Respuestas (0)

Categorías

Más información sobre Call Web Services from MATLAB Using HTTP en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by