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
Bibek RathBibek Rath 

Connecting from Salesforce.com to another website using SSO and passing values

Hi,

 

I have the following requirement:

 

1. There is a External web site that should be shown when user clicks a link on opportunity detail page.

 

2. Initially this web page expects username and password. How we can authenticate the user  without asking to enter username and password when he navigates to this web page? (SSO from Salesforce.com to other secured websites).

 

3. This external web page should get auto populated with the info of Opportunity object from where it is initiated.

 

Your help is highly appreciated.

 

Thanks

Bibek

 

DonSpilkyDonSpilky

1. Create a visualforce custom page and add that into the page layout

2. If you are going to use a default username/password for SSO, then you can create a custom setting with that info, and pass that in the URL.  Otherwise, you can add username and password fields to the USER object, and pass that in the URL

3. You can pass these fields as URL parameters (ie foo.com?name={!opportunity.name}), or you can create a webservice that the external webserver can call with all the details.

 

hope this helps.....

Bibek RathBibek Rath

Do we have to enable and configure single sign on for this purpose?

DonSpilkyDonSpilky

SSO is really only used to get FROM external webpage into Salesforce, not to display an External page IN salesforce.

Bibek RathBibek Rath

Thanks..!!

Bibek RathBibek Rath

One more question, if i do not want to pass the details in the URL, what are the other options for authentication?

 

Thanks

Bibek

Am S.ax1611Am S.ax1611

hi every1,

 

i am new to salesforce n i need to pass d opportunity name and amount value to some external website.My visualforce page is same as standard visualforce page.how  can i do this..i have to use query string n pass those value through URL.

 


If any1 know this pls share d code also,how i have to do,bcs i m a beginner.

 

Thanx in Advance

XexiXexi

Hi,

 

I have similar problems.


I need through a custom button Salesforce redirect to an external website and automatically authenticate (auto login). The username and password are not always the same and the external website, only receives POST.

 

Thanks,

 

Sergio.

 

RESOLVED:

 

<apex:page standardController="Contact" >

<script>

//helper function to create the form
function getNewSubmitForm(){
var submitForm = document.createElement("FORM");
document.body.appendChild(submitForm);
submitForm.method = "POST";
return submitForm;
}

//helper function to add elements to the form
function createNewFormElement(inputForm, elementName, elementValue){
var newElement = document.createElement("input");
newElement.setAttribute('type',"text");
newElement.setAttribute('name',elementName);
inputForm.appendChild(newElement);
newElement.value = elementValue;
return newElement;
}

function createFormAndSubmit(){
var submitForm = getNewSubmitForm();
createNewFormElement(submitForm, "username", "***");
createNewFormElement(submitForm, "password", "***");
submitForm.action= "http://extranet.groupalia.com/user/login";
submitForm.submit();
}

</script>

<input type="button" value="Click to create form and submit" onclick="createFormAndSubmit()"/>

</apex:page>