May, 2009 Archive

Ability to unite people around a politics of purpose, who ?

His story is the American story — values from the heartland, a middle-class upbringing in a strong family, hard work and education as the means of getting ahead, and the conviction that a life so blessed should be lived in service to others. With a father from Kenya and a mother from Kansas, Mr. XYZ [...]

Apex Handy Code to fetch hostname, relativeURL, absoluteURL

Relative path for your Visualforce page: ApexPages.currentPage().getUrl(); Hostname of your salesforce org: ApexPages.currentPage().getHeaders().get(‘Host’); The complete code for constructing the absolute path for a Visualforce page is below: String hostname = ApexPages.currentPage().getHeaders().get(‘Host’); String pageUrl = ApexPages.currentPage().getUrl(); String absolutePath = ‘https://’ + hostname + pageUrl; Ack : Jesse Lorenz