• Abhishek Raj 13
  • NEWBIE
  • 5 Points
  • Member since 2015
  • Salesforce Developer
  • Deloitte Digital


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 2
    Replies
Hi Folks, 

Do we have any free external system which can be used to test Outbound Messages end to end (i.e from firing of outbound messages to receiving callback ) ?

Thanks, 
Abhishek 
Getting below mentioned error.
We can't log you in. Check for an invalid assertion in the SAML Assertion Validator (available in Single Sign-On Settings) or check the login history for failed logins.

IDP : Connected App created, Profile permission given to that connected app, security certifcate created and passed to Sp.

SP : Did all the required SSO settings, added issued certificate

While logging in IDP org, getting above mentioned error. Nothing got tracked in login history as well.

Hi,

While calling out other system's webservices from salesforce org. This 401 invalid seesion id  error is being prompted. Even though i had mentioned Username and password in header of HttpRequest. Is there any workaround to fix it.

Code snippet has been attached below.


Http h = new Http();
Httprequest request = new Httprequest();
request.setEndpoint('https://ap2.salesforce.com/services/apexrest/Accounts/0012800000XNqPO/contacts');
request.setMethod('GET');
String username = 'xxxxx';
String password = 'xxxx';
Blob headerValue = Blob.valueOf(username + ':' + password);
String authorizationHeader = 'Basic ' + EncodingUtil.base64Encode(headerValue);
request.setHeader('Authorization', authorizationHeader);
Httpresponse response = h.send(request);
System.debug(response.getBody());




Any help, would be appreciate.

Thanks,
Abhi

Hi,

How can heroku postgres DB be checked ? How see records and tables in Heroku Postgres ?

Thanks,
Abhi
Hi All,

I have a requirement where i have to clone parent, their child and for each child their subchild.
Can onyone let me know how to process this requirement?
Can anyone explain the concept of wrapperclass?

Anyhelpis appreciated!
Thanks
Sujan