• rajaraodv100
  • NEWBIE
  • 0 Points
  • Member since 2009

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

As you know, most sales & support people spend most of their time on email platforms and have lot of stuffs like attachments, quotes etc within Emails. With this Zimlet we hope to help & encourage them to use Salesforce and Chatter like never before.

 

 

See the YouTube video here:
http://www.youtube.com/watch?v=iOkQfo4q680

 

 

Please vote by pressing "Promote" button here:

http://developer.force.com/chatterdevchallenge/entry?id=087300000002lGUAAY&returnUrl=%2Fapex%2FentryGallery%3Fc%3D09a300000000Xv3%26sort%3Drecent

 

Thanks in advance!

Raja

Hi,

I have a client application similar to "Outlook connect" where I want to put  a "View" or "Edit" link next to an account or opportunity. And when the user clicks on it, I want it to directly open corresponding object in proper mode in Salesforce browser window. 

PS: My Client application already knows the username and password + security token.

 

I am sure it can be done but I can't find a doc that explains what REST URL and how to pass tokens or sessionId to do that.

 

Thanks.

Hi,

I have a client application similar to "Outlook connect" where I want to put  a "View" or "Edit" link next to an account or opportunity. And when the user clicks on it, I want it to directly open corresponding object in proper mode. 

PS: My Client application already knows the username and password + security token.

 

I am sure it can be done but I can't find a doc that explains what REST URL and how to pass tokens or sessionId to do that.

 

Thanks.

I am making basic calls via soap but getting http 500 - timeout.Is anyone experiencing it? 
 
<?xml version="1.0" encoding="utf-8" ?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope
/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
><soap:Header><sh:QueryOptions xmlns:sh="SoapService" soap:mustUnderstand="0"><sh:batchSize xmlns:sh
="urn:enterprise.soap.sforce.com">200</sh:batchSize></sh:QueryOptions><sh:SessionHeader xmlns:sh="urn
:enterprise.soap.sforce.com"><sh:sessionId xsi:type="xsd:string">00D300000000NRG!ARgAQFTiQnwOlKGx.LBOA5KcYZpk8s1meB3_QFDiIHbekuI
.oOR9XpCTelPEULbDUcY08q_hzBAJu8rawGs5y5heELgCnHV3</sh:sessionId></sh:SessionHeader></soap:Header><soap
:Body><query xmlns="urn:enterprise.soap.sforce.com"><queryString xmlns="" xmlns:sh="urn:enterprise.soap
.sforce.com">Select t.Subject ,t.Status ,t.CreatedDate ,t.ActivityDate ,t.Id ,t.AccountId ,t.OwnerId
from Task t</queryString></query></soap:Body></soap:Envelope>

I am sure I am doing something stupid with the soap call but I can't figure out what it is. Could someone please help?

 

 

<soap:Envelope>


<soap:Header>
  <sh:SessionHeader>
    <sh:sessionId xsi:type="xsd :string">sessionId
    </sh:sessionId>
  </sh:SessionHeader>

 

  <ns3:QueryOptions soap:mustUnderstand="0">
    <ns4:batchSize>10</ns4:batchSize>
  </ns3:QueryOptions>

</soap:Header>

 

<soap:Body>
 <query>
 <queryString>
   Select a.Name
   ,a.BillingCity ,a.Phone ,a.Type ,a.LastModifiedDate ,a.CreatedDate ,a.Id ,a.OwnerId  from Account a
  </queryString>
</query>

 </soap:Body>
</soap:Envelope>

 

 

I am making basic calls via soap but getting http 500 - timeout.Is anyone experiencing it? 
 
<?xml version="1.0" encoding="utf-8" ?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope
/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
><soap:Header><sh:QueryOptions xmlns:sh="SoapService" soap:mustUnderstand="0"><sh:batchSize xmlns:sh
="urn:enterprise.soap.sforce.com">200</sh:batchSize></sh:QueryOptions><sh:SessionHeader xmlns:sh="urn
:enterprise.soap.sforce.com"><sh:sessionId xsi:type="xsd:string">00D300000000NRG!ARgAQFTiQnwOlKGx.LBOA5KcYZpk8s1meB3_QFDiIHbekuI
.oOR9XpCTelPEULbDUcY08q_hzBAJu8rawGs5y5heELgCnHV3</sh:sessionId></sh:SessionHeader></soap:Header><soap
:Body><query xmlns="urn:enterprise.soap.sforce.com"><queryString xmlns="" xmlns:sh="urn:enterprise.soap
.sforce.com">Select t.Subject ,t.Status ,t.CreatedDate ,t.ActivityDate ,t.Id ,t.AccountId ,t.OwnerId
from Task t</queryString></query></soap:Body></soap:Envelope>

I am sure I am doing something stupid with the soap call but I can't figure out what it is. Could someone please help?

 

 

<soap:Envelope>


<soap:Header>
  <sh:SessionHeader>
    <sh:sessionId xsi:type="xsd :string">sessionId
    </sh:sessionId>
  </sh:SessionHeader>

 

  <ns3:QueryOptions soap:mustUnderstand="0">
    <ns4:batchSize>10</ns4:batchSize>
  </ns3:QueryOptions>

</soap:Header>

 

<soap:Body>
 <query>
 <queryString>
   Select a.Name
   ,a.BillingCity ,a.Phone ,a.Type ,a.LastModifiedDate ,a.CreatedDate ,a.Id ,a.OwnerId  from Account a
  </queryString>
</query>

 </soap:Body>
</soap:Envelope>