Discussions
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Join us
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