Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Getting error during logging in into webservice
string accountId ="12345";
Uri myUri = new Uri("https://webservices.netsuite.com");
serv.CookieContainer = new CookieContainer();
serv.CookieContainer.SetCookies(myUri, "ACCOUNT=" + accountId);
// accountId is the string value of the NetSuite account being logged
Passport passport = new Passport();
passport.email ="___@_______.com";
passport.password ="____";
passport.account="_____";;
Status status2 = (serv.login(passport)).status;
getting the following error:
com.netledger.dto.v2_5.faults.InvalidVersionFault: You must specify the ACCOUNT cookie in the http header in order to login through Web Services. Please see the FAQs on the WS portal for more information.