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
CRMfusion - GWCRMfusion - GW 

Strange behavior using frontdoor.jsp from the API

For several years the following URL has been able to be called from my .NET client application with no problems:

 

servURL + '/secur/frontdoor.jsp?sid=' & binding.SessionHeaderValue.sessionId.ToString + '&retURL=" + '/' + objectID

 

where the servURL is accessed from the binding.URL and the objectID is the object that I want to view in Salesforce

 

For some strange reason it now randomly goes to a login screen instead of using the sessionID provided and going straight to the object.

 

Has there been a change in API 21 that would cause this?

 

Regards;

GlennW

marie.tournemarie.tourne

Hi ! Did you resolve your problem?

I am trying to log users to a site using session id and I am redirected to the standard login page.

 

CRMfusion - GWCRMfusion - GW

Here is the url you need to send:  

 

https://na2.salesforce.com/secur/frontdoor.jsp?sid=SESSIONID&retURL=/OBJECTID

 

In this case the server is na2 but you can get the server address when you login with the WSDL

 

Just substitute you session id for SESSIONID and the Id of the object you want to view in sfdc where the OBJECTID is

 

GlennW