Get in the zone with me for a good 15 minutes, maybe you’ll catch a few eclipse tricks and you’ll learn a little bit about how I think (and make mistakes along the way of fixing something on FrostWire)
Related Posts
Compiling JSON-RPC for Jetty
The JSON-RPC ant build.xml file comes configured by default for Tomcat 5 or JBoss. But what about those of us who like JETTY? Don’t panic, here’s the solution, just add that section for jetty, and comment out the default section for tomcat. I used /home/angel/bin/jetty, cause that’s the path of my jetty install, replace that […]
FrostWire.com Podcast 001
So now you see why we had that “Suscribe to iTunes” button all along… Welcome to our first Podcast Episode, on this edition we talk about: The New Face of FrostWire.com, future plans Special greetings to Charles Marseille who made the first donation ever of $100!!!. We’ll make excellent use of this contribution, Thanks! Greetings […]
[SOLVED] Java7 SMTP Issue (Caused by: sun.security.pkcs11.wrapper.PKCS11Exception)
So you had your little program that would use AWS to send emails, and all of a sudden after a Java 7 update you get a stack trace like this: [java] javax.mail.MessagingException: Could not connect to SMTP host: email-smtp.us-east-1.amazonaws.com, port: 465; nested exception is: javax.net.ssl.SSLException: Server key at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1962) at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:654) at javax.mail.Service.connect(Service.java:295) at javax.mail.Service.connect(Service.java:176) […]