Discussions
Need help with getList()
OK. I promise I'm not a complete idiot (some parts are missing).
Developing my first .NET C# project with Netsuite's Webservices.
I've got my webservices client logged in and I'm attempting to execute my first getList() method.
Writing my code based on the examples in the Webservices Operations definitions, I pass the getList() method two arguments: an array of numbers as strings, and the boolean false (just like it is in the examples).
My code:
****************************
string reqKeys = "10,15";
string [] nsKeys = reqKeys.Split( new Char[] {','} );
service.getList( nsKeys , false );
****************************
I get this error:
c:\inetpub\wwwroot\NSWSClient\dev\default.aspx.cs(39): No overload for method 'getList' takes '2' arguments