WCF : How to disable WCF Test Client

依然范特西╮ 提交于 2019-11-28 20:19:10

问题


I created a new WCF Application. It has a svc file & a code behind, When I try to debug (F5) then I see the following.

  1. If svc file is open & press F5 then it opens the web browser
  2. If code behind file is currently open & press F5 then WCF Test client opens.

Why there are different behavior? I do not want to use Test Client, how to disable it in the app so that it would not come again.

Atul Sureka


回答1:


Open your project properties, go to the Debug tab, under start options you will see something like /client:"WcfTestClient.exe"

delete that line.

For a WCF Service Application and WCF Workflow Service Application you need to modify the .csproj.user file. A full write up can be found here.

The key part is

    <WebProjectProperties>
      <EnableWcfTestClientForSVC>False</EnableWcfTestClientForSVC>
    </WebProjectProperties>



回答2:


Right Click WCF Project -> Select Properties -> Debug In Debug, you can see the Command Line arguments specified as /client:"WcfTestClient.exe" Removing this won't fire up the test client when you run the service.

Regards,

Venkatarajan Arthanari




回答3:


I have been down this road MANY times over the years at different companies.... I forget and I found this page and while it is good advise for some, not helpful for me.

What DID fix this for a WCF application for me is this:

Note:  Visual Studio 2013  FYI

1. Right click on the your WCF project and click Properties
2. Click on left "Web" link/tab  --> Notice the Start Action Section
3. Check Radio Button   "Specific page"   
4. Enter your .svc example   Service1.svc  
5. Set project as startup and either hit F5 or right click and debug
6. Now the WCF Test Client launches   (for me at least) 

Hope this helps someone else.




回答4:


for future view ... when i was in a svc file, and hit f5, it always start this utility ... i try the param in the project file, don't work ...

then, in property, i change the setting in web, from Current page, to my default page :)

now i don't have this utility popping each time :)




回答5:


To control the WCF Test Client auto-launch in Visual Studio 2015/2017 you can do the following:

Right-click the WCF Service Project in Solution Explorer, choose Properties, and click WCF Options tab. Clear the checkbox Start WCF Service Host when debugging another project in the same solution (that check box is enabled by default).




回答6:


It is easier than that.

  • 1.- Open Project properties.
  • 2.- Debug tab
  • 3.- Remove the "/client:"WcfTestClient.exe" appearing in the "comand line arguments" textbox.
  • 4.- Done!



回答7:


If you want to run the project in a browser,

  1. Go to the properties of the project
  2. Click -> Web
  3. In the servers section, mention the iis (iisexpress, local IIS) and specify the URL "http://localhost:11111/"

this will take the program to the browser

To take it only to wcf test client, follow the above steps, but the URL should point to the service. http://localhost:11111/yourservice.svc .. will do.

Thank you




回答8:


To disable WCF Service Test Client

  1. In Solution Explorer right click on "Solution 'YourServiceName' " and go to properties
  2. In "Common Properties" select "startup project"
  3. Enable "Current Selection" Radio button
  4. Click "Apply"
  5. Click "ok"

Now open which ever service you want to run, and hit F5. It will run the current service.



来源:https://stackoverflow.com/questions/8441708/wcf-how-to-disable-wcf-test-client

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!