Filomeon
Filomeon
CC#
Created by Filomeon on 4/2/2025 in #help
Identity, .NET Api and Angular client
I will start setting up this proxy tomorrow, I have a lot to learn about these things. Thanks for the help 👍
26 replies
CC#
Created by Filomeon on 4/2/2025 in #help
Identity, .NET Api and Angular client
Ok I see, thank you very much
26 replies
CC#
Created by Filomeon on 4/2/2025 in #help
Identity, .NET Api and Angular client
I m thinking about something, I am sorry if that ping bothers you, tell me if it does... @TeBeCo @Sossenbinder I have a question for you guys, because I m kind of little bit tired of doing localhost development. What do you think about this : I would start a free trial with Azure cloud, and I would host the most basic weatherforecast app (Angular client and ASP.NET API server), just to see how these apps communicate in a real world scenario. With zero authentication at first. Then I would build up from there, and add feature by feature. Do you think this could be a good idea ? Or you may think that, since I struggled to even make it work in localhost, it would be a bad idea to try it in the cloud ? Or : since I would host the client and the server on the same domain, maybe it would be easier though ?
26 replies
CC#
Created by Filomeon on 4/2/2025 in #help
Identity, .NET Api and Angular client
I m looking for a proxy solution right now ^^
26 replies
CC#
Created by Filomeon on 4/2/2025 in #help
Identity, .NET Api and Angular client
Can I do that at the stade of development ? And, is localhost not already considered the same domain, when only the port seems to differ ? I think I need to know a lot more about these deployment topics and cookie authentication methods 😅 I will search more documentation about these, I feel like its totally out of my comprehension, maybe I need more theory first ?
26 replies
CC#
Created by Filomeon on 4/2/2025 in #help
Identity, .NET Api and Angular client
You mean, maybe I used a cookie configuration but not the good one (the one supposed to work for Identity) ? I need to look at that, that was the ConfigurateApplication that I found with Copilot so it may be totally wrong 😁
26 replies
CC#
Created by Filomeon on 4/2/2025 in #help
Identity, .NET Api and Angular client
I have no idea, sorry i dont know a lot about security, I just found this in a google result 😅
26 replies
CC#
Created by Filomeon on 4/2/2025 in #help
Identity, .NET Api and Angular client
they both are localhost, for now haha... Angular is default http://localhost:4200/ and Api is default https://localhost:7216. I just realized right now that my default Angular is not HTTPS, that could be a problem too...
26 replies
CC#
Created by Filomeon on 4/2/2025 in #help
Identity, .NET Api and Angular client
with "CSRF" attacks for example, idk
26 replies
CC#
Created by Filomeon on 4/2/2025 in #help
Identity, .NET Api and Angular client
Ok, so I found that using this
builder.Services.ConfigureApplicationCookie(options =>
{
options.Cookie.SameSite = SameSiteMode.None;
options.Cookie.SecurePolicy = CookieSecurePolicy.Always;
});
builder.Services.ConfigureApplicationCookie(options =>
{
options.Cookie.SameSite = SameSiteMode.None;
options.Cookie.SecurePolicy = CookieSecurePolicy.Always;
});
it works but I m not sure if its considered safe and secure .. ? 🤔
26 replies
CC#
Created by Filomeon on 3/28/2025 in #help
Default literal and non nullable reference types
Thank you !!
90 replies
CC#
Created by Filomeon on 3/28/2025 in #help
Default literal and non nullable reference types
With the stack pointer and the function calls, I think I can now understand better what I saw when I looked at the Intermediate language yesterday with ILSpy, with things like ldstr, stloc and ldloca 😮
90 replies
CC#
Created by Filomeon on 3/28/2025 in #help
Default literal and non nullable reference types
OK wow I think I get it
90 replies
CC#
Created by Filomeon on 3/28/2025 in #help
Default literal and non nullable reference types
That's crazy, it it still just an int 😮
90 replies
CC#
Created by Filomeon on 3/28/2025 in #help
Default literal and non nullable reference types
That s curious, I need to try something with the ref keyword, I wonder what is the exact type of "third" and how I can use it
90 replies
CC#
Created by Filomeon on 3/28/2025 in #help
Default literal and non nullable reference types
So since the values are stored directly in the variables, if I would write something like int myNumber = 42; and then int second = myNumber; it would mean there are now two different "42" values stored in the stack since it copied the value of myNumber. And then if I do something like ref int third = ref second; it would not create a third copy of the "42" value, but it would instead put the reference pointing to "second" inside the "third" variable 👍
90 replies
CC#
Created by Filomeon on 3/28/2025 in #help
Default literal and non nullable reference types
Thank you again for taking the time to answer me 🫂 it is very interesting
90 replies
CC#
Created by Filomeon on 3/28/2025 in #help
Default literal and non nullable reference types
I did a melting pot with references and value types in my head hehe, but now its way more clear
90 replies
CC#
Created by Filomeon on 3/28/2025 in #help
Default literal and non nullable reference types
Ok my bad, I think I knew this but I forgot it at some point 😅 thanks !
90 replies
CC#
Created by Filomeon on 3/28/2025 in #help
Default literal and non nullable reference types
And here I think I don't understand the words "reference variant" and "stored inline"
90 replies