function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
shikher goelshikher goel 

Unable to tunnel through proxy. Proxy returns "HTTP/1.0 404 Not Found

Hi All,

I am trying to fetch the Salesforce Objects Schema from some other Sandbox. To achieve this ,i am trying to connect salesforce with REST API using this below code :
    try{
      Http h = new Http();
      HttpRequest request= new HttpREquest();
      String endPointURL = 'https://c.cs15.salesforce.com/services/data/v34.0/sobjects';
      request.setHeader('Authorization', 'Bearer '+ UserInfo.getSessionId());
      request.setEndPOint(endPointURL );
      request.setbody(endPointURL );
      request.setMethod('GET');
      HttpResponse hres = h.send(request);
      response = hres.getBody();
      }catch(exception exc)
      {
       system.debug('EXc is '+exc);
       response = exc.getMessage();
      }

 But I am getting the error as "Unable to tunnel through proxy. Proxy returns "HTTP/1.0 404 Not Found".
As far I know this is because of firewalls.but i want to add proxy into my code.
Can someone know,how can we add proxy in apex.???
ShashankShashank (Salesforce Developers) 
You cannot add rpoxy in apex code. You willl have to work with your network team to allow salesforce through the firewall. Please see if this helps:
https://yoafzal.wordpress.com/tag/reverse-proxy/
http://salesforce.stackexchange.com/questions/67892/webcallout-through-proxy