Click here to Skip to main content
15,886,873 members
Articles / Web Development / IIS
Tip/Trick

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

Rate me:
Please Sign up or sign in to vote.
4.96/5 (8 votes)
16 Sep 2015CPOL 175.9K   1   12
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.

Image 1

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:

    Image 3

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

    Image 4

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

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

    After deleting the above tags:

    Image 5

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

    Image 6

Click on Reload All button and run the project again.

Hopefully, the error is gone now. :)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionProcess With An Id Of ... Is Not Running Pin
R@njit4-Apr-24 2:07
R@njit4-Apr-24 2:07 
GeneralMy vote of 5 Pin
GutierrezDev6-Oct-20 6:32
professionalGutierrezDev6-Oct-20 6:32 
QuestionThanks Pin
Reza_m_n_659-Sep-19 7:55
Reza_m_n_659-Sep-19 7:55 
Questionunauthorized changes blocked - fixed Pin
franco.fral18-Jul-18 13:04
franco.fral18-Jul-18 13:04 
AnswerRe: unauthorized changes blocked - fixed Pin
lenniscata1-May-19 5:06
lenniscata1-May-19 5:06 
AnswerRe: unauthorized changes blocked - fixed Pin
Member 1438869219-May-19 21:39
Member 1438869219-May-19 21:39 
PraiseWorking Fine Pin
Member 137718623-May-18 17:02
Member 137718623-May-18 17:02 
Questionthanks Pin
Member 849402720-Mar-18 23:16
Member 849402720-Mar-18 23:16 
PraiseThanks.. Pin
iamkhanhamza17-Feb-18 2:29
iamkhanhamza17-Feb-18 2:29 
QuestionSatisfaction Pin
tuzajohn10-Feb-18 4:09
tuzajohn10-Feb-18 4:09 
QuestionSaveServerSettingsInUserFile Pin
Evgeny_Rokhlin31-Aug-17 21:57
Evgeny_Rokhlin31-Aug-17 21:57 
PraiseThank you Pin
Dan Maroff22-May-17 6:34
Dan Maroff22-May-17 6:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.