• Renish Ghetia
  • NEWBIE
  • 0 Points
  • Member since 2015

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

Hello,

i am using below code for login into salesforce from php and perform insert,update, delete using that connection object. 

$mySforceConnection = new SforcePartnerClient();
$mySforceConnection->createConnection(SALESDIRECTORY . "partner.wsdl.xml");
$mySforceConnection->login(USERNAME, PASSWORD . SECURITY_TOKEN);


now if the USERNAME changes password in salesforce than above code will not login user using old PASSWORD.

how to overcome this issue ? 

is there any other method for login and getting connection object? 

 

Hello,

i am using below code for login into salesforce from php and perform insert,update, delete using that connection object. 

$mySforceConnection = new SforcePartnerClient();
$mySforceConnection->createConnection(SALESDIRECTORY . "partner.wsdl.xml");
$mySforceConnection->login(USERNAME, PASSWORD . SECURITY_TOKEN);


now if the USERNAME changes password in salesforce than above code will not login user using old PASSWORD.

how to overcome this issue ? 

is there any other method for login and getting connection object?