403 forbidden resource error [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am seeing this error after I merged some changes from some one else's code. I was able to browse to the directory fine before.
Now, Basically my localserver is throwing this error. and that is all it is saying. I did try running the project as admin and I tried giving iis full permission the folder and everything but no luck yet. Any suggestions?

Try running the page on the web server - it may then give you the actual 403 error - e.g. 403.11 - then you can look up that error here

If you are not talking about a huge amount of merged changes applied to your repository, most probably, you will loose less time by
undoing merge
and checking one-by-one changes available on the server.
From my experience this often is a easiest way.
Hope this helps.

Related

How to open .chm help file in c# [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have opened .chm file in c# but it is showing This program cannot display webpage error .
I have edited register and my path does not contain any special character , can any one help me out of this .
Error Details :
This program cannot display the webpage
Most likely causes: You are not connected to the Internet. The website is encountering problems. There might be a typing error in
the address.
What you can try:
Check your Internet connection. Try visiting another website to make sure you are connected.
Retype the address.
Go back to the previous page.
More information More information**
The issue may be because the .chm is on a network share and not local, as Windows can only open them if they're local files. It was patched as a security issue apparently.
The usual way around this is to install a copy of the .chm with your app.

Already Existing User in MVC3 razor [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am doing project MVC3 razor whaen I was inserting the data that would be saved in database.If the user is already in database that username should't be saved in database and one error msg has to be displayed how can I write the code for this?
You open up your favourite code editor and type away. Unless you don't have fingers - in which case I don't know.
(Anticipating -1's)
In all seriousness, though (and this should be a comment but because I've added an answer I'm going to put it here) - how can you expect anybody here to give you a straight answer to this question. You have not supplied any code, no information about your database schema, you haven't shown what you've tried (so we're assuming you've tried nothing). Ultimately this is a type of question repeated many many times here on SO and it always gets treated the same way - occasionally sarcastic comments - and I really do try not to do that any more, so sorry on this occasion - and closed within approximately 5 minutes.

Call Window Service from C# code [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a WCF service that hosted in windows services.
I'm trying to call the service from the code, when i'm in visual studio everything works fine, but if i'm closing visual studio and run the application from bin/debug/MyApp.exe i'm getting an exception )it can't find the service).
what should I do in order to call window service?
Thank you all...
Fix your programming error.
Simple, isn't it?
THat is about the only answer that is suitable for your question - you totally fail to give even a baseline Explanation.
I would look into
Errors that happen in in the Service. Maybe the WCF Service is NOT hosted when starting outside visual Studio?
Reading skills - targttted epecially at the exception you get, which seriously also includes a stack trace.
Getting some nice Story telling skills. We all like you to tell nice stories, for example how the servie is configured, the relevant lines of code where you actually set it up.

Multiple Applications access one single xml file at same time using c# [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am facing problem with "Access one xml file from 2 different applications at same time".
But it shows error code is "access denied, because another process using the file".
I applied all lock methods, but no use (same error).
Setting the correct FileShare enumeration value when instantiating the underlying FileStream allows you to control this.
Ref.: http://msdn.microsoft.com/en-us/library/system.io.fileshare.aspx
Even if it would be possible for two applications to write to the same file at the same time, the file would be corrupted. I recommend you to use a database instead.

URL Tracking URL [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
We are programming a website which use UPS as shipping method. Administrator of the site must approve every order manually, create things propertly with UPS and then just get the tracking number and put it in our system. So we do not use any API from UPS or anything.
Is there a "static" URL like : http://ups.com/apage/{0} we may format to replace the {0} by the tracking number that the administrator will enter in our system?
I know I could search in google, but I'm not realy sure of what to write after UPS URL Tracking number didn't results me anything usefull.
You are required to use the UPS API when interacting with their system to either track packages or manage shipments. Any other use is in violation of their terms of service.
I don't know their terms of service as others have mentioned, but GMail just links to the following when it finds a tracking number in a message. I would assume you could use the same:
http://wwwapps.ups.com/WebTracking/processInputRequest?TypeOfInquiryNumber=T&InquiryNumber1=TRACKINGNUMBER
I'm sure this could end up changing at some point down the road.

Categories