• WT007
  • NEWBIE
  • 25 Points
  • Member since 2006

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

I am using C#/.NET to access the Salesforce API via the web service, after generating a WSDL file and integrating it into my Visual Studio project, etc.

 

I cannot find anywhere to set the Timeout for the calls to the Web Service - usually in .NET when you access a Web Service this is a property on the Proxy objects.

 

So .. how to I set the Timeout for the Salesforce API? 

Hello,

 

Im trying to accomplish something like this:

 

select a.id,

a.MY_DUPEID__c,

a.FirstName,

b.Firstname as Firstname_Orig

 

from  Lead a

LEFT JOIN 

lead b 

on a.my_dupeid__c =b.id

 

WHERE

MY_DUPEID__c !=NULL

 

This has to be returned in 1 query.

 

Thanks in advance!