Inspecting Force.com IDE traffic

For my studies for the Certified Salesforce Advanced Admin I needed to understand the various code deployment options for the force.com platform including the Force.com IDE based on Eclipse. Installing the IDE was pretty straight forward and creating a force.com project and adding an APEX trigger was likewise easy. As I like to understand what’s going on under the covers I went to inspect the traffic but of course everything is encrypted using TLS so I went to my favorite tool for these kinds of tasks – Charles Proxy. This tool allows inspecting all traffic including being a man in the middle of TLS connections.

To make this work however you need to add the Charles Proxy TLS certificate tot the Java keystore of the Java runtime you are using. Please note that adding the certificate to keychain on Mac is not sufficient as all traffic from Eclipse is through Java. On Mac this is the most likely something like the cacerts file in /Library/Java/JavaVirtualMachines/jdk1.8.0_112.jdk/Contents/Home/jre/lib/security (replace the Java version with your actual version). To import do as follows:

  1. Get a PEM version of the certificate – in Charles this is done from the Help menu
  2. Open a Terminal and run something like this (assuming Java is on your path):
    sudo keytool -keystore /Library/Java/JavaVirtualMachines/jdk1.8.0_112.jdk/Contents/Home/jre/lib/security/cacerts 
    -import -v -alias CharlesProxy 
    -file ~/Downloads/Axiom-IdpCert.cer
  3. Agree to trust the cert – otherwise what’s the point?!
  4. Now restart Force.com IDE, setup Eclipse to proxy through Charles Proxy (in Settings search for proxy and fill in HTTP/HTTPS proxying)
  5. Configure Charles Proxy to enable TLS proxying for both “login.salesforce.com” and the actual hostname of your org depending on whether you are using a custom domain or simply the pod name

Now traffic can be inspected and the requests is visible – both the login request to login.salesforce.com where you can see the endpoints, org id etc. The 15 digit org ID is used to compose the URL for the tooling API so the force.com IDE knows where to send data about classes, triggers etc.

One thought on “Inspecting Force.com IDE traffic”

  1.  You could also try https://developer.salesforce.com/docs/atlas.en-us.eclipse.meta/eclipse/ide_pro_eclipse_logging.htm

    "<span style="color: rgb(51, 51, 51); font-family: DSCDefaultFontRegular; font-size: 15px;">To turn on Debug Mode, add the following parameter to Eclipse’s startup command line or in </span><span class="ph filepath" style="font-family: Monaco, Menlo, Consolas, ‘Courier New’, monospace; color: rgb(51, 51, 51); word-wrap: break-word; font-size: 13.5px; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;">eclipse.ini</span><span style="color: rgb(51, 51, 51); font-family: DSCDefaultFontRegular; font-size: 15px;">:</span>

    <ul class="ul bulletList" style="font-family: DSCDefaultFontRegular; padding: 0px; margin: 0px 0px 23px 25px; list-style-position: initial; list-style-image: initial; color: rgb(51, 51, 51); font-size: 15px;">

    <li class="li" style="line-height: 23px; float: none;"><samp class="codeph nolang" style="font-size: 13.5px; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;">-Dforce-ide-debug=true</samp>

    Like

Comments are closed.