Access MVC web application from other computer - asp.net

I just published my mvc application on IIS server and its working correctly and i can access it through webbrowser. The problem is within same network i canlt access it from other host for which the server is visible. Error i receive when trying to access is saying:
403 - Forbidden: Access is denied.
You do not have permission to view this directory or page using the credentials that you supplied.
P.S How to check what port was assigned to my web application and eventually how to change it?

Related

ASP.net Web Application uploaded to the hostgator through ftp does not allow to view them. It throws 403 error

I was able to successfully upload my ASP.net web application to hostgator server through FTP. But I cannot access it by URL. It throws 403 - Forbidden: Access is denied.
You do not have permission to view this directory or page using the credentials that you supplied.
I checked the permissions. Permissions are given to ALL.
Is there any other setting I need to be checked on... ?
If you receive forbidden error message, it means that you haven't setup your own default page correctly. Please refer to this post https://windowswebhostingreview.com/troubleshoot-403-error-when-publishing-asp-net-core/

Unable to render HTML. Unable to access URL. COM error 80070005. Access is denied

I am getting this exception thrown by the ABCpdf component:
When deployed to POC server (Windows 2008, 32 bit, IIS7 32 bit, Windows Authentication), the component throws an exception when performing this operation: pdfDoc.AddImageUrl(uri);
Unable to render HTML. Unable to access URL.
COM error 80070005. Access is denied.
URL 'http://localhost:878/SimplePage.aspx'.
Same error, when replacing localhost with the actual IP:
Unable to render HTML. Unable to access URL.
COM error 80070005. Access is denied.
URL 'http://192.168.26.230:878/SimplePage.aspx'.
However, there is no problem generating PDF from any external uri, like http://www.google.com.
Access is denied to WHAT ???
IIS pool is running under Network Service account.
But when I set it to run using Local System account, it works.
You wrote "IIS7 32 bit, Windows Authentication". This means that your IIS site expects the user-agent to use NTLM authentication. You therefore need to tell ABCpdf what account to use.
See the LogonName Property of ABCpdf.
You will need to provide a real username and password that actually has access to the IIS site. Network Service is not a real account (it has no password).
You may be better off adding the Anonymous authentication method to your localhost IIS site, so that ABCpdf does not need credentials to access it.

Access is denied in asp.net

when i login through any account and click on fiancne documents then it show me this error
Server Error in '/' Application.
Access is denied.
Description: An error occurred while accessing the resources required to serve
this request. The server may not be configured for access to the requested
URL.
Error message 401.2.: Unauthorized: Logon failed due to server configuration.
Verify that you have permission to view this directory or page
based on the credentials you supplied and the authentication methods
enabled on the Web server. Contact the Web server's administrator for additional
assistance.
Version Information: Microsoft .NET Framework Version:2.0.50727.4984; ASP.NET
Version:2.0.50727.4971
Sounds like your documents are in a protected folder that can't be served up to the user that you are using, or possibly to any users. Check the security on the folder where your finance documents are stored.
If you aren't on the development team, then I would suggest contacting your website administrator to have them co-ordinate to determine what the issue is.

Access to the port 'COM4' is denied

I am using arduino (some micro-controller), and I made an ASP.net page to communicate with it. I connected arduino to serial-port COM4. When I run the ASP.net website, I get the following error:
Exception Details: System.UnauthorizedAccessException: Access to the port 'COM4' is denied.
ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via , the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.
To grant ASP.NET access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.
now i know it may sound like the solution is right there: " to grant asp.net access to..." but i don't know what file they are talking about!
So please can anybody point out the solution ?
PS: I first did a windows form application and it worked. So there is nothing else using the COM4.
Thanks in advance.
Ignoring that it's strange that a web application should talk to a COM port on the server, the issue is as follows: by default an ASP.NET application in IIS runs under a low privilege user (as specified in the error message). That user is not allowed to access the port.
A console application runs under the user who launched it. I'm assuming that's you and you're an admin on the machine.
To get the ASP.NET doing the same open IIS (Start - Run - inetmgr), select 'Application Pools', choose the app pool under which your web application is running, click 'Advanced Settings', set the 'Identity' field to your user.
Restart the app pool and launch the web application.

Error message 401.2: Unauthorized: Logon failed due to server configuration

i'm trying to deploy my asp.net web app into company server but i don't know which type of permission choose as the image follow.
My web.config authentication section is set to "None"
What i have to do to view my website ?
Thanks

Resources