Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Intelligent Payment Automation, powered by BILL (aka Bill.com), lets you automate payments, manage vendor details, and bank account information within NetSuite.
The SuiteApp is available to organizations based in the U.S. with a valid U.S. address, or to global customers (except Canada, China, and Japan) with U.S. business subsidiaries. It only supports payments to vendors operating in the United States.
For more information, visit this thread.
Fail To Create Soap Client
I am using php 5.2.14 and Apache 2.2 in Windows Server 2008. I am trying to use NetSuite Toolkit to access their web services in php. When the toolkit tries to create SoapClient object in nsClient class located in PHPToolkit.php file, it dies on the following line:
$this->client = new SoapClient( $host . "/wsdl/v" . $endpoint . "_0/netsuite.wsdl",
array( "location" => $host . "/services/NetSuitePort_" . $endpoint, "trace" => 1, "connection_timeout" => 5, "typemap" => $typemap, "user_agent" => "PHP-SOAP/" . phpversion() . " + NetSuite PHP Toolkit " . $version));
When I use Chrome browser, I get "Error 101 (net::ERR_CONNECTION_RESET): Unknown error."
Using phpinfo(), it shows that both Soap Client and Soap Server are Enabled for php. Does anyone have any idea what could be the problem?