• vamso
  • NEWBIE
  • 25 Points
  • Member since 2011

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 6
    Replies

Hi Salesforce experts,

 

 

I have implemented Federated SSO in salesforce. i have tested login from sso login url using my ADS user  id and password and i am successful.

 

I tried to logging in from login.salesforce.com using my salesforce user id and password. i am successful to login from this too.

 

if a user is able to login throug login.salesforce.com after implementing federated sso in salesforce, there is no meaning at all for this implementation.  because SSO gives company admin to control access to all applications but here admin can not control salesforce user even after sso implementation.

 

I tried emplyoing a trigger on user account which changes the password everytime time user record is being updated as below so that users will not be known what is their salesforce password as shown below

 

trigger testtrigger on User ( before update )
{
       Double ran=Math.random();
       System.setPassword('005E0000000cSO9','asdfqwer'+ran);
       system.debug(' forgot   '+'asdfqwer'+ran);

}

 

This trigger is getting executed when ever the user record changes but the problem is when user clicks on forgot password and he reset the password , this trigger is not getting called.

 

at this moment, i dont have any option to enforce the users to login from sso login page.

 

Can anybody solve this problem.

 

Thanks

  • June 23, 2012
  • Like
  • 0

Hi,

 

i have a doubt about version control system with salesforce. we can integrate any version control system with eclipse/force.com ide so we can control the apex and VF changes and we can deploy last known good development efforts.

 

my question is, can we do the same for declarative changes in salesforce??

 

Say i have created a validation rule, and  then tested. it is working fine. now i have chaged some thing else in that now it is not working properly after changes. can i revert it back using version control system.?

 

please clarify.

 

Thanks

VAMSO

  • January 16, 2012
  • Like
  • 0

Hi,

 

I am trying to make http call out to a rest web service like "https://************.com/*******/*****/***"

my code snippet is like

 

httpreq.setendpoint(url);

httpreq.setclientcertificatename('certificate name');

httpsres= http.send(httpreq);

 

i have uploaded a CA certificate.  if i exclude that certificate it is giving bad certificate, if i include the certificate it is giving internal server error 500.

 

Experts please help. i need to develop this soon to deploy ... Please help

  • June 20, 2011
  • Like
  • 0

Hi All,

 

i am unable to develop visualforce page and controller for the below form

problem

 

out of 4 radio buttons only one can be selected and based on the selection i should get the

dropdown list values in the controller

 

can some one please help me i am tired of doing it for last 4 days

please help me

  • June 05, 2011
  • Like
  • 0

Hi Salesforce experts,

 

 

I have implemented Federated SSO in salesforce. i have tested login from sso login url using my ADS user  id and password and i am successful.

 

I tried to logging in from login.salesforce.com using my salesforce user id and password. i am successful to login from this too.

 

if a user is able to login throug login.salesforce.com after implementing federated sso in salesforce, there is no meaning at all for this implementation.  because SSO gives company admin to control access to all applications but here admin can not control salesforce user even after sso implementation.

 

I tried emplyoing a trigger on user account which changes the password everytime time user record is being updated as below so that users will not be known what is their salesforce password as shown below

 

trigger testtrigger on User ( before update )
{
       Double ran=Math.random();
       System.setPassword('005E0000000cSO9','asdfqwer'+ran);
       system.debug(' forgot   '+'asdfqwer'+ran);

}

 

This trigger is getting executed when ever the user record changes but the problem is when user clicks on forgot password and he reset the password , this trigger is not getting called.

 

at this moment, i dont have any option to enforce the users to login from sso login page.

 

Can anybody solve this problem.

 

Thanks

  • June 23, 2012
  • Like
  • 0

Hi,

 

Can we implement State Model in SFDC? If so how can we.

 

State Model in the sense Consider a scenario Status Field with three Picklist Values Open, InProgress and Closed

 

Possiblity to change the Status

 

From    To

Open-   InProgress

Open-   Closed

 

System should not allow to change the Status

 

From                To

InProgress-    Open

Closed-           Open

Hi,

 

i have a doubt about version control system with salesforce. we can integrate any version control system with eclipse/force.com ide so we can control the apex and VF changes and we can deploy last known good development efforts.

 

my question is, can we do the same for declarative changes in salesforce??

 

Say i have created a validation rule, and  then tested. it is working fine. now i have chaged some thing else in that now it is not working properly after changes. can i revert it back using version control system.?

 

please clarify.

 

Thanks

VAMSO

  • January 16, 2012
  • Like
  • 0

Hi there,

 

Does the IP Restrictions that we set at the Setup->Security Controls->Network Access and at the Profile level affect the salesforce sites? We are looking into see if we can make use of Sites, but we want anyone outside of our organization to access this page, but in our Salesforce environment we have IP restrictions at the org level and at profile level as well. 

 

Thank You.

Hi,

 

I am trying to make http call out to a rest web service like "https://************.com/*******/*****/***"

my code snippet is like

 

httpreq.setendpoint(url);

httpreq.setclientcertificatename('certificate name');

httpsres= http.send(httpreq);

 

i have uploaded a CA certificate.  if i exclude that certificate it is giving bad certificate, if i include the certificate it is giving internal server error 500.

 

Experts please help. i need to develop this soon to deploy ... Please help

  • June 20, 2011
  • Like
  • 0

Hi All,

 

I have ip rescrition issue. My ip address is 112.111.X.Y , Every time value of X and Y has changed and i need to daily enter IP in SFDC.

 

Does any know any solution for this , i tried this also   112.111.0.0 to 112.111.255.255 , but it not working.

 

Thanks,

Deepak