Accessing Django Application from asp.net web server using link button - django-rest-framework

we have a web application based on asp.net already in place and now we have developed another web application using Django framework. We have only one Domain purchased. How can we access django application using the same domain . Moreover can we access django application using link from asp web application or the same authentication as using in ASP web applicaiton

Related

Which is the best way to use OKTA SSO, for my asp.net MVC web application(C#)

Which is the best way to use OKTA SSO, for my asp.net MVC web application(C#) and I need to integrate outlook to my web application where I need to access user address book(Outlook).

How to login to ASP.NET Core MVC application from Web API?

I have an Angular 5 application which uses a REST API for its back-end process. And other is pure ASP.NET Core MVC application.
Both have their own AccountController. I have to make an integration in a way that the Angular application has to call the ASP.NET MVC application. When it calls the ASP.NET MVC application, it has to login to that application and returns the Razor page. From this point, user will access the ASP.NET MVC application.
Both the applications have their own databases. But the user details will be stored in both applications.
My question is, how to achieve this?
If any article or documentation is available, it would be helpful if you share it.

Owin Middleware for the Authentication,during the windows service host

I'm hosting my web API which is of Class library project type using windows service and OWIN. The web API got hosted but the OWIN middle wares were not added to the IAppBuilder. When i tried with the web API of ASP.NET Web Application project type. Its been added to the IAppBuilder. Is there any thing i should do to add the middle wares for the Class library project . Because of the this I'm not able to validate the access Token and the claims transformation .

Using both Anonymous and Windows Authentication in ASP.NET Web API

I've implemented an ASP.NET Web API application having one regular controller (HomeController) and several other Web API controllers. I have already the handled authentication for the API controllers (using anonymous authentication together with custom authorization attributes), but i want to restrict the access to the MVC controller and all its actions using Windows Authentication, without affecting the rest of the controllers.
Is it possible to achieve this? Can Windows and Anonymous authentication be mixed is such a way in a Web API application?
Note: the application will be hosted in IIS.

Should I create ASP.net web app or ASP.net MVC with ServiceStack?

I have a working ServiceStack application which started off part of my MVC application which contains my Jquery Mobile web site.
The services are growing and I am thinking about moving the ServiceStack code to separate app but not sure whether I should host service stack in an Asp.net web application or in a MVC application.
Are there any benefits down the road if I go one way or the other? In the future I need to introduce authentication for the services, would that be a factor in deciding?
I would host it on an vanilla ASP.NET host, since it's a more barebones web host than MVC which adds additional (and un-necessary) HTTP Modules and overhead.

Resources