You need to sign in to do that
Don't have an account?

Streaming API Error Summer 14 Release
I have problem in Streaming API using CookieJar.
"CookieJar::InvalidCookieError: Domain is inappropriate based on request URI hostname"
It seem that Salesforce is setting the cookie domain as ".salesforce.com" which will not match the corresponding request domain according to RFC 2109.
Can any one help me?
"CookieJar::InvalidCookieError: Domain is inappropriate based on request URI hostname"
It seem that Salesforce is setting the cookie domain as ".salesforce.com" which will not match the corresponding request domain according to RFC 2109.
Can any one help me?
Basically the cookie is saying it comes from .salesforce.com and the host is reporting that it is abc-1-dev-ed.my.salesforce.com.
According to RFC 2109 when the domain of the cookie is removed from the host the result should contain no dots. And in this case it does, so the cookie is rejected.
It only appears to be an issue with the BrowserId cookie from salesforce.
This does not seem to have any adverse affects (except for putting a lot of warnings into my logs.).