Hi,
I am trying to implement SSO using Thinktecture Identity Server. As part of this I am implementing custom view service. authentication process fails as it tries to post the form using app.FormPostResponse.html which reference app.FormPostResponse.js file.
this js files returns 404 error.
Host Configuration:
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.Map("/identity", coreApp =>
{
var factory = InMemoryFactory.Create(
clients: Clients.Get(),
scopes: Scopes.Get());
factory.UserService = new Registration<IUserService>(typeof(LocalRegistrationUserService));
factory.ViewService = new Registration<IViewService>(typeof(CustomViewService));
var idsrvOptions = new IdentityServerOptions
{
...
Go to the complete details ...