• DILIP KUMAR PASUMARTHY 6
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
Hi All,
There is some problem i am facing during the call out to EUP. When i am trying to make a call out from sales force i am not getting back the response and it is throwing some error which says internal server error with status code as 500. When i made a call from external rest api tools like Postman and dft i got the response back. Below is the code i used to make the call out from developer console.

 // Instantiate a new http object
    Http h = new Http();

     // Instantiate a new HTTP request, specify the method (GET) as well as the endpoint

    HttpRequest req = new HttpRequest();
    req.setEndpoint(''http://eupgateway.yahonline.com:8500');
    req.setMethod('GET');
   req.setHeader('content-type', 'application/x-www-form-urlencoded; charset=UTF-8');

    // Send the request, and return a response
    HttpResponse res = h.send(req);
    system.debug('$$$$$$$$$$$$$ '+res.getbody());
 
Hi All,
There is some problem i am facing during the call out to EUP. When i am trying to make a call out from sales force i am not getting back the response and it is throwing some error which says internal server error with status code as 500. When i made a call from external rest api tools like Postman and dft i got the response back. Below is the code i used to make the call out from developer console.

 // Instantiate a new http object
    Http h = new Http();

     // Instantiate a new HTTP request, specify the method (GET) as well as the endpoint

    HttpRequest req = new HttpRequest();
    req.setEndpoint(''http://eupgateway.yahonline.com:8500');
    req.setMethod('GET');
   req.setHeader('content-type', 'application/x-www-form-urlencoded; charset=UTF-8');

    // Send the request, and return a response
    HttpResponse res = h.send(req);
    system.debug('$$$$$$$$$$$$$ '+res.getbody());
 

As we are moving CRM and other sales&marketing realted applications to SFDC, and i am currently comparing the content management capabilities of sharepoint with SFDC . 

I know that SFDC do have some limitations on content management.and what i am wondering are as follows

1.  is there any best practise of sfdc content management, 

2. how SFDC to integration with content management system, sharepoint etc

3. can sfdc integration with online file sync app, dropbox etc.

 

Thanks

Vincent