• 90210high
  • NEWBIE
  • 0 Points
  • Member since 2012

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

Hello,

 

I've created a trigger on Reply (Community) object to capture the changes in the UpVote field. I was hoping that if someone "Likes" a Reply, the trigger will fire, but it does not.

 

 

trigger myReplyTrigger on Reply (after update) {
   for(Reply r : Trigger.new) {
      System.debug('~~~ Logging replies ' + r.UpVotes);
       // do some code here ...
   }
}

 

 

Does anyone know how to capture changes in the UpVote field?

 

Thank you!

Michael

Hi,

 

we have a webservice which connects to salesforce.com. Sometimes, we get an exception of mismatching name in certificate.

 

org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
   at java.lang.Thread.run(Thread.java:636)
Caused by: com.sforce.ws.ConnectionException: Failed to send request to
https://eu0-api.salesforce.com/services/Soap/u/21.0/

 

 

Caused by: javax.net.ssl.SSLHandshakeException:
java.security.cert.CertificateException: No name matching
eu0-api.salesforce.com found

 

Does anyone have an idea?