I want to upload file to a remote file server that is protected with username and password
in ASP.NET i was suggested to use
SecurityManager sm = new SecurityManager();sm.UserName = ConfigurationManager.AppSettings["sharedUsername"];sm.Password = ConfigurationManager.AppSettings["sharedPassword"];sm.StartImpersonation();if (File.Exists(Server.MapPath("~/xxxxxx/" + filename.Trim())))//do some stuffsm.EndImpersonation();But in the blazor server-side (.NET8), this doesnt work
So if somebody has any idea, please, dont be shy :)