• Homey
  • NEWBIE
  • 0 Points
  • Member since 2010

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

I'm using the web services API to retrieve the list of the Global Objects by name using the describeGlobal() webservice call as follows:

 

DescribeGlobalResult describeGlobalResult = binding.describeGlobal();

if (!(describeGlobalResult == null)) {

types = describeGlobalResult.getTypes();

}

 

The problem is that all I get are standard objects non of the custom objects in the result.  I would very much appreciate any information that would provide an idea as to how to retrieve the list of custom objects via the web service.  Please note that I have created some custom objects in the same SalesForce instance. 

  • March 10, 2010
  • Like
  • 0

I'm using the web services API to retrieve the list of the Global Objects by name using the describeGlobal() webservice call as follows:

 

DescribeGlobalResult describeGlobalResult = binding.describeGlobal();

if (!(describeGlobalResult == null)) {

types = describeGlobalResult.getTypes();

}

 

The problem is that all I get are standard objects non of the custom objects in the result.  I would very much appreciate any information that would provide an idea as to how to retrieve the list of custom objects via the web service.  Please note that I have created some custom objects in the same SalesForce instance. 

  • March 10, 2010
  • Like
  • 0