-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
7Questions
-
5Replies
SAML and salesforce
I am a question concerning your SAML decision
(ref : http://blog.sforce.com/sforce/2005/07/sforce_single_s.html)
I am full agree with you concerning the SAML issue to implement SAML when you are a SaaS website, but you wrote "Supporting SAML on our website would have been easy. ".
What did you mean with supported SAML would have ben Easy
are you talked about supported SAML document ? accept an SAML RESPONSE assertion only?
How could you easily implemement SAML if you cannot define which Identity provider requested ? Any of your customers will have a specific identity provider/management, and the inital (first) request do not provide you the user, so you cannot find the identity provider....
So how supported SAML in your website would have been easy ?
Thanks
-
- ErikGEn
- October 18, 2007
- Like
- 0
- Continue reading or reply
SSO - Delegated Authentication
Anyone know the meaning of the login form fields ?
un => is the login yser name
pw => the password
startUrl ==> ???
LogoutUrl ==> where the logout in Salesforce will redirect (?)
ssoStartPage ==> ???
jse ==> ???
rememberUn ==> ????
Thanks
-
- ErikGEn
- October 05, 2007
- Like
- 0
- Continue reading or reply
Java/ SSO implementation
- undeploy.wsdd
- Authenticate.java
- AuthenticateResult.java
- AuthenticationBindingImpl.java
- AuthenticationBindingSkeleton.java
- AuthenticationBindingStub.java
- AuthenticationPortType.java
- SforceAuthenticationService.java
- SforceAuthenticationServiceLocator.java
-
- ErikGEn
- September 27, 2007
- Like
- 0
- Continue reading or reply
a combo list field with the ID label and the LABEL different
I would like do by example
ID LABEL
USA United States
EU Europe
Thanks
-
- ErikGEn
- August 24, 2006
- Like
- 0
- Continue reading or reply
Rollover on a field (HTML tag : ALT or TITLE)
I would like know how implement a rollover or bullet, when the mouse is on a area field, for provide short definition or help.
In html, it is possible with the Title command. Is it possible in Saleforce.com in the custom field ?
Thanks
-
- ErikGEn
- August 24, 2006
- Like
- 0
- Continue reading or reply
S-Control & API field documentation - what API field use in the scontrol
-
- ErikGEn
- May 11, 2006
- Like
- 0
- Continue reading or reply
install on eclipe of the AppExchange Plugin
-
- ErikGEn
- May 04, 2006
- Like
- 0
- Continue reading or reply
SSO - Delegated Authentication
Anyone know the meaning of the login form fields ?
un => is the login yser name
pw => the password
startUrl ==> ???
LogoutUrl ==> where the logout in Salesforce will redirect (?)
ssoStartPage ==> ???
jse ==> ???
rememberUn ==> ????
Thanks
- ErikGEn
- October 05, 2007
- Like
- 0
- Continue reading or reply
ERROR : uncaught exception: Permission denied to call method XMLHttpRequest.open
I've tried the solution that everyone here suggests (sforceclient.apptype = sforce.application.type.firefox) and thats not helping either.
This is my code:
function scontrolmain(IsStatic)
{
try
{
sforcecleint=GetSForceClient();
}
catch(ExceptObject)
{
sforcecleint=null;
}
if(sforcecleint != null)
{
if(window.XMLHttpRequest)
{
sforcecleint.appType=GetSForceFFApplicationType();
}
loginresult=sforcecleint.login("xxx@xxx.com","xxx",null);
showmessage(loginresult.toString());
showmessage(sforcecleint.query("Select Id, LastName, FirstName From Contact",null).toString(null));
}
else
{
window.setTimeout(scontrolmain,100,"javascript");
}
}
Message Edited by Arman on 08-27-2006 06:54 PM
Message Edited by Arman on 08-27-2006 06:54 PM
- Arman
- August 28, 2006
- Like
- 0
- Continue reading or reply
Ajax 3.3 Beta - FireFox 1.5 - "Permission denied to call method XMLHttpRequest.open"
var result = sforceClient.login(DebugUser,DebugPass);
Code:
Tester= getXMLHTTPRequest(); Tester.open("get","Sample.xml",false) Tester.send();
Works fine in IE but in FF it throws the same error. FF, it seems, demands a NULL parameter in the send.
Code:
Tester= getXMLHTTPRequest(); Tester.open("get","Sample.xml",false) Tester.send(null);
This works with both . Perhaps this is the issue here as well?
I have no problem using
Code:
sforceClient.init("{!API_Session_ID}","{!API_Partner_Server_URL_70}");
Within an SControl on FF 1.5, so I don't think this is super-urgent, but it would improve things on the testing front here as we have other surpise errors caused by cross-domain calls that are making life difficult enough!
Any comments or suggestions welcomed.
Thanks
Gareth.
Message Edited by Gareth Davies on 06-14-2006 03:30 PM
- Gareth Davies
- June 14, 2006
- Like
- 0
- Continue reading or reply
install on eclipe of the AppExchange Plugin
- ErikGEn
- May 04, 2006
- Like
- 0
- Continue reading or reply
sforceClient.Login within an sControl
- Jesip
- May 03, 2006
- Like
- 0
- Continue reading or reply