Questions tagged [wsdl]
See the following for more information about WSDL (Web Services Description Language)
262 questions
0 votes
0 answers
25 views
FuseIT WSDL Parser error "an item with the same key has already been added
I am trying to generate Apex classes from WSDL files and firstly getting a warning after selecting a WSDL file and if I continue on, I get this error after clicking Generate Apex Classes button ...
0 votes
0 answers
51 views
Generated Apex class from WSDL using sfmetadataextractor doesn't include method extensions
I'm using a tool called sfmetadataextractor to generate an Apex class from a Metadata WSDL file. The Apex class is being created successfully, but none of the methods in the class are extending ...
0 votes
0 answers
119 views
Send request with OAuth token in header SOAP WSDL
I am trying to send a request to a SOAP Service with OAuth authentication. The SOAP Service is on an external system outside Salesforce and i want to send the request from Salesforce. I have the WSDL ...
0 votes
1 answer
144 views
How can I test Sandbox related functionality without using Production itself as my test environment?
I am trying to build tooling around sandbox management but pretty much got stumped by how I would even test this without using Production. My client app is intended to be build on Java and using the ...
-1 votes
1 answer
73 views
Enterprise WSDL and MFA [closed]
I use an enterprise WSDL to connect to Salesforce as API user Will this require MFA to connect in 2023? Is MFA required for my integration users? Details of MFA enablement can be found here
1 vote
1 answer
744 views
Error: Failed to parse WSDL: Unable to find complexType for {...}string
My mission is the following : integrate a web service (SOAP protocol) into a dev Salesforce org. I discovered the different way to integrate into Salesforce (reading official Salesforce documentation (...
1 vote
0 answers
139 views
Fails to update ContentVersion with Java SOAP API
I am querying some records of type ContentVersion, changing Title then updating that records through ContentVersion contentVersionToUpdate = new ContentVersion(); contentVersionToUpdate.setTitle(...
2 votes
0 answers
77 views
How do I perform Upsert using Enterprise WSDL v54?
Attempting to use the Upsert function contained in the Enterprise WSDL (Salesforce Sandbox) version 54. Unfortunately not very familiar with SF development or Upserts, the documentation on the ...
0 votes
1 answer
1k views
Unable to login to Salesforce using SOAP API
I am currently working on a project to interface out .Net Core 3.1 application to Salesforce. Unfortunately I am not very familiar with Salesforce and their SOAP API. I have been attempting to find ...
0 votes
1 answer
3k views
What's the most efficient way to generate XML using apex? [closed]
Im currently using XmlNode and Document classes in apex to generate XML from sObject records. It works great for low volumes (up to 1000 records). However after that, I get CPU timeout. I can't see a ...
1 vote
0 answers
75 views
update sobject class
I'm trying to update sobject from one to another sf org. I import my custom wsdl sobjectEnterpriseSoapSforceCom and sobjectEnterpriseSoapSforceCom, i pass login but i cannot able to update an sobject. ...
1 vote
1 answer
333 views
Unable to download Metadata WSDL from Org
Related to this other question Discover Schema of Source + Metadata XML formats I am trying to download the Metadata API WSDL file from the Orgs URL https://ServInstance.salesforce.com/services/wsdl/...
0 votes
0 answers
730 views
Metadata Api: "Web service callout failed: Unable to parse callout response. Apex type not found for element name"
I'm trying to build my own metadata wrapper class to call MD-API directly from apex since the apex-mdapi solution by Andrew Fawcett on Github is kinda outdated. I downloaded the current metadata WSDL (...
0 votes
1 answer
4k views
Screen Flow fails to create record for custom object
I created a new custom object and added it to a screen flow. That flow is using the Create Records step to try an create a new custom object. The flow fails with the following error: This error ...
0 votes
0 answers
177 views
Session Id generation by third party to call apex
I’ve developed a webservice which basically allows third party to update field Processed_status__c on opportunity object. I’ve generated opportunityUpdate.wsdl file which I would share with them. ...