Is there any way to do this? I have two different applications :
- Asp.Net MVC application - A
- Asp.Net Core WebApi application - B
From A, on an event,
- I want to send data to B, Create a session at B, Store some data
Return
Now, In the same browser session if the same event occurs again,
send data to B
retrieve the session value at B which was set in the first request
- update data
- return
I can make an AJAX call from A to B, the issue I am facing here is on every request it generates a new session.
I understand, that cookie is set in the browser from Application A, and so every time it calls Application B, a new session is generated.
Can I achieve this using out-proc session mode?
Thanks.