• BX
  • NEWBIE
  • 5 Points
  • Member since 2006

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 6
    Replies
Hello SF,
 
I am currently in development of an app that utilizes the send email functionality within SF... and I am surprised after sending an email to several different sources that my email was not being delivered majority of the time.  I put the contents of my email in a spam checker... here http://www.programmersheaven.com/webtools/Spam-Checker/spamchecker.aspx and I was shocked to find that my URL is blacklisted.  http://www.surbl.org/lists.html
 
After research, I realized the reason was the spoofing SF does everytime an email is sent from within SF.
 
So, since my app uses the SF send email functionality, I am concerned that all my clients will need to route their SF emails through their own email server (which is brand new feature in version 7 http://blogs.salesforce.com/features/2007/02/email_relay.html) which requires a special request to SF to include this functionality.  Does anyone know when this will become the standard?  This seems to be an urgent fix since obviously everyone will get blacklisted trying to use the current standard, send email, spoofing approach. 
 
Also, can i request "Enabling Email Relaying" for a developement version of SF?
 
Regards,
BX
 
  • August 24, 2007
  • Like
  • 0

I am puzzled to see that after extensive work on creating custom buttons, custom objects and customizing page layouts to include these buttons and objects, that these page layout changes are not included in my package.

 

I am trying to make my install as simple as possible.  This means, now I need to instruct each installer to go through several steps to include my custom button and my custom object in their layouts.

 

Is this really the norm?  Do most installs require end users to do these kinds of modifications?  Changing a page layout isn't exactly intuitive. 

 

Many thanks,

BX

  • July 11, 2007
  • Like
  • 0
Here is my soap command:
<s:Envelope xmlns:s='http://schemas.xmlsoap.org/soap/envelope/' xmlns='urn:partner.soap.sforce.com'><s:Header><SessionHeader><sessionId>sid_here</sessionId></SessionHeader></s:Header><s:Body><create><sObjects><type xmlns='urn:sobject.partner.soap.sforce.com'>My_Custom_Object__c</type><Contact__c>ContactIDHERE</Contact__c><Name>Name Here</Name><Page_s__c>Page Info Here</Page_s__c><OwnerId>00530000000p0TkAAI</OwnerId></sObjects></create></s:Body></s:Envelope>
 
Here is the error it generates:
<?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:Body><soapenv:Fault><faultcode>soapenv:Client</faultcode><faultstring>The reference to entity &quot;Type&quot; must end with the &apos;;&apos; delimiter.</faultstring></soapenv:Fault></soapenv:Body></soapenv:Envelope>
 
Any ideas?
 
Regards,
BX
  • June 16, 2006
  • Like
  • 0
Hello-
 
I need to create a form (similar to web-to-lead) form that submits a Contact/Lead's activity info into a corresponding SF activity.  Can this be done?
 
Thanks,
Brandon
  • June 01, 2006
  • Like
  • 0

I am puzzled to see that after extensive work on creating custom buttons, custom objects and customizing page layouts to include these buttons and objects, that these page layout changes are not included in my package.

 

I am trying to make my install as simple as possible.  This means, now I need to instruct each installer to go through several steps to include my custom button and my custom object in their layouts.

 

Is this really the norm?  Do most installs require end users to do these kinds of modifications?  Changing a page layout isn't exactly intuitive. 

 

Many thanks,

BX

  • July 11, 2007
  • Like
  • 0
Hi... the App we're developing for SF integration with our third-party software hinges on a Home Page Component which displays in the left sidebar on the Home page, and also on every tab.

We have accomplished this by using a "hidden" inline frame to hold the Custom S-Control in the Home Page Component, and then we use the setting that allows Home Page Components to appear on every tab.

My question is how do we package these settings into an App? Is it possible to 1) Insert the Home Page Component into the customer's Home Page, and 2) Change his/her settings to display said Home Page Component on every tab?

If not - how do other app designers get around not being able to "install" certain components? Do you just release an intallation how-to and hope your customers are all advanced users? :-/

Thanks,
-Nathan
Here is my soap command:
<s:Envelope xmlns:s='http://schemas.xmlsoap.org/soap/envelope/' xmlns='urn:partner.soap.sforce.com'><s:Header><SessionHeader><sessionId>sid_here</sessionId></SessionHeader></s:Header><s:Body><create><sObjects><type xmlns='urn:sobject.partner.soap.sforce.com'>My_Custom_Object__c</type><Contact__c>ContactIDHERE</Contact__c><Name>Name Here</Name><Page_s__c>Page Info Here</Page_s__c><OwnerId>00530000000p0TkAAI</OwnerId></sObjects></create></s:Body></s:Envelope>
 
Here is the error it generates:
<?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:Body><soapenv:Fault><faultcode>soapenv:Client</faultcode><faultstring>The reference to entity &quot;Type&quot; must end with the &apos;;&apos; delimiter.</faultstring></soapenv:Fault></soapenv:Body></soapenv:Envelope>
 
Any ideas?
 
Regards,
BX
  • June 16, 2006
  • Like
  • 0
Hello-
 
I need to create a form (similar to web-to-lead) form that submits a Contact/Lead's activity info into a corresponding SF activity.  Can this be done?
 
Thanks,
Brandon
  • June 01, 2006
  • Like
  • 0
I'm using ASP classic to connect to salesforce.
 
Here's the code:
set sfApi = Server.CreateObject("SForceOfficeToolkit3.SForceSession3.1")
 result = sfApi.login(username,password)
 response.write result & "<br/>"
 response.write "Error = " &  sfApi.errormessage & "<br/>"
 
Here's the output:
false
Unable to send request to server. The requested lookup key was not found in any active activation context.
 
I'm positive that the username/password is correct.  I found a post that suggested permissions issues with this error so I tried correcting that but with no result.
 
any ideas?