Updating salesforce wsdl dynamically with C # code

I have a .net application that dynamically creates a custom salesforce object, but when I use this object in my application, it does not receive it. what I want to do, I want to update wsdl as soon as I create a custom object.

+6
source share
1 answer

You are probably using Enterprise WSDL, which contains stubs for all objects. If you expect changes to objects (as you do here), you should use the partner WSDL. The WSDL partner does not contain stubs for objects; instead, the partner's WSDL file defines a single, shared object (sObject) that represents all the objects.

For more information, see the "Using the WSDL Partner" section of Salesforce.com API documents.

+3
source

All Articles