I actually remember the days when I learned HTML 3.0 from a book. I also remember coding it by hand and tracking the links so that nothing breaks. Of course the day I discovered that there are tools that let you run your site as a project gave my life a whole new sense and I could just dedicate myself to graphic design. The last couple of years as I started to program seriously the concept of "project" was implicit but it was mostly static and the IDE's did not help a lot with team development. So what I hope will happen that projects will start to interoperate. Ant, Snv, Bugtraq, trac, xUnit, profilers etc. have to be integrated and allow for a better project management for the entire group and we need OpenSource solutions, yesterday. Rational has had them for a long time but they had great cost. Microsoft is now lowering the bar (in price) with Team System but it's still not free. I have greatest hopes from eclipse as I see most development effort and easiest extensibility in it's model, but can it be done, will it be done? These are questions that only time will answer.
Relaxing SSL validation for JaxWS
I've recently had the need to access a web service developed in .Net and signed with a self signed certificate. I've decided to use the JaxWS and the Metro stack to develop the client and run it on Java6. As a plus, the service was protected with username and password. The service was exposed on an IP address and I repetedly had problems in establishing a connection. In the end, thanks to this article, it was obvious that the certificate was not created with the alternative name attribute but it was not an option to change the certificate as the web service was already used by other consumers (.net clients don't suffer by this issue). So, on my quest to relax the validation, I've found out this article and code snippet, which did not compile at first (I guess package names were changed in JDK6) so I've did some trivial refactoring and now, after invoking the static methods in the client code, the SSL connection gets validated with no problems. Hope it helps and th...
Comments