Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where has the browser WCF test form gone?

Tags:

.net

wcf

Really liked the convenience of just firing up the web browser and typing in some values to test an ASMX web service, is this no longer possible with WCF?

like image 573
JL. Avatar asked Oct 05 '09 10:10

JL.


People also ask

How to enable WCF test Client?

Inside Visual StudioAfter you create a new WCF service project and press F5 to start the debugger, the WCF Service Host begins to host the service in your project. Then, WCF Test Client opens and displays a list of service endpoints defined in the configuration file.

How to test the WCF service?

Test the ServiceFrom the main menu, click DEBUG > Start Without Debugging. This starts the service and invokes the WCF Test Client window. The left pane shows the endpoint for your service and the operations that are exposed.

Can we test WCF service in soapUI?

Open soapUI and set the following settings. Make sure the service's wsdl path is correct. Double click on Request # node and navigate to the request window on the right. Fill the method parameters denoted by “?”.


2 Answers

You cannot have that, unfortunately.

But you do get the WCF Test Client instead!

It's available from your C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ directory, and it's a GUI tool to attach to WCF services and test them interactively. Quite handy.

As a benefit, the WCF Test Client can also deal with "complex" types, e.g. objects, that you want to pass into service calls - that was never possible on the ASMX test pages.

Otherwise, you'd have to use something like WCF Storm (.NET tool) or SoapUI (Java-based) for your SOAP services.

Marc

like image 122
marc_s Avatar answered Sep 20 '22 20:09

marc_s


Pretty sure you can point the WCFTestClient at anything.

like image 31
Brent Avatar answered Sep 17 '22 20:09

Brent