W
Wesley77
I have an ASP.NET web service (.net 3.0) deployed to a foreign web server. We
have encountered a bug where the regional settings of the service account
running at the foreign site contain a decimal separator of "," which breaks
our code where it is trying to parse a string value containing a "."
I cannot push new code to the server right now without going through a
lengthy QC process, but I can update the web.config file. I already have
included <globalization uiCulture="en" culture="en-us"/> in my web config
file, however, since the UseUserOverride setting is true, it still attempts
to use a "," as a decimal separator.
How do I set the UseUserOverride setting to false using just the web.config
file so that it ignore's the regional settings of the account running the web
service, and only uses my defined culture of "en-us" ???
Thanks!
Wesley
have encountered a bug where the regional settings of the service account
running at the foreign site contain a decimal separator of "," which breaks
our code where it is trying to parse a string value containing a "."
I cannot push new code to the server right now without going through a
lengthy QC process, but I can update the web.config file. I already have
included <globalization uiCulture="en" culture="en-us"/> in my web config
file, however, since the UseUserOverride setting is true, it still attempts
to use a "," as a decimal separator.
How do I set the UseUserOverride setting to false using just the web.config
file so that it ignore's the regional settings of the account running the web
service, and only uses my defined culture of "en-us" ???
Thanks!
Wesley