In continuation to the existing question: Can nusoap return array of string?
I want to know the code for function GetAllNews() to return string of array $stack as data type "tns:ArrayOfString"
Mr. Oliver Salzburg gave the code only for the declaration of type ArrayOfString but how do I convert a normal php array of string data type to user defined data type ArrayOfString ? So that I can call this data in my C# code as:
wService.Service WebS = new wService.Service();
wService.ArrayOfString StringArray = new wService.ArrayOfString();
StringArray = WebS.GetAll();
string [] All= StringArray.itemName[0];
My aim is to return an array of string from php/nuSOAP to my C# code.