• Lindz-
  • NEWBIE
  • 0 Points
  • Member since 2003

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 12
    Replies

Hi can you point me the the relevent documentation for customizing the links which are executed when you click on an email address, name, phone number etc within the salesforce.com webpages. I wish to customize these actions to call our own web application for integration purposes, I would like to send a simple HTTP GET with the name, email, telephone number etc.

Thanks

Steve Lindsay

  • August 09, 2004
  • Like
  • 0

Under the 2.0 API's I used to use search and redirect with the returned id's

returned id = 00330000001SzkC

redirect in this format

https://na1.salesforce.com/00330000001SzkC

now the returned Id's from the 2.5 query seem to be longer and I can't use them, e.g.

00330000001SzkCAAS

If i manually drop the extra AAS this works still, am I hitting the wrong URL now?

  • March 15, 2004
  • Like
  • 0

What integration points are available for making outbound integrations?, i.e. If I click on a number in salesforce.com can I have an event which will allow me to identify which user clicked and what number where clicked and take an external action outside salesforce.com?, either at the backend or front end?

  • March 15, 2004
  • Like
  • 0

Hi I used the 2.0 API to screenpop based on a search and used the 2.0 API's to login, after login I take the session id and do a search for a record, if the record returns then I display it using a redirect, this all works fine unchanged since I wrote it using the 2.0 API... I now wanted to do record creation if a record doesn't exist and started this using the 2.5 API and used the below snippet to test.... aside from the phone number and session id (returned from the 2.0 API login) this is identical to your SDK example, however when I try it I get faultcode -1 and faultstring java.lang.NullPointerException. Thanks in advance.

  xml version="1.0" encoding="utf-8" ?>
- <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <soapenv:Header>
- <ns1:SessionHeader soapenv:mustUnderstand="0" xmlns:ns1="SoapService">
  sforce API Chapter 8: Sample SOAP Messages Copyright. 2002-2004 salesforce.com, inc. All rights reserved. Page 108
  <ns2:sessionId xmlns:ns2="urn:enterprise.soap.sforce.com">NR2L329x_vbtzKggVlhLns2:sessionId>
  ns1:SessionHeader>
  soapenv:Header>
- <soapenv:Body>
- <create xmlns="urn:enterprise.soap.sforce.com">
- <sObjects xsi:type="ns3:Account" xmlns:ns3="urn:sobject.enterprise.soap.sforce.com">
  <ns3:Name>Golden Strawns3:Name>
  <ns3:BillingStreet>4322 Haystack Boulevardns3:BillingStreet>
  <ns3:BillingCity>Wichitans3:BillingCity>
  <ns3:BillingState>KAns3:BillingState>
  <ns3:BillingPostalCode>87901ns3:BillingPostalCode>
  <ns3:BillingCountry>USns3:BillingCountry>
  <ns3hone>1234ns3hone>
  <ns3:Fax>555.555.5555ns3:Fax>
  <ns3:AccountNumber>0000000ns3:AccountNumber>
  <ns3:Website>www.oz.comns3:Website>
  <ns3:Industry>Farmingns3:Industry>
  <ns3:NumberOfEmployees>40ns3:NumberOfEmployees>
  <ns3wnership>Privately Heldns3wnership>
  <ns3escription>World class hay makers.ns3escription>
  sObjects>
  create>
  soapenv:Body>
  soapenv:Envelope>

Message Edited by DevAngel on 03-09-2004 04:59 PM

  • March 10, 2004
  • Like
  • 0

Hi can you point me the the relevent documentation for customizing the links which are executed when you click on an email address, name, phone number etc within the salesforce.com webpages. I wish to customize these actions to call our own web application for integration purposes, I would like to send a simple HTTP GET with the name, email, telephone number etc.

Thanks

Steve Lindsay

  • August 09, 2004
  • Like
  • 0

Under the 2.0 API's I used to use search and redirect with the returned id's

returned id = 00330000001SzkC

redirect in this format

https://na1.salesforce.com/00330000001SzkC

