Discussions
Check out Oracle NetSuite upcoming events and conferences here
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Update your Profile with your Support type to get your Support Type badge.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Get ready to take on exciting new challenges and become the next SuiteMaster of the Month!
Join the largest gathering of the NetSuite Community at SuiteWorld in Las Vegas, September 9-12! Discover cutting-edge innovations, attend insightful sessions, network with industry leaders, and elevate your business to new heights. Register here!
timeouts?
i keep getting timeouts now. i remember having trouble with that before, and it was because i was missing a cookie in the SOAP header, so i added this code:
Sub setCookie(ByVal strAcct As String)
Dim myUri As Uri = New Uri("https://webservices.netsuite.com")
service.CookieContainer = New System.Net.CookieContainer()
service.CookieContainer.SetCookies(myUri, "ACCOUNT=" & strAcct)
End Sub
is this obsolete? currently, my code uses:
service.CookieContainer = New System.Net.CookieContainer()
right before i invoke setCookie, so it looks like it's being overwritten anyway. does anyone know for sure?
0