Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Wcf Test Client - entering an Int array

I've found the Visual Studio WCF test client quite useful when it comes to a quick test of my WCF service. This is the test client found in this location relative to your Visual Studio install directory:

\Common7\IDE\WcfTestClient.exe

I have a few service calls that require a parameter of type System.Int32[]
I can't seem to figure out what values to enter against for this parameter as i keep receiving the error

'[value entered]' is not a valid value for this type

Trying to enter the value 27 i have tried the following, but all fails

27
{ 27 }
new System.Int32[] { 27 }

Can anyone please help with how to do this

like image 394
WebDude Avatar asked Apr 30 '10 08:04

WebDude


People also ask

How to pass array in WCF test client?

If you want to enter array values you must first specify the array length - length=2. You then get the drop-down arrow allowing you to enter the individual array values. Took me a while... If you want to enter array values you must first specify the array length - length=2.

How to test WCF service library?

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. In the left pane, double-click the Read() operation.

How do I enable WCF Test Client?

After 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.


1 Answers

Type length=1 in the Value column, a will appear allowing you to add values in the array:

WCF Test Client Preview

like image 137
Darin Dimitrov Avatar answered Oct 10 '22 07:10

Darin Dimitrov