Impersonation Stops Language Resources Working

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

  1. #1

    Default Impersonation Stops Language Resources Working

    (This is a repost from the internationalization group where I am getting no joy)

    Hi,

    My ASP.NET application has internationalised string resources via
    satellite assemblies in the usual way. Everything was working fine
    and changing culture correctly switched the resources into the
    appropriate languages.

    However, switching on impersonation in web.config stops this working
    and I always get the default culture. i.e. my web.config has the
    lines:

    <authentication mode="None" />
    <identity impersonate="true" />

    and it my insternationalisation doesn't work and everything is always
    in English, but changing this to impersonate="false" and it all works
    perfetly again.

    I have tried numerous different users as the anonymous user including
    ISR_<machinename>, ASPNET and local administrators and nothing works.

    Any help gratefully appreciated.

    Thanks,
    Matthew
    Matthew Guest

  2. Similar Questions and Discussions

    1. Acrobat Pro does not open because : "language resources"
      Suddenly (I think after an update about a month ago) Acrobat Pro 6.0.2 refuses to open. I get this message : «The currently selected language...
    2. Macromedia Flash Player installed and working properly suddenlys stops working..
      No idea what has caused the Flash player to stop working. This is not my machine but a relatives who has asked for help over the T'giving...
    3. Impersonation and UNC network resources
      Hi guys - I've been getting knotted up with this for a few days now. Originally I was in an ASP.NET context (using VFP8 OleDB to access tables...
    4. Impersonation not working with Asynchronous calls
      I make a connection from my web service function to a sql database (on another machine) using Windows Only authentication and the following in my...
    5. ASP stops working.
      sshilo wrote: Sorry, these orphaned objects are inaccessible. When the page that created them abnormally went out of scope, the reference to the...
  3. #2

    Default Re: Impersonation Stops Language Resources Working

    How are you assigning the culture? How are you selecting the culture that
    should be used?


    "Matthew" <comedy_limp@yahoo.co.uk> wrote in message
    news:e3b7c0b0.0408250148.715e1bc6@posting.google.c om...
    > (This is a repost from the internationalization group where I am getting
    > no joy)
    >
    > Hi,
    >
    > My ASP.NET application has internationalised string resources via
    > satellite assemblies in the usual way. Everything was working fine
    > and changing culture correctly switched the resources into the
    > appropriate languages.
    >
    > However, switching on impersonation in web.config stops this working
    > and I always get the default culture. i.e. my web.config has the
    > lines:
    >
    > <authentication mode="None" />
    > <identity impersonate="true" />
    >
    > and it my insternationalisation doesn't work and everything is always
    > in English, but changing this to impersonate="false" and it all works
    > perfetly again.
    >
    > I have tried numerous different users as the anonymous user including
    > ISR_<machinename>, ASPNET and local administrators and nothing works.
    >
    > Any help gratefully appreciated.
    >
    > Thanks,
    > Matthew

    Nicole Calinoiu 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