Boban Dragojlovic
11/27/2024, 4:19 PMCeligo AI
11/27/2024, 4:19 PMAI generated answer (using internal Slack threads):To determine which SuiteTalk integrations use a particular WSDL, you would need to examine the code of each integration. The WSDL URL is typically specified in the code where the SOAP client is set up. For example, in Java, you might see something like this:
java
URL wsdlURL = new URL("<https://webservices.netsuite.com/wsdl/v2019_1_0/netsuite.wsdl>");
NetSuiteService service = new NetSuiteService(wsdlURL);
In this case, the WSDL being used is <https://webservices.netsuite.com/wsdl/v2019_1_0/netsuite.wsdl>
.
Please note that the WSDL URL might be stored in a configuration file or environment variable, so it might not be directly visible in the code.
Also, remember that the WSDL URL in the SOAP client setup should be replaced with your account-specific domain. The account-specific domain can be found in NetSuite under Setup > Company > Company Information, in the SuiteTalk (SOAP and REST Web Services) section.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
11/27/2024, 4:19 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.774056077
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.77333343
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.771684051
Celigo AI
11/27/2024, 4:19 PM