English 中文(简体)
How do I develop Salesforce API code for a custom object without Enterprise/Unlimited edition?
原标题:

Background: I m building a small application that will be run daily, pulling data from our own in-house databases and sending it over to our corporate Salesforce instance. I ve built a custom object (called Marqui_Instance) in our Salesforce instance to house the data. The app will be creating a couple hundred of these, and attaching them to various Account records.

The Problem: Our Salesforce instance is Professional edition, which means I can t generate the WSDL for our instance, which makes me think I m not going to be able to develop code that can create/edit/delete Marqui_Instance objects.

Before I start floundering around in the dark, I thought I d post on here for advice. The only thing I can think of is to create an identical object in a Salesforce developer account, and use the WSDL from there... but then when I go to deploy the code in production, will it work? I m scared that the WSDL from my dev account will have some guids or something similar, and my code will only work against the dev account.

最佳回答

If you get your application certified by Salesforce they will provide you with a "Partner Application API" token. Using this when establishing the Salesforce API session will allow your application to work with a professional edition org.

Alternatively, you can also obtain API access to a Professional Edition org by paying an additional fee. You will need to contact your salesforce.com sales person.

Update: Apparently the functionality is enabled by Salesforce internally using the informally named "Black Tab".

See also: Re: Use of the API and Salesforce.com Professional Version

问题回答

Access to the web services API for Salesforce is only available in Developer, Enterprise, and Unlimited Editions.

I believe that you aren t allowed to login to the API, so even if you managed to generate a WSDL it wouldn t work.

See the full edition comparison chart [PDF].





相关问题
IIS 6.0 hangs when serving a web-service

I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a separate application or using cassini from Visual studio. Once I deploy on the ...

ASP.net web services

I am using a web service which sets the Thread.CurrentPrincipal object while logging in and soon later when another webmethod of the same web service accesses Thread.CurrentPrincipal, its different/...

Unity Container Disposing and XML Web Service

I am registering some wrapers over un-managed objects in container. How can I dispose of them at the end of the container s lifetime? Please bear in mind I have an XML Web service.

SharePoint : web service permission error

I have a sharepoint site, and I am calling a standard sharepoint web service. I create the web service request like this : wsDws.Url = this.SiteAddress + @"/_vti_bin/Dws.asmx"; When I use ...

热门标签