• ErikGEn
  • NEWBIE
  • 0 Points
  • Member since 2006

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 5
    Replies

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

Hi

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
Hi
 I am trying to implement the Saleforce Single sign-On. I download the AuthenticationService.wsdl, generate the skeleton (?) [with Axis]. so now I have the following files
 - deploy.wsdd
-  undeploy.wsdd
-  Authenticate.java
-  AuthenticateResult.java
-  AuthenticationBindingImpl.java
-  AuthenticationBindingSkeleton.java
-  AuthenticationBindingStub.java
-  AuthenticationPortType.java
-  SforceAuthenticationService.java
-  SforceAuthenticationServiceLocator.java
 
First question : what file must I modify to plug it to my current active directory ?
 
after, How I publish my webservices ? Do I build a jar, and generate a webService ?
I really appreciate if anyone have a Java sample to share
 
thanks
  • September 27, 2007
  • Like
  • 0
Is it possible to implement in Salesforce 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
Hi

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
Hello I am looking for a S-Control & API field documentation ?
Can I insert any API field sin my SControl or only the API fields inside my salesforce object where is the scontrol link ?
 
Thanks for your explication
Hi
 
I just install the AppExchange plug-ins, but when I click on the Scontrol, it cannot open the Scontrol editor, I have the following message
"Unable to create editor ID com.appexchange.plugin.editors.SControlEditor: Index out of bounds"
 
I could access to the AppExchangeSchema.....
Anyone could help me ?
 
I have eclipse 3.1.2 and appExchange 1.0.2206
 
Thanks
Hi

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
Could someone please explain to me why I can't stop this message in Firefox: 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

  • August 28, 2006
  • Like
  • 0
"Permission denied to call method XMLHttpRequest.open"
 
I am testing with some cross browser apps.
 
I have an HTML page which I load locally which has the the following :
 
      Code:
var result = sforceClient.login(DebugUser,DebugPass); 

 
This works fine when I test with IE (6.0.2900.) but with FF (1.5.0.4) it throws the above exception.
 
I can't find the call that is throwing the error (the debugger is not really that good in FF) but I have had the same issue when trying to load XML documents which was caused by the following:
 
ThIS Works in IE but not in FF
 

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

Hi
 
I just install the AppExchange plug-ins, but when I click on the Scontrol, it cannot open the Scontrol editor, I have the following message
"Unable to create editor ID com.appexchange.plugin.editors.SControlEditor: Index out of bounds"
 
I could access to the AppExchangeSchema.....
Anyone could help me ?
 
I have eclipse 3.1.2 and appExchange 1.0.2206
 
Thanks
Is it possible to use sforceClient.Login within an sControl rather than sforce.init?  I would like to allow my sControl to login as an adminstrative user as a security work-around, but I keep getting errors when calling the Login method.
 
Thanks.
  • May 03, 2006
  • Like
  • 0