I'm new to Exchange (2007) development so please bear with me. :-). There appear to be a myriad of technologies for Exchange development -- the latest being Exchange Web Services -- and it's related Managed API. I need to write a program that can -- if necessary -- run on the Exchange servers -- to scan people's mailboxes for the purpo...
I'm getting list of files via PropFindMethod:
DavMethod pFind = new PropFindMethod(url, DavConstants.PROPFIND_ALL_PROP, DavConstants.DEPTH_1);
httpClient.executeMethod(pFind);
MultiStatus multiStatus = pFind.getResponseBodyAsMultiStatus();
MultiStatusResponse[] responses = multiStatus.getResponses();
for (int i = 0; i < responses.length...
Hello,
I need to upload files to iDisk drive. I've found that iDisk has webdav interface, and it's working fine with desktop clients. Unfortunately I wasn't able to find suitable WebDav client for PHP, and can't find out how to use cUrl to upload files to WebDav. The only client class I've found doesn't run on my hosting (we are using s...
Using C#/ASP.Net I'm creating Virtual Directories in IIS7 so that external people can browse various documents.
It's all looking good, except the browsing is in a dull text format. How can I create more of a "Windows Explorer" look and feel when they browse to the folder.
Thanks in advance,
Jim
...
Two symptoms...
First, here's the situation:
I'm running IIS 7 on a Windows 7 box. I'm trying to set up WebDAV but am running into problems. I followed the directions in this article to set things up in IIS:
http://learn.iis.net/page.aspx/350/installing-and-configuring-webdav-on-iis-7/
I have a .NET project at http://localhost/ithitw...
I'm writing a WebDav implementation. I have implemented both basic and digest authentication.
My problem is that Digest Authentication isn't implemented by all clients. (In particular Dreamweaver)
While Windows Web Folders doesn't work when sent a basic http challenge.
Is it possible to do client/server negotiation (Http Negotiation/S...
Trying to set my out of office on with a new reply message on Exchange 2003....
Here's my code:
NSString *tempbaseurl = @"https://webmail.server.com/exchange/mailbox/";
NSURL *url = [NSURL URLWithString:tempbaseurl];
NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:url];
NSString *sMessage = @"I am currently out of the...
I wanted to ask a question about server data. I am new to server programming, but I have to learn about the CardDav server (CardDav is developed by the WebDav).
I only know the CardDav server is used to hold the address book data, but what form of the data does the server actually hold (e.g. .CSV or .txt)? Can anyone help me? Thank you...
Hi, everyone,
I want to ask a question about the iPhone address book. I am writing a program, it relates to the CardDav server and the .vcf file. I want to use the NSURLConnection to connect the server and download the .vcf. However, I am not sure that the iPhone can read and write the .vcf file or not.
One thing I can sure that is th...
Apparently I'm able to net use * http://servername.com and this concept is completely new to me.
Does this mean I'm using WebDAV?
What are the security implications?
How can I read/write files in this manner?
Why doesn't it work for every website?
Is it possible to write files using this method?
...
See this example from RFC2518:
<D:multistatus xmlns:D="DAV:">
<D:response>
<D:href>http://www.foo.bar/container/</D:href>
<D:propstat>
<D:prop xmlns:R="http://www.foo.bar/boxschema/">
<R:bigbox>
<R:BoxType>Box type A</R:BoxType>
...
Suppose I have user defined column "ORDER" and added it to Tasks grid (using outlook).
How do reference this custom column in WEBDAV search or update (PROPPATCH)?
Here is example for getting built in columns:
...
I'm looking for a WebDAV server - best Open Source - for iPhone and iPad for integration in my app. It should be possible to list, download and upload files. I would like to point the server root on the 'Documents' folder of my app, so the methods should be mapped directly to the file system if possible.
On my search through the interne...
Is a WebDAV client, per RFC, able to update the modification-date timestamp of a file. WebDAV lists this as the "getlastmodified" property.
Being able to do a utime() on files is quite important when moving files as I regard mtime as essential file metadata. But for example doing a propset with cadaver (which I regard as a kind of refere...
I tried to set up an eXist WebDav using my network Location area. The folders were created, but they won't open. And I have no idea why. I'm currently using Windows 7 Ultimate. I hope someone can help me.
...
Hello,
I have an Exchange Server running in a remote machine.
We also have an application that connects to this Exchange Server through ActiveDirectory and Independentsoft's WebDav.
This works perfectly when I run the application locally, but if I install it in the machine where the Exchange Server is running I only have connectivity wit...
I am having the following code to Save message to Exchange WEBDAV Drafts folder. IT saves the message but If open it in Outlook, Send button is Disabled and the message is readonly. Please help me find what am i missing in this code...
thanks
Bhuvan
strBody = "To: " + strTo + "\n" +
"Subject: " + (string.IsNullOrEmpty(...
I have a web application that has a WebDav share for Word that uses http digest authentication. We use javascript like the following to open word documents on the in word:
Doc = new ActiveXObject("Sharepoint.OpenDocuments.3");
Doc.EditDocument(url, 'Word.Document');
In office 2003 and office 2007, it works (but not 100% reliably). In...
I am trying to send e-mails through Exchange Server 2003 with WebDav. Sending a plain e-mail is no problem, but I can't seem to send an e-mail with attachments. I get the attachment up to the server but I don't know if I am putting it in the right place.
So my questions are:
1. Where on the server should the attachment be uploaded?
2. H...
I tried to post in Apple Developer Forum but I got no luck for 6 days... I hope I get more here :)
I'm about to create a convert tool from a CRM application to ical format, witch works fine (I generate the correct code and is well imported, but I need more...), I wanted to know how does iCal App in the Mobile works.
How, after the f...