ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
1,722 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
C:\Users\freitag\source\repos\WebApplicationWebanwendungFramework\Server
C:\Users\freitag\source\repos\WebApplicationWebanwendungFramework\**.vs**\WebApplicationWebanwendungFramework\config\applicationhost.config
My internal network
Is that possible 192.168.172.*
<bindings>
<binding protocol="http" bindingInformation="*:51404:localhost" />
<binding protocol="https" bindingInformation="*:44367:localhost" />
<binding protocol="http" bindingInformation="*:51404:127.0.0.1" />
<binding protocol="https" bindingInformation="*:44367:127.0.0.1" />
<binding protocol="https" bindingInformation="*:44367:168.172.*" />
</bindings>
Could all devices then connect? I could easily use this as a test server / mock server.
no. 192.168.172.* is not a valid host name, which should be a computer name or dns entry. IIS 10 added support for wildcard prefix (ex: *.mysite.com)
you probably just want:
<bindings>
<binding protocol="http" bindingInformation="*:51404:" />
<binding protocol="https" bindingInformation="*:44367:" />
</bindings>
note: this ports are not typically open, so you will need to change your firewall rules