Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Credentials problem

    Hello,

    I have written an asp.net application which collects some messages from Exchange Server 2003 in a public folder, using WebDav protocol.

    When I run it on my machine, the interaction with Exchange works well, but when I deploy the application on an other server of our intranet, i can't reach the Exchange Server public folder, DefaultCredentials doesn't seem to transfert proper informations.

    On my web server, user authenticate with windows authentication, and anonymous is disabled. Also on the Exchange Server anonymous is disabled.

    OWA is installed and works prerfectly.

    Does anyone have a solution, or an idea of my problem

    Regards
    Eric Vantroeyen Guest

  2. Similar Questions and Discussions

    1. Passing credentials problem
      I am at a loss. I have a web service which uses Windows Integrated Security. If I use the following code to call my web service: WServ wserv...
    2. vpn credentials
      we have a c# windows application that grabs a users netowork credentails. we now need to allow users to run the application over VPN (on non domain...
    3. Problem reading encrypted credentials from registry
      The user that you are running ASP.NET as (ASPNET, or some customer user) will need to have access to the registry to read it.
    4. User Credentials problem with WebService that uses FileIO....Help!!??
      I am having some serious problems with a WebService that I created that drops a file to a local directory. I have the WebService pointed outside so...
    5. .NET IIS to IIS credentials problem...
      Hi, I'm writing this off the top of my head as I don't have the exact information to hand. We are attempting to set up a secure internet site...
  3. #2

    Default Re: Credentials problem

    Hi Eric,
    > but when I deploy the application on an other server of our intranet, i
    > can't reach the Exchange Server public folder,
    I believe that the authenticated user (or the impersonated user)
    does not have permissions to access Exchange Server.

    What do you think?
    --
    Hope this helps,
    Zeeshan Mustafa, MCSD


    "Eric Vantroeyen" <EricVantroeyen@discussions.microsoft.com> wrote in
    message news:5736DEBE-6E9E-4CCE-A615-8C10189709AE@microsoft.com...
    > Hello,
    >
    > I have written an asp.net application which collects some messages from
    Exchange Server 2003 in a public folder, using WebDav protocol.
    >
    > When I run it on my machine, the interaction with Exchange works well, but
    when I deploy the application on an other server of our intranet, i can't
    reach the Exchange Server public folder, DefaultCredentials doesn't seem to
    transfert proper informations.
    >
    > On my web server, user authenticate with windows authentication, and
    anonymous is disabled. Also on the Exchange Server anonymous is disabled.
    >
    > OWA is installed and works prerfectly.
    >
    > Does anyone have a solution, or an idea of my problem
    >
    > Regards

    M. Zeeshan Mustafa Guest

  4. #3

    Default Re: Credentials problem

    My guess is that this is a Kerberos delegation problem. If you use
    Integrated authentication, you get an impersonation token on the IIS side.
    This type of token will not hop to another machine on the network unless
    Keberos delegation is enabled.

    DefaultCredentials takes advantage of the underlying security system and
    would have this exact problem.

    I'd suggest reading up on Kerberos delegation to see what you can learn
    about it.

    Joe K.

    "Eric Vantroeyen" <EricVantroeyen@discussions.microsoft.com> wrote in
    message news:5BBBC001-41D7-476E-83DC-D5F1D8562296@microsoft.com...
    > Hi,
    >
    > in fact the authenticated user as access to the server.
    >
    > When I test the access from my machine, or from the web server in both
    case I use the same account. In one case it works ... but the client and the
    server is on the same machine, that's the only difference.
    >
    > Regards
    >
    > "M. Zeeshan Mustafa" wrote:
    >
    > > Hi Eric,
    > >
    > > > but when I deploy the application on an other server of our intranet,
    i
    > > > can't reach the Exchange Server public folder,
    > >
    > > I believe that the authenticated user (or the impersonated user)
    > > does not have permissions to access Exchange Server.
    > >
    > > What do you think?
    > > --
    > > Hope this helps,
    > > Zeeshan Mustafa, MCSD
    > >
    >

    Joe Kaplan \(MVP - ADSI\) Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139