I think you mixed up string[] and string
Do you want to set a string with length 3?
Actually, in your code behind, you create an array of string, which means three string.
However, your ASP.NET Service returns a string not an array of string.
Just to create public string receive = "";
Then you can do the trick.
Regards,
SteveWong (HongKong)
Please mark post as answer if they help you
The significant problems we face cannot be solved by the same level of thinking that created them