asp.net mvc - Microsoft Owin, unable to reach Azure B2C from comporate network -


i have asp.net mvc web application running on server behind firewall. "forms authenticate" replaced azure b2c. used microsoft's owin library.

i used following tutorial started azure b2c authentication.

authentication working locally on development machine, when publishing server behind firewall, timing out, when performing

public void signin() {         if (!request.isauthenticated)         {             httpcontext.getowincontext().authentication.challenge(new authenticationproperties { redirecturi = "/" }, openidconnectauthenticationdefaults.authenticationtype);         }  } 

is network problem? needs done on network side make work? open firewall on ports or use proxy connect outside world(azure b2c)? should in both directions?

it's doing http 302 redirect, long can connect https://login.microsoftonline.com there on port 443 (https), should work.


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -