• Hotch
  • NEWBIE
  • 0 Points
  • Member since 2005

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

We recently moved our web server from a simple solution to rackspace.  We now have the latest PEAR, SOAP, and PHP packages.  However, SOAP calls to Salesforce are returning poorly formatted arrays.  A call that would return a list of four contacts in one array on our old server is returning the four contacts nested in a multi-dim array on the new server.  Has anyone seen this before?  Any help would be much appreciated as I've searched all over this board and the web to find some hints, but found none.  I've attached sample query results below.  Thanks.

Old Server Results for all contacts in Goleta, CA:
Array
(
[0] => stdClass Object
(
[type] => Contact
[Id] => 00330000002jE3WAAU
[Name] => Susan Rudnicki
[MailingCity] => Goleta
)

[1] => stdClass Object
(
[type] => Contact
[Id] => 00330000002jGWQAA2
[Name] => Eric Heidner
[MailingCity] => Goleta
)

[2] => stdClass Object
(
[type] => Contact
[Id] => 00330000002jFfyAAE
[Name] => Mark Krilanovich
[MailingCity] => Goleta
)

[3] => stdClass Object
(
[type] => Contact
[Id] => 00330000002jFJTAA2
[Name] => Adam Gilberti
[MailingCity] => Goleta
)

)


New Server Results for all contacts in Goleta, CA:
Array
(
[0] => Array
(
[0] => Array
(
[0] => stdClass Object
(
[type] => Contact
[Id] => 00330000002jE3WAAU
[Name] => Susan Rudnicki
[MailingCity] => Goleta
)

[1] => stdClass Object
(
[type] => Contact
[Id] => 00330000002jGWQAA2
[Name] => Eric Heidner
[MailingCity] => Goleta
)

)

[1] => stdClass Object
(
[type] => Contact
[Id] => 00330000002jFfyAAE
[Name] => Mark Krilanovich
[MailingCity] => Goleta
)

)

[1] => stdClass Object
(
[type] => Contact
[Id] => 00330000002jFJTAA2
[Name] => Adam Gilberti
[MailingCity] => Goleta
)

)

  • January 28, 2008
  • Like
  • 0
I've built a number of OSX app's that integrate with Salesforce.com, all of them are free.

Maildrop - easily copy emails from Mail.app or Entourage to Salesforce
Trapdoor - manage all your saleforce logins on the keychain and quickly login as any of them.
SoqlXplorer - a developer to explore your salesforce.com schema, and try out queries, generate schema reports.
ZKSFoirce - an open source Cocoa library for the Salesforce.com API

Still Beta
SF3 - synchronized contact, events & tasks between salesforce and addressbook / iCal
Quicksilver plugin - quickly search and upload documents to saleforce.com from Quicksilver.
sfdcFuse - using macFuse, mount your salesforce.com document repository as a real OSX volume.

Comments & Suggestions welcome.

  • March 09, 2007
  • Like
  • 1