I am trying to use Docusign with Thunderhead in Salesforce.
I created a Thunderhead Template, Generate Report Button, and in the Application Settings of the Thunderhead I added the Docusign Settings.
However, it comes up with an error,
Error:
Web service callout failed: WebService returned a SOAP Fault: The request element was not recognized. faultcode=soap:Client faultactor=
Could you please help me resolve this issue.
Thank You
Regards,
Lavanya
Related
I have a Visual force page that contains a lightning web component hosted in a Salesforce developer sandbox
I am trying the use the 'Lightning Message Service' to communicate with the 'Lightning' component from the visual force page using a 'Message Channel'
I can subscribe to the channel without any problem
When I try to publish a message to the channel, I get the CORS error below in Firefox as well as Chrome browser
Uncaught DOMException: Permission denied to access property "Sfdc" on cross-origin object iframeinterface.js:1
handleOnload https://xxx-dev-ed.my.salesforce.com/support/console/xdomain/30.0/iframeinterface.js:1
onload https://xxx-dev-ed.my.salesforce.com/support/console/xdomain/30.0/crossDomainProxy.html#xdomain_name=s:isClickToDialEnabled&xdomain_targetFrame=s:sfdc-console&xdomain_txnId=s:0&xdomain_pathToOriginProxy=s:https://xxx-dev-ed--c.visualforce.com/crossDomainProxy.html&xdomain_originFrame=s:sfdcSoftphone&version=s:private_api:4
I have added all the urls to the CORS whitelist in Salesforce but nothing seems to help
I have also added these urls to the 'trusted sites' whitelist in Salesforce
Thanks in advance for any tips
Regards
Mathew
I want to generate a access token for salesforce using Azure data factory Web Activity. But I am getting error of grant type invalid or not supported.
URL:https://login.salesforce.com/services/oauth2/token
Header:Content-Type:application/x-www-form-urlencoded
body:username=XXX&password=XXX&grant_type=password&client_id=XXX&client_secret=XXX
Is there any information or content that i have missed in this?
anyone can help?
Congratulations you have solved the problem. The answer is that we have to pass Salesforce Security Token along with password.
I'm trying to build a functionality where user can export contacts from salesforce. I used REST API and the below api to get contacts from user account. I'm able to access contacts from my account but if I login as different user(account which is not used to create the API key) then I'm not able to use the below API, I'm getting 403 forbidden error, am I doing something wrong?
services/data/v20.0/query/?q=SELECT+name,email+from+Contact
I tried to search for document related to this but unfortunately I couldn't able to find one. Can somebody please help me on this?
I am trying to upload images to Google cloud storage using CKeditor4.3.3 image2 plugin from google engine app (php).
POst method return 303 status.
GET returns:
Request URL:http://temporary-blobstore-error.appspot.com/
Request Method:GET
Status Code:500 Internal Server Error
Request Headersview source
I get the following error displayed fromhttp://temporary-blobstore-error.appspot.com/:
Error: Server Error
The server encountered an error and could not complete your request.
Please retry your last submission.
If the problem persists, please contact the person responsible for the application you're using, or, if you are that person, report your problem and mention this error message and the query that caused it.
Following is the Request URL:
[http://v01.mysite.appspot.com/_ah/upload/?aa=ask&cat=2/AMmfu6aYRdoHF3NpG27hJRWyx-RH_Vo5r6NhzqyIK-3YRw7I3OHv_zq6SUYElQKg3phbtFu6GIG_MnltZjS03xNPSDKfA-dmsabvdvdmavdmavmvamdsvmdVMDVAMVmadva-e_rmabsmdvdmsdbmsdbmabdmasbdmasbdmsmdYR2MuM7rBb6dEttPzPYVylmw9/ALBNUaYAAAAAUy-nio2CLZdkumm87rKdUq9oOz1hVJgN/&CKEditor=content&CKEditorFuncNum=0&langCode=en][1]
I'm doing a soap based authentication in my custom Authenticator object. Sometime the soap endpoint may not be available. This in sequence will throw a
SOAP-ERROR: Parsing WSDL: Couldn't load from
and then will be handled by
ErrorHandler::handleFatalError(1, 'SOAP-ERROR: Par...', '/home/bombadil/...', 100)
in lib/Cake/Error/ErrorHandler.php
and then the page will be redirected to lib Cake/View/Errors/fatal_error.ctp
Now, how do I redirect to my login page again and showing a toned down error message instead of throwing the unfriendly page of fatal_error.ctp? I can't afford to create another fatal_error page because I want to redirect again to my login page.
Thanks
NVM, I raise an exception upon unsuccessful connection in the Soap datasource and catch it at my model which doing the Soap based authentication.