65.9K
CodeProject is changing. Read more.
Home

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

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.96/5 (8 votes)

Sep 16, 2015

CPOL
viewsIcon

183226

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. :)