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.
Only one request may be made against a session at a time
During development I encountered this error:
com.netledger.dto.v2_0.faults.InvalidSessionFault: Only one request may be made against a session at a time
Fine. So I put all NetSuiteService requests behind locks. And it still (randomly) happens. I even print out when each thread entered and exited the NetSuiteService code:
THREAD 21399 ENTERED LOCK
THREAD 21399 LEFT LOCK
THREAD 11932 ENTERED LOCK
THREAD 11932 LEFT LOCK
THREAD 25188 ENTERED LOCK
THREAD 25188 LEFT LOCK
THREAD 23367 ENTERED LOCK
Unless I'm insane, it's just you, Thread 23367. I don't know what your problem is.
Where is this exception getting thrown from? Is this NetSuite's servers responding too slowly? I'm tempted to just throw an arbitrary Thread.Sleep() after each request, because I've just about had it with this API.