Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
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