Visual Studio Wcf Test Client - Int array input

I found that the Visual Studio WCF test client is quite useful when it comes to quickly checking my WCF service. This is the test client found at this location relative to your Visual Studio installation directory:

\ Common7 \ IDE \ WcfTestClient.exe

I have several service calls that require a parameter of type System.Int32 []
I canโ€™t figure out what values โ€‹โ€‹to enter for this parameter as I keep getting an error

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

Trying to enter a value of 27, I tried the following, but all failed

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

Can anyone help with how to do this

+79
visual-studio wcf wcftestclient
Apr 30 '10 at 8:17
source share
1 answer

Enter length=1 in the Value column, โ–ถ will appear, allowing you to add values โ€‹โ€‹to the array:

WCF Test Client Preview

+169
Apr 30 '10 at 8:28
source share



All Articles