I'm trying to Host ASP.NET WebAPI and make that available for all devices connected on the LAN.
I can able to access the API from my localhost
Getting Proper Response from API
When i try to access the API from Other computer in the same LAN, API is getting into Bad Request - Invalid Hostname HTTP Error 400
Bad Request - Invalid Hostname
I have also added the Inbound Rules for port number 52022
My binding configuration in
C:\Users***\Documents\IISExpress\config\applicationhost.config
<sites>
<site name="WebSite1" id="1" serverAutoStart="true">
<application path="/">
<virtualDirectory path="/" physicalPath="%IIS_SITES_HOME%\WebSite1" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:52022:localhost" />
<binding protocol="http" bindingInformation="*:52022:" />
</bindings>
</site>
<siteDefaults>
<logFile logFormat="W3C" directory="%IIS_USER_HOME%\Logs" />
<traceFailedRequestsLogging directory="%IIS_USER_HOME%\TraceLogFiles" enabled="true" maxLogFileSizeKB="1024" />
</siteDefaults>
<applicationDefaults applicationPool="Clr4IntegratedAppPool" />
<virtualDirectoryDefaults allowSubDirConfig="true" />
</sites>
Still I could not be able to access API from another Computer which are connected in the same LAN.
In order to make Web application available on Lan Simply You need to deploy your service on local host. Here are some links
Deploy web api on localhost
and
Deploy asp.net web api on localhost