• Serch
  • NEWBIE
  • 0 Points
  • Member since 2012

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

We keep getting told that the new eclipse documentation and anything related to it will come after all orgs are updated to Winter '11.  How exactly can we develop against any of the new data types that are already live in our prod, dev, and sandbox orgs without any doc on what exactly is available in those new schema objects?  The release notes are great, but they fall short in actual deliverability of anything other than a description of what's coming.  It's here, but what now, wait a week or two?

when I run the following code:

 

$mySforceConnection = new SforceEnterpriseClient(); $mySoapClient = $mySforceConnection->createConnection(SOAP_CLIENT_BASEDIR.'/enterprise.wsdl.xml'); $mylogin = $mySforceConnection->login($USERNAME, $PASSWORD);

 

 I can log in just fine.  However, when I try to use the partner wsdl:

 

$mySforceConnection = new SforcePartnerClient(); $mySoapClient = $mySforceConnection->createConnection(SOAP_CLIENT_BASEDIR.'/partner.wsdl.xml'); $mylogin = $mySforceConnection->login($USERNAME, $PASSWORD);

 I receive the following response " INVALID_LOGIN: Invalid username, password, security token; or user locked out."

 

I am correctly including the SforcePartnerClient.php or SforceEnterpriseClient.php depending on which method I'm trying to use.

 

Does anyone have an idea as to why I'd be able to log in fine with the enterprise wsdl but not with the partner wsdl?  I'm definitely stumped.

 

Thanks!