skip to Main Content

My ASP.NET MVC authentication sign out shortly – Plesk

I wrote an ASP.NET MVC web site and use authentication. I set a cookie like this FormsAuthentication.SetAuthCookie(login.UserName, login.RememberMe); This cookie is created correctly, but user is signed out very soon. This is my web.config: <authentication mode="Forms"> <forms name="LightOilManager" loginUrl="/Customer/Home/Login" defaultUrl="/"…

VIEW QUESTION

How to access localhost from within docker image

I have B application which calls A application. Here are the source code for them: A application : @SpringBootApplication @RestController @Slf4j public class AApplication { public static void main(String[] args) { SpringApplication.run(AApplication.class, args); } @GetMapping("call_a") public double callA() { log.info("calling…

VIEW QUESTION
Back To Top
Search