| Author |
Message |
Guest
|
Posted:
Tue Aug 23, 2005 5:00 pm Post subject:
WebDev Delete Problem |
|
|
I wrote a VB.Net application which downloads emails and then deletes
them off the server the application works fine on Exchange 2000 however
I can't delete emails on exchange 2003. If I login to the web
interface of Exchange I can delete emails but I can't delete with
WebDev.
Can anyone tell me if there is a security setting which has changed
between 2000 and 2003.
Thanks
|
|
| Back to top |
|
 |
Brett Smith
Guest
|
Posted:
Tue Aug 23, 2005 5:00 pm Post subject:
Re: WebDev Delete Problem |
|
|
I don't know if the issue is the same, but when I migrated to exchange 2003
I had trouble because of OWA using Forms authentication instead of basic
authentication.
The three choices I had were to remove forms auth, create a new exchange IIS
site and have it use basic, or to write a function to perform the forms
auth, and return the cookies (2 of them) to use in my httpwebrequest object.
I choose the third option so that my app could be more easily distributed.
<kieran.osullivan@blindpenguin.org> wrote in message
news:1124808976.225286.72180@z14g2000cwz.googlegroups.com...
| Quote: | I wrote a VB.Net application which downloads emails and then deletes
them off the server the application works fine on Exchange 2000 however
I can't delete emails on exchange 2003. If I login to the web
interface of Exchange I can delete emails but I can't delete with
WebDev.
Can anyone tell me if there is a security setting which has changed
between 2000 and 2003.
Thanks
|
|
|
| Back to top |
|
 |
Henning Krause [MVP - Exc
Guest
|
Posted:
Tue Aug 23, 2005 5:00 pm Post subject:
Re: WebDev Delete Problem |
|
|
Hello,
if you get a "Login-timeout" error with your WebDAV request, you are a
victim of the Form-Based authentication.
I have an arcticle on my website along with source code:
http://www.infinitec.de/exchange/howtos/webdavwithfba.aspx
Greetings,
Henning Krause
MVP - Exchange
http://www.infinitec.de
"Brett Smith" <bsmith at comppro dot com> wrote in message
news:%23wXy7W$pFHA.2592@TK2MSFTNGP12.phx.gbl...
| Quote: | I don't know if the issue is the same, but when I migrated to exchange 2003
I had trouble because of OWA using Forms authentication instead of basic
authentication.
The three choices I had were to remove forms auth, create a new exchange
IIS site and have it use basic, or to write a function to perform the
forms auth, and return the cookies (2 of them) to use in my httpwebrequest
object. I choose the third option so that my app could be more easily
distributed.
kieran.osullivan@blindpenguin.org> wrote in message
news:1124808976.225286.72180@z14g2000cwz.googlegroups.com...
I wrote a VB.Net application which downloads emails and then deletes
them off the server the application works fine on Exchange 2000 however
I can't delete emails on exchange 2003. If I login to the web
interface of Exchange I can delete emails but I can't delete with
WebDev.
Can anyone tell me if there is a security setting which has changed
between 2000 and 2003.
Thanks
|
|
|
| Back to top |
|
 |
Brett Smith
Guest
|
Posted:
Tue Aug 23, 2005 5:00 pm Post subject:
Re: WebDev Delete Problem |
|
|
Your article was exactly what I used to solve my problem, the only changes I
had to make were port it to VB.NET, wrap it in a class, and add a small
subroutine to force the computer to accept unsigned SSL certs (my choice to
not force signed certs, not directly related to forms auth versus basic
auth)
I've just been meaning to thank you for a while for the article, and haven't
gotten around to it yet.
"Henning Krause [MVP - Exchange]" <newsgroups.remove@this.infinitec.de>
wrote in message news:es7ECd$pFHA.2076@TK2MSFTNGP14.phx.gbl...
| Quote: | Hello,
if you get a "Login-timeout" error with your WebDAV request, you are a
victim of the Form-Based authentication.
I have an arcticle on my website along with source code:
http://www.infinitec.de/exchange/howtos/webdavwithfba.aspx
Greetings,
Henning Krause
MVP - Exchange
http://www.infinitec.de
"Brett Smith" <bsmith at comppro dot com> wrote in message
news:%23wXy7W$pFHA.2592@TK2MSFTNGP12.phx.gbl...
I don't know if the issue is the same, but when I migrated to exchange
2003 I had trouble because of OWA using Forms authentication instead of
basic authentication.
The three choices I had were to remove forms auth, create a new exchange
IIS site and have it use basic, or to write a function to perform the
forms auth, and return the cookies (2 of them) to use in my
httpwebrequest object. I choose the third option so that my app could be
more easily distributed.
kieran.osullivan@blindpenguin.org> wrote in message
news:1124808976.225286.72180@z14g2000cwz.googlegroups.com...
I wrote a VB.Net application which downloads emails and then deletes
them off the server the application works fine on Exchange 2000 however
I can't delete emails on exchange 2003. If I login to the web
interface of Exchange I can delete emails but I can't delete with
WebDev.
Can anyone tell me if there is a security setting which has changed
between 2000 and 2003.
Thanks
|
|
|
| Back to top |
|
 |
|
|
|
|