now the returned Id's from the 2.5 query seem to be longer and I can't use them, e.g.

00330000001SzkCAAS

If i manually drop the extra AAS this works still, am I hitting the wrong URL now?

  • March 15, 2004
  • Like
  • 0

What integration points are available for making outbound integrations?, i.e. If I click on a number in salesforce.com can I have an event which will allow me to identify which user clicked and what number where clicked and take an external action outside salesforce.com?, either at the backend or front end?

  • March 15, 2004
  • Like
  • 0

hi

I'm a new developer. Now I develop in java. But I can not log on by sending the below request direct to http://www.salesforce.com/services/Soap/u/2.5.  Can you help me?

request message:

http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> xmlns:ns="urn:soap.sforce.com">brad.gillham@sendia.comxxxxxx

response message:


http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 
 
   ns1:Client.NoSOAPActionhttp://xml.apache.org/axis/">ns1:Client.NoSOAPAction>
   no SOAPAction header!
  
 
 

-Jeff

Hi I used the 2.0 API to screenpop based on a search and used the 2.0 API's to login, after login I take the session id and do a search for a record, if the record returns then I display it using a redirect, this all works fine unchanged since I wrote it using the 2.0 API... I now wanted to do record creation if a record doesn't exist and started this using the 2.5 API and used the below snippet to test.... aside from the phone number and session id (returned from the 2.0 API login) this is identical to your SDK example, however when I try it I get faultcode -1 and faultstring java.lang.NullPointerException. Thanks in advance.

  xml version="1.0" encoding="utf-8" ?>
- <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <soapenv:Header>
- <ns1:SessionHeader soapenv:mustUnderstand="0" xmlns:ns1="SoapService">
  sforce API Chapter 8: Sample SOAP Messages Copyright. 2002-2004 salesforce.com, inc. All rights reserved. Page 108
  <ns2:sessionId xmlns:ns2="urn:enterprise.soap.sforce.com">NR2L329x_vbtzKggVlhLns2:sessionId>
  ns1:SessionHeader>
  soapenv:Header>
- <soapenv:Body>
- <create xmlns="urn:enterprise.soap.sforce.com">
- <sObjects xsi:type="ns3:Account" xmlns:ns3="urn:sobject.enterprise.soap.sforce.com">
  <ns3:Name>Golden Strawns3:Name>
  <ns3:BillingStreet>4322 Haystack Boulevardns3:BillingStreet>
  <ns3:BillingCity>Wichitans3:BillingCity>
  <ns3:BillingState>KAns3:BillingState>
  <ns3:BillingPostalCode>87901ns3:BillingPostalCode>
  <ns3:BillingCountry>USns3:BillingCountry>
  <ns3hone>1234ns3hone>
  <ns3:Fax>555.555.5555ns3:Fax>
  <ns3:AccountNumber>0000000ns3:AccountNumber>
  <ns3:Website>www.oz.comns3:Website>
  <ns3:Industry>Farmingns3:Industry>
  <ns3:NumberOfEmployees>40ns3:NumberOfEmployees>
  <ns3wnership>Privately Heldns3wnership>
  <ns3escription>World class hay makers.ns3escription>
  sObjects>
  create>
  soapenv:Body>
  soapenv:Envelope>

Message Edited by DevAngel on 03-09-2004 04:59 PM

  • March 10, 2004
  • Like
  • 0

Please note there is an omission in the API 2.5 documentation concerning SOQL and LIKE.

 

The documentation is missing description of the LIKE keyword, which as in the case with SQL, allows wild card searching of text fields.

 

For example:

 

select id, firstname, lastname  from lead where lastname like 'Smith%'

 

Will match all last names starting with Smith.

 

select id, firstname, lastname  from lead where lastname like 'Smith_'

 

Will match all last names starting with Smith up to 1 additional character.  (IE Smiths will match, but Smithson will not.)

 

The documentation will be updated soon to reflect this feature.

  • December 04, 2003
  • Like
  • 0