0

I've created a default web api and when I ran I got this error.

1 Answer 1

1

Try to delete sites with the same port in IIS Express configuration file located in you user folder

C:\Users{USER_NAME}\Documents\IISExpress\config\applicationhost.config

<listenerAdapters>
    <add name="http" />
</listenerAdapters>

<sites>
    <site name="orchard" id="10">
        <application path="/" applicationPool="Clr4IntegratedAppPool">
            <virtualDirectory path="/" physicalPath="C:\Users\{USER_NAME}\Documents\My Web Sites\orchard" />
        </application>
        <bindings>
            <binding protocol="http" bindingInformation="*:3473:localhost" />
        </bindings>
    </site>
    <site name="Pacotes" id="29">
        <application path="/" applicationPool="Clr4IntegratedAppPool">
            <virtualDirectory path="/" physicalPath="D:\svn\comuns\develop-v1.7.2-Scripts\Nuget.Server" />
        </application>
        <bindings>
            <binding protocol="http" bindingInformation="*:55004:localhost" />
        </bindings>
    </site>
</sites>

<webLimits />
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.