From a visualforce page, I need to retrieve our organization's salesforce instance's URL, and not the visual force URL.

For example I need https://cs1.salesforce.com instead of https://c.cs1.visual.force.com

Here's what I've tried so far and the outcome I got:

Accessed the Site global variable from the VF Page:

<apex:outputText value="{!$Site.Domain}" /> returns null

Sidenote: Everything in $Site.xxx seems to return null.

From the Apex controller:

public String getSfInstance()
{
  return ApexPages.currentPage().getHeaders().get('Host');
}

and

public String getSfInstance()
{
  return URL.getSalesforceBaseUrl().toExternalForm();
}

returns c.cs1.visual.force.com and https://c.cs1.visual.force.com, respectively.

Question: How do I retrieve what I want: https://cs1.salesforce.com?

link|improve this question

20% accept rate
1  
$Site is only for salesforce sites (developer.force.com/sites) – mmix Feb 21 at 8:40
Also please review your other questions and award answers and up-votes where applicable. People make effort to help and it's always nice to be appreciated. Low accept rate deters a lot of people. – mmix Feb 21 at 9:21
feedback

3 Answers

This is a known issue, the URL.getSalesforceBaseUrl() should provide this information but it does not. However in reality this has very limited functional impact.

Their instance and apex domains are interchangeable in the sense that requesting a URL that does not belong to one gets redirected to the other.

for example if you seek /apex/myPage from cs1.salesforce.com you'll get redirected to c.cs1... and vise versa requesting /ID from apex domain will get you redirected to instance domain (unless detail action has been overridden)

If this does not help you there is one workaround, albeit very ugly :) create a custom object to store the base url and create before insert/update trigger which will set the baseURL field to URL.getSalesforceBaseUrl().toExternalForm(). Apparently trigger is the only place on the platform where this will work (aside from execute anonymous which is not of much use). When setting up the app insert something into that table and later use SOQL to retrieve base url.

link|improve this answer
feedback

Here is an Apex property that you can throw into a Utility class that will reliably return the instance for your org. Using this, you can easily construct your organization's Salesforce URL by appending ".salesforce.com" to the Instance:

public class Utils {

 // Returns the Salesforce Instance that is currently being run on,
 // e.g. na12, cs5, etc.
public static String Instance {
    public get {
        if (Instance == null) {
            //
            // Possible Scenarios:
            //
            // (1) ion--test1--nexus.cs0.visual.force.com  --- 5 parts, Instance is 2nd part
            // (2) na12.salesforce.com      --- 3 parts, Instance is 1st part
            // (3) ion.my.salesforce.com    --- 4 parts, Instance is not determinable

            // Split up the hostname using the period as a delimiter
            List<String> parts = System.URL.getSalesforceBaseUrl().getHost().replace('-api','').split('\\.');
            if (parts.size() == 3) Instance = parts[0];
            else if (parts.size() == 5) Instance = parts[1];
            else Instance = null;
        } return Instance;
    } private set;
}

// And you can then get the Salesforce base URL like this:
public static String GetBaseUrlForInstance() {

     return 'https://' + Instance + '.salesforce.com';

}

FYI: For Scenario (1), the 1st of the 4-part hostname can get really complicated, but you'll always be able to find the Instance name as the 2nd part. For those who are interested, the syntax of Scenario 1 follows this pattern:

     <MyDomain>--<SandboxName>--<Namespace>.<Instance>.visual.force.com
link|improve this answer
feedback

Why don't you do a regex on the c.cs1.visual.force.com ? Replace c. with '' and visual.force with salesforce...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.