SharePoint calendar in ios - ios

As I am new to iOS(Swift),I don't know whether we can display and use SharePoint calendar in iOS or not .
If we can, then please tell me the way to display and to access its events.
Thank You in advance.

This is topic has been here for awhile.
http://community.office365.com/en-us/f/154/t/12219.aspx
https://sharepoint.stackexchange.com/questions/38782/sharepoint-calendar-sharing-on-iphone-and-ipad
Basically, there is no native approach to achieve this requirement, what Microsoft suggest is to use RSS. Also there are some third party solutions that with allow you to achieve this. However if you like to get your hands dirty and do it by yourself, there are some programmatic workarounds.
The one that I prefer because I know it works, is to use an Exchange Calendar, an iOS calendar can be connected to an Exchange Calendar.
Furthermore if you don't have a real dependency on your current SharePoint Calendar, you could simply migrate it to an Exchange Calendar, SharePoint is able to display Exchange Calendars natively, by doing this you will be able to access your calendar from SharePoint and iOS.
But lets say that you must preserve your current SharePoint Calendar and you cannot migrate it to Exchange, in this case you can sync your SharePoint Calendar with an Exchange Calendar programmatically, by using a SharePoint Event Receiver you can ensure that all your events will be replicated in your Exchange Calendar, you can use Exchange Object Model within your SharePoint Event Receiver code.
As you can imagine an Event Receiver is not the only alternative, there are other ways to achieve this by using different programmatic approaches, but you will need to invest some time to research this.

Related

Outlook Contact Sync

I want to make an application which sync Outlook. I found there is an API service called Microsoft Graph, but it only allow me to retrieve the contact list.
Let's say I have 1000 users with 200 contacts. If I use polling method, then the complexity will be very complex. Do you guys have any idea to solve this problem? Thank you
The best way to get data from Microsoft Graph in sync with a 3rd party system (native app, backend service...) is to use delta queries. Personal contacts are already supported by the functionality.

Asp.net mvc5 online calendar

I use Sql Server and Asp.net mvc5 .I want to make a page with calendar.The Calendar shows that whether employee come late or in time this information will come from database .I have searched some online calendars but I haven't dealed with it Do you have an idea how to make it?
You can go with fullcalendar to achieve this functionality. In this calendar, you can bind json data to the calendar. This is really awesome in terms of UI and events. I also used this to achieve the same functionality.
Go through to https://fullcalendar.io/
If need any help, write here.

How to get the Exchange server calendar items to bind it into radscheduler

I am working on radscheduler.
I want to bind the exchange server calendar items in to radscheduler, Please send any article or sample program about how to get the calendar Items from Exchange Server, it's very useful for me, kindly send it to me
Maybe this is very late for you, but currently I'm using the DLL's provided on this website click here for Independentsoft
It is possible to connect to exchange etc. You can find a way to store them in the database if you like, or create an array of Appointments etc.
Good luck!

Create new calendar system support in Exchange OWA

Since Exchange doesn't provide support for all local calendar types in OWA, I need to create one, using Microsoft.Net's support of calendars, but where should I start?
If I understand correct what you want, the usage of Exchange Server Web Services would be the best way for you. EWS gives you full set of API for appointments and they can be used in .NET very easy. You can use Microsoft Exchange Server 2010 Web Services SDK (EWS SDK) with Exchange Server 2007 SP1 (you should just use ExchangeService constructor with ExchangeVersion.Exchange2007_SP1 parameter).
I recommend you to watch video http://channel9.msdn.com/pdc2008/BB46/. I find this video as the best starting point.
Other 6 videos from
https://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032427565&Culture=en-US can gives you more additional information. In two last videos from there you can learn some optimization tricks like retrieving only the properties which you need and paging of results. Using of custom extended properties in appointments is also explained in both of this video sources.
Some small examples how to work with with calendar items (appointment) with respect of EWS SDK you will find here: http://msdn.microsoft.com/en-us/library/dd633702.aspx.
On http://blogs.msdn.com/exchangedev/ you will find more interesting information, links and some good examples.

Google Calendar Event GUI

does anybody know, where I can find the Google Calendars Event-GUI?
I'm building an social networking site, which relies on google calendar.
For adding and changing events, I want to use googles GUI (i dont want to code this myself if there is a partial/control already existing).
Does anybody know where I can find this?
Checkout http://code.google.com/apis/calendar/ it's the full API documentation from Google. If what you want to do is supported, it's almost certainly written about here somewhere.
If you take a look at the docs page, there is a "Calendar Tools" section on the left hand side bar that has the tools available, including gadgets and an embeddable calendar.
If you want to code something yourself you'll probably want to look at retrieving events, updating events and creating events.
This article may also be helpful to you. http://www.google.com/googlecalendar/event_publisher_guide.html#site
Although that is to embed just your calendar.

Resources