function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
bon733bon733 

Web Service Integration

I am looking at developing a project that will integration SaleForce with another SaaS provider using webservices. The provider has given me the specs for adding the web references within Visual Studio, but I was wondering if this is possible to do using Apex or another product in SalesForce? Whats the best solution for integrating SalesForce and another SaaS provider?
shillyershillyer

You can use Apex Web Service Callouts to integrate with the other hosted service.

 

Take a look at this article for details.

 

Hope that helps,

Sati

Mehmet_ErgunMehmet_Ergun

You can use the WSDL2Apex parser to auto-create an Apex Class.

Creating a class by consuming a WSDL document allows you to make callouts to the external Web service in your Apex scripts. 

 

In the application, click Setup ➤ Develop ➤ Apex Classes.

2. Click Generate from WSDL 

 

Follow the wizard to parse your WSDL and take it from there. 

bon733bon733

Thanks. I appreciate the feedback.

 

Does anyone know what licensing (e.g. versions) would be involved in order to create this integration and have it run in SalesForce? Is there a run-time fee or do they just need to get the Enterprise version?

Mehmet_ErgunMehmet_Ergun
They would need the Enterprise Edition.