Forum Discussion

nunnikrishnan's avatar
nunnikrishnan
New Contributor
7 years ago

Anyone got SOAP execute for Salesforce working?

I am getting error:
Failure: An exception occurred while executing the SOAP request, Reason: Could not send the SOAP request, Resolution: Verify that the template is correct, the substituted values are valid and the provided envelope matches the namespaces that are required by the targeted service

how an basic account should be configured? Do we need to give api token also in password on setting up account?
Do we need to have separate login call for salesforce login to get session ID?

Any help is much appreciated.

7 Replies

  • darshthakkar's avatar
    darshthakkar
    Valued Contributor

    Agreed, you can use a mapper for conversion to integer, string (fieldname.toString())

  • Pretty's avatar
    Pretty
    New Contributor III

    @koryknick @darshthakkar @ljupcho_machkovski

    Here exactly I am working on ,

    We have data in json file.

    {
    “Id”: “1076”,
    “jobTitle”: “Software engineer”,
    “firstName”: “David”,
    “lastName”: “villey”,
    “fullName”: “Davidvilley”,
    “email_N”: “Davidvilley@gmail.com”,
    “telephoneNumber”: “+1-8474987109”
    }

    those are the data which I mentioned above,

    firstly we will import this data from json file , But here we don’t have any datatype for this data so I need to add datatypes, from adding the datatype I can validate the data.

    For example If we add the datatype for firstName as string(4) in this case If we pass 5 character ex:David It should through an error. I need to store this error msg in separate output so to get this result i am trying to add the datatypes.

    I hope this make sense.

    Thanks in advance.