Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

[Solved] Process With An Id Of ... Is Not Running

0.00/5 (No votes)
16 Sep 2015 2  
URL binding failure

Introduction

Sometimes, because of deleting DLLs in your project, or for some other reason, you get the following error while running the project.

On clicking the notification on right bottom corner of Visual Studio, you may get this popup.

removedbindingfailure.PNG

Background

I got this error when I deleted all the DLLs in my solution and tried to reopen and run the solution.

Solution

Well, this problem has a simple solution.

  1. Open your project file:

  2. Try to find the lines shown below (by finding "DevelopmentServerPort" in your project file).

    When found, delete the below tags from your project file:

     <DevelopmentServerPort>62140</DevelopmentServerPort>
     <DevelopmentServerVPath></DevelopmentServerVPath>
     <IISUrl>http://localhost:62116/</IISUrl>

    After deleting the above tags:

  3. Save and close the file. If you had your project opened, you may be prompted to reload the project.

Click on Reload All button and run the project again.

Hopefully, the error is gone now. :)

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here