Showing posts with label Software. Show all posts
Showing posts with label Software. Show all posts

Thursday, April 19, 2012

Using Thunderbird in Linux with Office 365

My company is using Office 365, but as a software developer with a passion for *nix I really can't live inside a windows environment. So for email use Thunderbird and the splendid Lightning addon together with a calendar provider for office 2010. It works great!

Thunderbird Lightning Calendar Office 2010
http://www.1st-setup.nl/wordpress/?page_id=133

Using calendars from Office 365
http://www.1st-setup.nl/wordpress/?wp_super_faq=add-a-microsoft-office-365-calendar

Thursday, February 26, 2009

CXF - How to set a custom endpoint address

For some reason it is rarely straight forward how to configure a Java Web Service framework to use a custom endpoint address (one that is not in the WSDL). Anyway, here is how you do it in CXF:


URL wsdl = getClass().getResource("myservice.wsdl.xml");
MyService service = new MyService(wsdl).getMyServicePort();
BindingProvider bp = (BindingProvider)service;
bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, URL);