Access Radzen Web Server from Another Device

Hi!

I was wondering if it is possible to access the Radzen project from another device (I'm developing for an iPad, and want to test without having to deploy to IIS every time). I was looking at some of the config files and it seems they are set to localhost, but thought it might be possible to bind to my network IP address on my development box when I click Run in Radzen.

Thanks,

Bill

Hi @bdiplacido,

Radzen does not have a web server of its own. It uses the dotnet builtin one. This blog post shows how to modify the URL at which the server listens: 5 ways to set the URLs for an ASP.NET Core app

Most probably setting the URL via environment would be easier since it doesn't need adding files to Radzen's code generation ignore list. The environment variable hast to be set for your Windows user.

Thanks Korchev,

I'll give that a try!