Could not find a base address that matches scheme net.tcp

73,377

Solution 1

You need to define just the base address (not the whole address) for your service, and then the rest in the service endpoint. The address you have with the filetransfer.svc file at the end is not a valid base address (it's a file address, really)

<service behaviorConfiguration="transferServiceBehavior" 
         name="API.FileTransfer.FileTransferService">
    <host>
      <baseAddresses>
        <add baseAddress="net.tcp://localhost:8001/project/" />
      </baseAddresses>
    </host>
    <endpoint name="MyFileTransferEP"
              address  = "filetransfer"
              binding  = "netTcpBinding"
              bindingConfiguration="MyFileTransferNetTcpEP"
              behaviorConfiguration="NetTcpEPBehavior"
              contract="API.FileTransfer.IFileTransferService" />
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>

With this, and using self-hosting, your service would be available at the complete address:

net.tcp://localhost:8001/project/filetransfer

Since this is net.tcp and you're self-hosting, there's no need for a svc file at all.

UPDATE: if you want to be able to get metadata on your net.TCP base address, you'll need to expose a net.Tcp MEX endpoint like this inside your <service> section:

        <endpoint name="NetTcpMEX"
                  address="netTcpMex"
                  binding="mexTcpBinding"
                  contract="IMetadataExchange" />

Solution 2

Error (WCF): Could not find a base address that matches scheme net.tcp for the endpoint with binding NetTcpBinding. Registered base address schemes are [http].

Step 1: Note WAS (Windows Process Activation Service) or non-http protocol support, is only supported by following platforms: • Windows Vista • Windows 7 • Windows Server 2008

  1. Go to Turn Windows features on or off
  2. Go to Microsoft .NET Framework 3.5
  3. Check Windows Communication Foundation HTTP Activation
  4. Check Windows Communication Foundation Non-HTTP Activation

Step 2: IIS > WCF Host Web Site > Manage Application > advanced Settings > Enabled Protocols > Set the value to HTTP,NET.TCP

Solution 3

Space in "Enabled Protocols" entry in IIS => Select virtual Directory/application => advanced settings => Enabled Protocols. e.g. http, net.tcp. (Space between protocol text

This should be http,net.tcp (ie. no space between the protocol text)

Solution 4

After going through a lots of solution .. i found the final solution in this blog.. however i am going to explain the whole procedure here .. you need to follow the below steps ..

Step1: (Windows Process Activation Service) or non-http protocol support, is only supported by following platforms: • Windows Vista • Windows 7 • Windows Server 2008

  • Go to Turn Windows features on or off
  • Go to Microsoft .NET Framework 3.5
  • Check Windows Communication Foundation HTTP Activation
  • Check Windows Communication Foundation Non-HTTP Activation

Step 2: IIS > WCF Host Web Site > Manage Application > advanced Settings > Enabled Protocols > Set the value to http,net.tcp

check if your problem solved after step2 completion..if not then follow below step

Step 3: In an administrator-level Command Prompt window, run the following command.

%windir%\system32\inetsrv\appcmd.exe set site "Default Web Site" -+bindings.[protocol='net.tcp',bindingInformation='8082:*']

Restart the IIS once or you could get Failed to map the path '/' exception now

Your application in advance setting will looks like below now

enter image description here

Solution 5

For future readers.

Make sure you not using IIS-Express.

This was my "gotcha".

Reference:

http://www.iis.net/learn/extensions/introduction-to-iis-express/iis-express-faq

        Q: Does IIS Express support non-HTTP protocols such as net.tcp or MSMQ?
        A: No. IIS Express only supports HTTP and HTTPS as its protocol.

This is a property under Visual Studio and the web.csproj (or similar) Properties and the "Web" left-tab. There is a checkbox called "Use IIS Express". Uncheck that.

After you do that, you'll still have to go to IIS(7) and "http,net.tcp" for "Enabled Protocols" (as described in other answers here)

Also, if you're getting the named pipe specific error.

Could not find a base address that matches scheme net.pipe for the endpoint with binding NetNamedPipeBinding.

Then you need to add "net.pipe" to the list.

Example:

http,net.tcp,net.pipe

Also see the below for the named pipe specific error.

Configure WCF as Named Pipe hosted on IIS7

ALSO: Check these corresponding windows services (named pipes or tcp or both)

(named pipes windows service)

NetPipeActivator

Net.Pipe Listener Adapter

Receives activation requests over the net.pipe protocol and passes them to the Windows Process Activation Service.

(tcp windows service)

NetTcpActivator

Net.Tcp Listener Adapter

Receives activation requests over the net.tcp protocol and passes them to the Windows Process Activation Service.
Share:
73,377
Peter
Author by

Peter

NYC-based software developer and writer. Always interested in talking shop - feel free to reach out!

Updated on March 08, 2021

Comments

  • Peter
    Peter about 3 years

    I have moved my file transfer service from basicHttpBinding to netTcpBinding as I am trying to set up a duplex mode channel. I have also started my net.tcp port sharing service.

    I am currently in dev and am self hosting on an xp box until we move the app to a dev server. so, for now, I do not have access to IIS.

    After configuring my service as such:

    <service behaviorConfiguration="transferServiceBehavior" name="API.FileTransfer.FileTransferService">
            <endpoint name="MyFileTransferEP"
                      address  = ""
                      binding  = "netTcpBinding"
                      bindingConfiguration="MyFileTransferNetTcpEP"
                      behaviorConfiguration="NetTcpEPBehavior"
                      contract="API.FileTransfer.IFileTransferService" />
            <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
            <host>
              <baseAddresses>
                <add baseAddress="net.tcp://localhost:8001/project/filetransfer.svc" />
              </baseAddresses>
            </host>
    </service>
    

    And, my binding as such:

    <netTcpBinding>
            <binding name="MyFileTransferNetTcpEP"
                     hostNameComparisonMode="StrongWildcard"
                     closeTimeout="00:01:00"
                     openTimeout="00:01:00" 
                     receiveTimeout="00:10:00" 
                     sendTimeout="00:01:00"
                     maxReceivedMessageSize="2147483647"
                     transferMode="Streamed"
                     portSharingEnabled="true">
              <security mode="None">
                <transport clientCredentialType="None" />
                <message clientCredentialType="None" />
              </security>
            </binding>
    </netTcpBinding>
    

    I get the folloing error when I right and browser to the SVC file:

    Could not find a base address that matches scheme net.tcp for the endpoint with binding NetTcpBinding. Registered base address schemes are [http].

    The reading online suggests that, in order to fix this problem, i needed to add the net.tcp binding to the binding of the application in IIS. But, what do I do if I am self hosting and do not have access to IIS?? By the way, if you are reading this and "do" have IIS, do the following: Right click the virtual directory/application in IIS -> Manage application -> Advanced settings. And, in the Enabled Protocols part, add net.tcp.

    Any ideas?


    UPDATE: I thought I had it working but it's still not working. Here is what I have now: I am still getting the "could not find base address that matches scheme net.tcp" error. I have changed all my base addresses to reflect your suggestion. Here is what I have now:

    <service behaviorConfiguration="transferServiceBehavior" name="API.FileTransfer.FileTransferService">
                <endpoint name="MyJSONFileTransferEP"
                          address="json"
                          binding="webHttpBinding"
                          bindingConfiguration="jsonWeb"
                          behaviorConfiguration="WebHttpEPBehavior"
                          contract="API.FileTransfer.IJSONFileTransferService" />
                <endpoint name="MyPOXFileTransferEP"
                          address="pox"
                          behaviorConfiguration="WebHttpEPBehavior"
                          binding="webHttpBinding"
                          bindingConfiguration="poxWeb"
                          contract="API.FileTransfer.IPOXFileTransferService" />
                <endpoint name="MySOAPFileTransferEP"
                          address="filetransfer"
                          binding="netTcpBinding"
                          bindingConfiguration="netTcpWeb"
                          behaviorConfiguration="NetTcpEPBehavior"
                          contract="API.FileTransfer.ISOAPFileTransferService" />
                <endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange"/>
                <host>
                  <baseAddresses>
                    <add baseAddress="net.tcp://localhost:2544/filetransfer/" />
                  </baseAddresses>
                </host>
              </service>
    

    I have tried this with both "net.tcp://localhost:2544" & "net.tcp://localhost:8001". Do I need to add (allow) something in my firewall settings? Any other suggestions?

    Here is my filetransferservice's mexTcpBinding in my App.config file:

    <endpoint address="net.tcp://localhost:2544/filetransfer/mex"
            binding="mexTcpBinding" bindingConfiguration="" contract="IMetadataExchange"
            name="filetransfermex">
            <identity>
              <certificateReference storeName="My" storeLocation="LocalMachine"
                x509FindType="FindBySubjectDistinguishedName" />
            </identity>
          </endpoint>
    

    I am still unable to reference my FileTransferServiceClient in my web app.

    Thanks again.

  • Peter
    Peter over 14 years
    Looks like I am still getting this error. I tried your suggestion but that didn't seem to do it. I updated my question - any other suggestions? Thanks again.
  • Peter
    Peter over 14 years
    Hey, thanks again. I am able to compile my code now but can't seem to add my net.tcp service in the service references UI. Also, I have <serviceMetadata httpGetEnabled="True"/> for the service. When I try to navigate to my url: "net.tcp://localhost:2544/filetransfer/soap" in the browser it tells me that "firefox doesn't know how to open this address". When I try to browse from the filetransfer.svc file (I know it isn't necessary) I get the familiar: "Could not find a base address that matches scheme net.tcp for the endpoint with binding NetTcpBinding."
  • Peter
    Peter over 14 years
    OK, this is resolved (and thanks for your answer). I have a related issue but I will repost. Thanks again.
  • Donald N. Mafa
    Donald N. Mafa over 8 years
    @CodeSherpa, please advise how you got the "Could not find a base address that matches scheme net.tcp for the endpoint with binding NetTcpBinding". I have tried this answer and it is not working
  • Dev
    Dev over 7 years
    Thanks Amir. Second step was the one which helped me.
  • fiat
    fiat over 5 years
    Step 2 was more problem: Used powershell to solve stackoverflow.com/a/12473835/1141876