views:

19

answers:

1

I'm doing a iCal Service to allow sync between Calendar instances and runs fantastic on localhost (under VS2010 Web Server)

But now That I hosted on a Windows 2008 R2 (IIS 7.5.7600) I couldn't create not even update an event :-o

Thunderbird always said

alt text

So I rush into Fiddler and found out the problem

alt text

a 405 error

alt text

That says PUT is not allowed :(

How can I enabled this method? Application Pool? WebSite definition? IIS Settings?

A: 

We just need to remove the WebDav Service

Control Panel > Program and Features > Turn Windows features on or off

alt text

then navigate to Server Manager > Roles > Web Server (IIS) and wait until Roles Services come up.

Then Remove Role Service and Remove WebDAV Publishing

alt text

You need to restart the Server to finalize this action.

I hope it helps someone

balexandre