简体   繁体   中英

How to debug a service in hosting WCF side-by-side with ASP.NET

I am have a simple hosting WCF service side-by-side with ASP.NET and have a difficult time to debug/step-in to the service. Below are the files. Thanks in advance!

Web.config

  <system.web>
    <compilation debug="true" targetFramework="4.5.2"/>
    <httpRuntime targetFramework="4.5.2"/>
  </system.web>

  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior name="mexBehavior">
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
      </serviceBehaviors>
    </behaviors>

    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />

    <services>
      <service name="WCF_TestService.TestService" behaviorConfiguration="mexBehavior">
        <endpoint address="" binding="basicHttpBinding" contract="WCF_TestService.ITestService"></endpoint>

        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8080/" />
          </baseAddresses>
        </host>
      </service>
    </services>

  </system.serviceModel>

ITestService.cs

namespace WCF_TestService
{
    [ServiceContract]
    public interface ITestService
    {
        [OperationContract]
        string GetMessage(string name);
    }
}

TestService.svc.cs

The breakpoint is set on return and the prompted message is The breakpoint will not currently be hit. No symbols have been loaded for this document The breakpoint will not currently be hit. No symbols have been loaded for this document

namespace WCF_TestService
{
    public class TestService : ITestService
    {
        public string GetMessage(string name)
        {
            return $"Hello {name}";
        }
    }
}

Client

The client is the console application.

namespace Client
{
    class Program
    {
        static void Main(string[] args)
        {
            ServiceProxy.TestServiceClient client = new ServiceProxy.TestServiceClient();
            Console.WriteLine(client.GetMessage("John Smith"));
            Console.ReadLine();
        }
    }
}

Per your comment about both projects in the same solution and WCF not being self hosted, you will need to configure your solution to have multiple startup projects.

In the solution explorer, select the solution, right click and select properties. Expand the Common Properties selection in the pop-up and click Startup Project. Click Multiple Startup Projects and select your projects and build action. Set appropriate order as well (WCF first in this case)

Also do not forget to change your endpoint address of your console app to point to the appropriate IIS port that your wcf project is running on when running, it may be in your best interest to setup configuration transforms for debug, and prod so you are not constantly switching these out in your config.

If the only reason you created the console project was to interact with your WCF service for testing then I would urge you to use WCF Test CLient instead. It should be installed by default on any VS instance.

Maybe this response is the same of this topic.

How to debug WCF programs

  1. You need to attach the debugger to the process that your wcf service is running in.

    • If in iis you need to attach to the corresponding w3p.exe process.

    • If in a stand alone app or windows service, attach to the name of your exe.

  2. In Visual Studio, on the debugger menu, there is an "attach to process". Open the relevant code, set a breakpoint, and call the service causing that code path to execute.

Outside of debugging, using .net tracing with switchable levels is a good way to get insight to what's going on. I typically setup sys internals debugview to color highlight errors and warnings and constantly have it running while running code or tests. Colored lines out of my peripheral vision while working finds issues.

Try run Visual Studio with a system administrator. Maybe you atached the wrong process, or the version running is not the debug version.

ALTERNATIVE

You can click with right button in both projects, and click in "Debug" -> "Start New Instance". The Visual Studio start both projects in Debug mode.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM