Create an entry in a SharePoint calendar for each entry in the Mendix calendar.

0
Hello all,       How can i add in SharePoint calendar for each entry in the Mendix Calendar???
asked
1 answers
0

Create a java-action that uses Exchange Web Services (EWS)

Create a settings entity. Make a connection like this

		ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);
		ExchangeCredentials credentials = new WebCredentials(settings.getUsername(), settings.getPassword(), settings.getDomain());
		service.setCredentials(credentials);
		service.setUrl(new URI(settings.getURL()));

Use this documentation as starting point for creating appointments

answered