2

I have a web service with this method:

[WebMethod]
public int[] stringTest(string[] tString)
{

    int numberOfStrings = tString.Length;
    int[] returnS = new int[numberOfStrings];
    for (int i = 0; i <= numberOfStrings; i++)
    { 
        returnS[i] = 1;

    }
    return returnS;
}

And then I'm trying to pass an array of strings to it from a client program as following:

var client = new WebServiceSample.WebService1SoapClient();
string[] parameterNames = { "Windsensor","Temperature sensor"};
test = client.stringTest(parameterNames);

But I'm getting these errors:

The best overloaded method match for 'SoapWebServiceClient.WebServiceSample.WebService1SoapClient.stringTest(SoapWebServiceClient.WebServiceSample.ArrayOfString)' has some invalid arguments

and

Argument 1: cannot convert from 'string[]' to 'SoapWebServiceClient.WebServiceSample.ArrayOfString'

What is wrong with my code?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
user1754598
  • 63
  • 1
  • 2
  • 12

2 Answers2

3

Try this

SoapWebServiceClient.WebServiceSample.ArrayOfString arrString = SoapWebServiceClient.WebServiceSample.ArrayOfString();

arrString.AddRange(parameterNames);

or

arrString.Add(....); //if that exists

Check these links

Hope that helps!

Community
  • 1
  • 1
codingbiz
  • 26,179
  • 8
  • 59
  • 96
0

A simple way is:

In JavaScript build a new array:

var myArray = new Array();
myArray.push([value1, value2,...]);

In C# just create an ICollection parameter to get your matrix:

[WebMethod(EnableSession = true)]
public MyMethod[] GetMatrixFromJavascript(System.Collections.ICollection myArray)
{ 
   ... 
}
Patrick
  • 5,526
  • 14
  • 64
  • 101