Jag har letat som en galning efter en fristående windows application som kan anslutas till outlook. Det är bara kalendern som jag är intresserad av. Hej, det finns ett tillägg till Visual Studio som heter Visual Studio Tools For Office. Det kan du installera och sedan kan du skapa add-ins eller andra funktioner som du kan använda dig av. Men, om du skall komma åt Exchange eller din Outlook finns det oftast en varning som du först måste acceptera för att köra anrop mot din Outlook av senare version. Då finns det istället något som heter WEBDAV som man kan använda sig av för att ställa frågor mot en Exchange-server, likt sql-kommandon i form av xml. Tack för att du försöker Pelle, men så här är det. Kul, får du till det så skicka gärna upp det i tips & tricks eller varför inte en artikel!?Kod för en outlook kalender
Något bra tips?Sv: Kod för en outlook kalender
För att ge dig fler exempel behöver jag veta lite mer detaljer.
Finns ett API som kapslar in anrop http://msdn.microsoft.com/en-us/library/dd633710%28EXCHG.80%29.aspx, och flera andra olika tekniker till. Detta kanske ger dig information att i alla fall leta vidare.
Exempel för att lägga till en kalenderbokning i Outlook med c#:
http://msdn.microsoft.com/en-us/library/exchange/ms877306%28v=exchg.65%29.aspx
using System;
using System.Net;
using System.Text;
namespace ExchangeSDK.Snippets.CSharp
{
class AppointmentCreatorWebDAV
{
[STAThread]
static void Main(string[] args)
{
// Variables.
string strExchSvrName = "";
string strMailbox = "";
string strCalendarUri = "";
string strApptItem = "";
string strDomain = "";
string strUserName = "";
string strPassword = "";
string strApptRequest = "";
string strMailInfo = "";
string strCalInfo = "";
string strXMLNSInfo = "";
string strHeaderInfo = "";
System.Net.HttpWebRequest PROPPATCHRequest = null;
System.Net.WebResponse PROPPATCHResponse = null;
System.Net.CredentialCache MyCredentialCache = null;
byte[] bytes = null;
System.IO.Stream PROPPATCHRequestStream = null;
try
{
// Exchange server name;
strExchSvrName = "ExchangeServer";
// Mailbox folder name.
strMailbox = "user";
// Appointment item.
strApptItem = "testappointment.eml";
// URI of the user's calendar folder.
strCalendarUri = "http://" + strExchSvrName + "/exchange/"
+ strMailbox + "/Calendar/";
// User name and password of appointment creator.
strUserName = "user";
strDomain = "Domain";
strPassword = "!Password";
// XML namespace info for the WebDAV request.
strXMLNSInfo = "xmlns:g=\"DAV:\" "
+ "xmlns:e=\"http://schemas.microsoft.com/exchange/\" "
+ "xmlns:mapi=\"http://schemas.microsoft.com/mapi/\" "
+ "xmlns:mapit=\"http://schemas.microsoft.com/mapi/proptag/\" "
+ "xmlns:x=\"xml:\" xmlns:cal=\"urn:schemas:calendar:\" "
+ "xmlns:dt=\"urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/\" "
+ "xmlns:header=\"urn:schemas:mailheader:\" "
+ "xmlns:mail=\"urn:schemas:httpmail:\"";
// Set the appointment item properties. To create an all-day meeting,
// set the dtstart/dtend range for 24 hours or more and set the alldayevent property
// to 1. See the documentation on the properties
// in the urn:schemas:calendar: namespace for more information.
strCalInfo = "<cal:location>meetappt Location</cal:location>"
+ "<cal:dtstart dt:dt=\"dateTime.tz\">2004-05-18T23:00:00.000Z</cal:dtstart>"
+ "<cal:dtend dt:dt=\"dateTime.tz\">2004-05-18T23:30:00.000Z</cal:dtend>"
+ "<cal:instancetype dt:dt=\"int\">0</cal:instancetype>"
+ "<cal:busystatus>BUSY</cal:busystatus>"
+ "<cal:meetingstatus>CONFIRMED</cal:meetingstatus>"
+ "<cal:alldayevent dt:dt=\"boolean\">0</cal:alldayevent>"
+ "<cal:responserequested dt:dt=\"boolean\">1</cal:responserequested>"
// Set the reminder time (in seconds).
+ "<cal:reminderoffset dt:dt=\"int\">900</cal:reminderoffset>";
// Set the required attendee of the appointment.
strHeaderInfo = "<header:to>" + strMailbox + "</header:to>";
// Set the subject of the appointment.
strMailInfo = "<mail:subject>Test Appointment Subject</mail:subject>"
+ "<mail:htmldescription>Let's meet here</mail:htmldescription>";
// Build the XML body of the PROPPATCH request.
strApptRequest = "<?xml version=\"1.0\"?>"
+ "<g:propertyupdate " + strXMLNSInfo + ">"
+ "<g:set><g:prop>"
+ "<g:contentclass>urn:content-classes:appointment</g:contentclass>"
+ "<e:outlookmessageclass>IPM.Appointment</e:outlookmessageclass>"
+ strMailInfo
+ strCalInfo
+ strHeaderInfo
+ "<mapi:finvited dt:dt=\"boolean\">1</mapi:finvited>"
+ "</g:prop></g:set>"
+ "</g:propertyupdate>";
// Create a new CredentialCache object and fill it with the network
// credentials required to access the server.
MyCredentialCache = new System.Net.CredentialCache();
MyCredentialCache.Add( new System.Uri(strCalendarUri),
"NTLM",
new System.Net.NetworkCredential(strUserName, strPassword, strDomain)
);
// Create the HttpWebRequest object.
PROPPATCHRequest = (System.Net.HttpWebRequest)HttpWebRequest.Create(strCalendarUri + strApptItem);
// Add the network credentials to the request.
PROPPATCHRequest.Credentials = MyCredentialCache;
// Specify the PROPPATCH method.
PROPPATCHRequest.Method = "PROPPATCH";
// Encode the body using UTF-8.
bytes = Encoding.UTF8.GetBytes((string)strApptRequest);
// Set the content header length. This must be
// done before writing data to the request stream.
PROPPATCHRequest.ContentLength = bytes.Length;
// Get a reference to the request stream.
PROPPATCHRequestStream = PROPPATCHRequest.GetRequestStream();
// Write the message body to the request stream.
PROPPATCHRequestStream.Write(bytes, 0, bytes.Length);
// Close the Stream object to release the connection
// for further use.
PROPPATCHRequestStream.Close();
// Set the content type header.
PROPPATCHRequest.ContentType = "text/xml";
// Create the appointment in the Calendar folder of the
// user's mailbox.
PROPPATCHResponse = (System.Net.HttpWebResponse)PROPPATCHRequest.GetResponse();
// Clean up.
PROPPATCHResponse.Close();
Console.WriteLine("Appointment successfully created.");
}
catch(Exception ex)
{
// Catch any exceptions. Any error codes from the PROPPATCH
// method request on the server will be caught
// here, also.
Console.WriteLine(ex.Message);
}
}
}
}
Sv:Kod för en outlook kalender
Jag brukar alltid använda mig av gadget, klocka kalender mm. Har nu last att man skall undvika dessa saker p.g.a det medför en säkerhetsrisk. Därför så har jag gjort en analog klocka, fungerar kanon. Jag vill också göra en kalender. Jag är inte helt nöjd med den kalendern som finns I vergtygslådan, och kunde man sedan kopla ihop den med Outlooks kalender så vore det en bonus.Sv: Kod för en outlook kalender