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.
Perl example webservices of Netsuite
Using modules generated from SOAP::WSDL (from http://search.cpan.org/~mkutter/SOAP-WSDL-2.00.10/) against https://webservices.netsuite.com/wsdl/v2_6_0/netsuite.wsdl
But my attempts at logging in are failing:
my $service = MyInterfaces::NetSuiteService::NetSuitePort->new();
my $response = $service->login( {
passport => { # MyTypes::Passport
email => "username@company.com", # string
password => "pswd", # string
account => "31415" # string
},
},,
); #MyElements::loginResponse
Logging into this account from Java (using the downloaded sample) works.
Any ideas or sample code for me to try?
Thanks in advance
pam at addgene.org