I'm trying to use the WCF test client to debug a web method and the method expects 2 byte arrays as part of its input.
For now, I've just been using the debugger and placing breakpoints right before the passed values get used, and setting them with the visual studio watch window.
Is there an easy way to set the values for each byte of a byte array using WCF test client?
I know you can specify the length of the array by typing "length=100" or similar, but that only sets the size of the array. You then have to click the drop down and enter the value for each and every byte one by one.
Does anyone have experience entering values for arrays when using the WCF test client?