aspnet / AspNetKatana

Microsoft's OWIN implementation, the Katana project
Apache License 2.0
960 stars 331 forks source link

Intermitted login issue even though the IdP logins were successful #437

Closed razmy-hathy closed 2 years ago

razmy-hathy commented 2 years ago

I observed some strange behaviour and not sure this is because there are some configuration needs to be done in owin middleware parameter section in the Startup.Auth.cs file. Please find below for the scenarios for further details.

I logged in to the application via the IdP and closed the browser without logging out from the application and from the Idp. I reopened the browser and tried to login again, but I was unable to login back to the application even though the browser was redirected from the IdP after a successful login with previous session acquired by the user. In this case, the user should be able to login without an issue.

To debug the application, I examined the owin openid connect intercept method (SecurityTokenValidated) and I checked the value for the “context.AuthenticationTicket.Identity.IsAuthenticated” variable. The value of the variable was true; however, in the controller the “User.Identity.IsAuthenticated” variable was false. This the issue causing the user not to login into the application. Second scenario, I tried to login to the application with two browser instances in a same machine. One with incognito mode and another one with normal mode. I was able to login into only to one browser and was not able to login to the other browser although the IdP login was successful as I explained in the previous scenario.

However, the users can login into the application only after the IIS server restart. I have given below the code for OpenIdConnect configuration and the controller class. Please help me to find the issue.

Startup.Auth.cs

public void ConfigureAuth(IAppBuilder app)
{
// Configure the db context, user manager and signin manager to use a single instance per request
app.CreatePerOwinContext(ApplicationDbContext.Create);
app.CreatePerOwinContext(ApplicationUserManager.Create);
app.CreatePerOwinContext(ApplicationSignInManager.Create);
app.CreatePerOwinContext(ApplicationRoleManager.Create);

        app.SetDefaultSignInAsAuthenticationType(CookieAuthenticationDefaults.AuthenticationType);
        app.UseCookieAuthentication(new CookieAuthenticationOptions());
        app.UseOpenIdConnectAuthentication(
            new OpenIdConnectAuthenticationOptions
            {
                AuthenticationMode = AuthenticationMode.Passive,
                // Sets the ClientId, authority, RedirectUri as obtained from web.config
                ClientId = clientId,
                Authority = authority,
                RedirectUri = redirectUri,
                PostLogoutRedirectUri = redirectUri,
                Scope = OpenIdConnectScope.OpenIdProfile,
                ClientSecret = clientSecret,
                UsePkce = true,
                SaveTokens = true,
                RedeemCode = true,
                // ResponseType is set to request the code id_token - which contains basic information about the signed-in user
                ResponseType = OpenIdConnectResponseType.Code,
                // ValidateIssuer set to false to allow personal and work accounts from any organization to sign in to your application
                // To only allow users from a single organizations, set ValidateIssuer to true and 'tenant' setting in web.config to the tenant name
                // To allow users from only a list of specific organizations, set ValidateIssuer to true and use ValidIssuers parameter
                TokenValidationParameters = new TokenValidationParameters()
                {
                    ValidateIssuer = true
                },

                // OpenIdConnectAuthenticationNotifications configures OWIN to send notification of failed authentications to OnAuthenticationFailed method
                Notifications = new OpenIdConnectAuthenticationNotifications
                {
                    // Fired when authenticated faild
                    AuthenticationFailed = (context) =>
                    {
                        context.HandleResponse();
                        context.Response.Redirect("/Error/AuthErrorPage/?errormessage=" + context.Exception.Message);
                        return Task.FromResult(0);
                    },

                    SecurityTokenValidated = (context) =>
                    {
                        var identity = context.AuthenticationTicket.Identity;
                        string externalUserId = identity.FindFirst(ClaimTypes.NameIdentifier).Value;
                        Claim emailClaim = identity.FindFirst("preferred_username");
                        // Remove the name identity to insert user id to it.
                        Claim nameIdentifier = identity.FindFirst(ClaimTypes.NameIdentifier);
                        identity.RemoveClaim(nameIdentifier);
                        if (emailClaim != null)
                        {
                            AppUser user = service.GetUserByEmail(emailClaim.Value);
                            externalUserId = user.ExternalUserId;
                        }
                        List<string> userRoles = service.GetUserRolesNames(externalUserId);
                        var appUser = service.GetUserByUserEXternalId(externalUserId);
                        if (appeUser == null)
                        {
                            context.HandleResponse();
                            context.Response.Redirect("/Error/AuthErrorPage/?errormessage=" + "User does not exist in database");
                            return Task.FromResult(0);
                        }
                        var claims = new List<Claim>();
                        foreach (var role in userRoles)
                        {
                            claims.Add(new Claim(ClaimTypes.Role, role));
                        }
                        claims.Add(new Claim(ClaimTypes.Name, appUser.UserName));
                        claims.Add(new Claim(ClaimTypes.NameIdentifier, appUser.Id.ToString()));
                        identity.AddClaims(claims);

                        return Task.FromResult(0);
                    }
                }
            }
        );
    }

Controller

public class AuthController : Controller
{
       // GET: OpenIdConnectHome
       public ActionResult Index()
       {
          if (!User.Identity.IsAuthenticated){
              return View();
          } else {
             return RedirectToAction("Index", "Home");
          }
       }

    /// <summary>
    /// Send an OpenID Connect sign-in request.
    /// Alternatively, you can just decorate the SignIn method with the [Authorize] attribute
    /// </summary>
    public void SignIn()
    {
        if (!User.Identity.IsAuthenticated)
        {
            HttpContext.GetOwinContext().Authentication.Challenge(
                new AuthenticationProperties { RedirectUri = "/" },
                OpenIdConnectAuthenticationDefaults.AuthenticationType);
        }
    }

    [Authorize]
    /// <summary>
    /// Send an OpenID Connect sign-out request.
    /// </summary>
    public ActionResult SignOut()
    {
        HttpContext.GetOwinContext().Authentication.SignOut(
                    CookieAuthenticationDefaults.AuthenticationType);
        return View();
    }

}
Tratcher commented 2 years ago

However, the users can login into the application only after the IIS server restart.

This is concerning, none of the server components are stateful, a restart shouldn't have changed anything. All of the login state is stored in cookies on the client.

There are some debugging steps you can try: 1) Enable server logs and check for any errors: https://github.com/aspnet/AspNetKatana/wiki/Debugging#logging 2) Run the server with the debugger attached and check for any first chance exceptions during the login. 3) Capture a decrypted fiddler trace and share it privately (see the e-mail in my profile). We'd want to ensure the cookies are all flowing as expected.

razmy-hathy commented 2 years ago

@Tratcher C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\machine.config is this the location that I should include the log configuration for owin as given in the step 2

razmy-hathy commented 2 years ago

When I log for the first time to the application, I always get the below error message.

[SocketException (0x2746): An existing connection was forcibly closed by the remote host] System.Net.Sockets.Socket.BeginReceive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, AsyncCallback callback, Object state) +8036958 System.Net.Sockets.NetworkStream.BeginRead(Byte[] buffer, Int32 offset, Int32 size, AsyncCallback callback, Object state) +165

[IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.] System.Net.TlsStream.EndWrite(IAsyncResult asyncResult) +305 System.Net.ConnectStream.WriteHeadersCallback(IAsyncResult ar) +167

[WebException: The underlying connection was closed: An unexpected error occurred on a send.] System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) +762 System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar) +81

[HttpRequestException: An error occurred while sending the request.] System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.IdentityModel.Protocols.d__8.MoveNext() +702

[IOException: IDX20804: Unable to retrieve document from: '[PII is hidden]'.] Microsoft.IdentityModel.Protocols.d8.MoveNext() +1169 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.IdentityModel.Protocols.OpenIdConnect.d3.MoveNext() +391 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.IdentityModel.Protocols.d__24.MoveNext() +865

[InvalidOperationException: IDX20803: Unable to obtain configuration from: '[PII is hidden]'.] Microsoft.IdentityModel.Protocols.d24.MoveNext() +1570 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.Owin.Security.OpenIdConnect.d10.MoveNext() +618 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.Owin.Security.Infrastructure.d40.MoveNext() +349 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.Owin.Security.Infrastructure.d39.MoveNext() +447 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.Owin.Security.Infrastructure.d34.MoveNext() +196 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.Owin.Security.Infrastructure.d5.MoveNext() +929 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.Owin.Host.SystemWeb.IntegratedPipeline.d7.MoveNext() +197 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.Owin.Security.Infrastructure.d5.MoveNext() +735 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.AspNet.Identity.Owin.d5.MoveNext() +439 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.AspNet.Identity.Owin.d5.MoveNext() +439 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.AspNet.Identity.Owin.d5.MoveNext() +439 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.AspNet.Identity.Owin.d5.MoveNext() +439 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.Owin.Host.SystemWeb.IntegratedPipeline.d7.MoveNext() +197 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +62 Microsoft.Owin.Host.SystemWeb.IntegratedPipeline.d12.MoveNext() +192 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() +32 Microsoft.Owin.Host.SystemWeb.IntegratedPipeline.StageAsyncResult.End(IAsyncResult ar) +118 System.Web.<>c__DisplayClass11_0.b__0() +41 System.Web.AsyncEventExecutionStep.InvokeEndHandler(IAsyncResult ar) +163 System.Web.AsyncEventExecutionStep.OnAsyncEventCompletion(IAsyncResult ar) +115

However, after refreshing the browser , I can able to view the IdP login screen.

Tratcher commented 2 years ago

Oh, interesting, it's failing to download your OIDC metadata on the first request. Is your server behind a proxy or something?

razmy-hathy commented 2 years ago

Yes it is behind a firewall and it is in aws EC2.

On Wed, Jan 19, 2022 at 8:25 PM Chris Ross @.***> wrote:

Oh, interesting, it's failing to download your OIDC metadata on the first request. Is your server behind a proxy or something?

— Reply to this email directly, view it on GitHub https://github.com/aspnet/AspNetKatana/issues/437#issuecomment-1016794902, or unsubscribe https://github.com/notifications/unsubscribe-auth/AQTUSRLTG7XRNLFSUXCEBBDUW4F4BANCNFSM5L75EX7Q . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you authored the thread.Message ID: @.***>

Tratcher commented 2 years ago

Sorry, I meant do outbound requests also go through an HTTP proxy? What's failing here is an outbound request for a resource.

razmy-hathy commented 2 years ago

Application deployed in the AWS and the IdP is on the client side. Not sure HTTP goes through a proxy. I can get this information from my network team tomorrow. Even though I'm getting this error, after the browser refresh it goes off. Please advise a fix for this issue and the issue I posted initially. I cannot send you the fiddle log for now as it has client sensitive information and my organization policy does not permit me to send any sensitive information outside.

I have created a private application in azure so that I can send you the fiddle logs by using this account. Until that can you give some clue on this.

On Wed, Jan 19, 2022 at 8:43 PM Chris Ross @.***> wrote:

Sorry, I meant do outbound requests also go through an HTTP proxy? What's failing here is an outbound request for a resource.

— Reply to this email directly, view it on GitHub https://github.com/aspnet/AspNetKatana/issues/437#issuecomment-1016807715, or unsubscribe https://github.com/notifications/unsubscribe-auth/AQTUSRODROOOGU5MHCCZYNDUW4H4JANCNFSM5L75EX7Q . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you authored the thread.Message ID: @.***>

Tratcher commented 2 years ago

Since this is an outbound networking failure you can try enabling the logs for the networking stack: https://docs.microsoft.com/en-us/dotnet/framework/network-programming/how-to-configure-network-tracing

razmy-hathy commented 2 years ago

I used below configuration in the machine.config file.

However, I got only the network logs as given below, but no log for owin. Without owin logs, I cannot find the original issue that was posted. System.Net Information: 0 : [16680] Current OS installation type is 'Server'. ProcessId=18056 DateTime=2022-01-20T22:01:03.8265196Z System.Net Information: 0 : [17348] Current OS installation type is 'Server'. ProcessId=5536 DateTime=2022-01-20T22:02:52.4549817Z System.Net Information: 0 : [14272] Current OS installation type is 'Server'. ProcessId=19388 DateTime=2022-01-20T22:05:12.0058580Z System.Net Information: 0 : [13240] Current OS installation type is 'Server'. ProcessId=7628 DateTime=2022-01-20T22:07:48.1859265Z System.Net Information: 0 : [19280] Current OS installation type is 'Server'. ProcessId=15024 DateTime=2022-01-20T22:09:44.5272041Z System.Net Information: 0 : [11464] Current OS installation type is 'Server'. ProcessId=14036 DateTime=2022-01-20T22:33:58.2806448Z System.Net Information: 0 : [15320] Current OS installation type is 'Server'. ProcessId=10156 DateTime=2022-01-20T22:34:03.5449522Z System.Net Information: 0 : [12676] Current OS installation type is 'Server'. ProcessId=9124 DateTime=2022-01-20T22:34:07.3326956Z System.Net Information: 0 : [15700] Current OS installation type is 'Server'. ProcessId=14272 DateTime=2022-01-20T22:34:09.2634382Z System.Net Information: 0 : [13404] Current OS installation type is 'Server'. ProcessId=16416 DateTime=2022-01-20T22:36:21.8208874Z System.Net Information: 0 : [12760] Current OS installation type is 'Server'. ProcessId=3424 DateTime=2022-01-20T22:41:38.7996161Z System.Net Information: 0 : [5568] Current OS installation type is 'Server'. ProcessId=13068 DateTime=2022-01-20T22:43:36.3622691Z System.Net Information: 0 : [11752] Current OS installation type is 'Server'. ProcessId=12356 DateTime=2022-01-20T23:05:29.7211773Z Please check the configuration file I provided in the first post and let me know if I have to change any parameters. I did another test. I ran the application in the IDE and logged in to the application. After a successful login in a browser instance, I opened another browser with incognito mode and I tried to login from the second instance of the browser. The second was login unsuccessful even though the IdP login was successful. Same thing is happening when the same user tries to login from different machines while the application is running on the server. Please help me on this as I need to close this issue ASAP. On Wed, Jan 19, 2022 at 9:49 PM Chris Ross ***@***.***> wrote: > Since this is an outbound networking failure you can try enabling the logs > for the networking stack: > > https://docs.microsoft.com/en-us/dotnet/framework/network-programming/how-to-configure-network-tracing > > — > Reply to this email directly, view it on GitHub > , > or unsubscribe > > . > Triage notifications on the go with GitHub Mobile for iOS > > or Android > . > > You are receiving this because you authored the thread.Message ID: > ***@***.***> >
Tratcher commented 2 years ago

I would have expected that to go in the web.config, not the machine.config.

If this is an urgent issue you'll need to contact https://support.microsoft.com/. Github is not a great channel for debugging complex issues.

razmy-hathy commented 2 years ago

Hi Chris,

Below is given the log for the below scenario. In Second scenario, I tried to login to the application with two browser instances in the same machine. One with incognito mode and another one with normal mode. I was able to login into only one browser and was not able to login to the other browser although the IdP login was successful as I explained in the previous scenario. If you could help me on this issue that would be greatly appreciated.

Verbose logs are written to: C:\Users\MHATHY\AppData\Local\Temp\visualstudio-js-debugger.txt 'iisexpress.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0b77a5c561934e089\mscorlib.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Web.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0b77a5c561934e089\System.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0b77a5c561934e089\System.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.031bf3856ad364e35\System.Web.ApplicationServices.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Configuration.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0b77a5c561934e089\System.Xml.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: Domain 2): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0b77a5c561934e089\mscorlib.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Web.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0b77a5c561934e089\System.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0b77a5c561934e089\System.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.031bf3856ad364e35\System.Web.ApplicationServices.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Configuration.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0b77a5c561934e089\System.Xml.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Runtime.Caching.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Runtime.Caching.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. System.Net Information: 0 : [37496] Current OS installation type is 'Client'. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0b03f5f7f11d50a3a\Microsoft.JScript.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\82fd5521\00a7bf79_6083d501\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Web.PageInspector.Loader\v4.0_1.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Web.PageInspector.Loader.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\6c1cacd4\00a7bf79_6083d501\WebMatrix.WebData.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\16432946\00a7bf79_6083d501\System.Web.WebPages.Razor.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\58154781\00a7bf79_6083d501\System.Web.Mvc.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\5a17dbd9\00a7bf79_6083d501\System.Web.WebPages.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\cdfc99d1\00a7bf79_6083d501\System.Web.WebPages.Deployment.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\6b1fff35\00a7bf79_6083d501\System.Web.Optimization.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\f8a7e895\007462f4_9543d701\Microsoft.Owin.Host.SystemWeb.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\Microsoft\Web Tools\Browser Link\Microsoft.WebTools.BrowserLink.Runtime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\2210b17b\00d4f07a_6083d501\Microsoft.Web.Infrastructure.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\3a641151\00a7bf79_6083d501\WebMatrix.Data.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\7942e199\00a7bf79_6083d501\System.Web.Razor.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\App_global.asax.xyantvyf.dll'. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\3c3c5de0\1179e1dd_9513d801\abc.Profete.Web.dll'. Symbols loaded. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\373a34e9\2bf4384c_4dfed701\abc.Profete.Service.dll'. Symbols loaded. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.031bf3856ad364e35\System.ServiceModel.Activation.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.031bf3856ad364e35\System.Web.Extensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\86060ef0\0fbb7972_6ff0d701\DevExpress.Web.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\efa1f8ac\00a7bf79_6083d501\Microsoft.AspNet.TelemetryCorrelation.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\772e7c32\00a7bf79_6083d501\Microsoft.AI.Web.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\5a8619ac\00a7bf79_6083d501\Microsoft.ApplicationInsights.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0b77a5c561934e089\System.Xml.Linq.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\4f60acfa\00a7bf79_6083d501\Microsoft.AI.DependencyCollector.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\5a5d953e\00a7bf79_6083d501\Microsoft.AI.WindowsServer.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: Domain 3): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0b77a5c561934e089\mscorlib.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Web.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\5a5d953e\00a7bf79_6083d501\Microsoft.AI.WindowsServer.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.WindowsAzure.ServiceRuntime\v4.0_2.7.0.031bf3856ad364e35\Microsoft.WindowsAzure.ServiceRuntime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0b77a5c561934e089\System.Xml.Linq.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0b77a5c561934e089\System.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0b77a5c561934e089\System.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Configuration.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0b77a5c561934e089\System.Xml.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\msshrtmi\v4.0_2.7.0.031bf3856ad364e35\msshrtmi.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\msshrtmi\v4.0_2.7.0.031bf3856ad364e35\msshrtmi.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. Microsoft.WindowsAzure.ServiceRuntime Information: 100 : Role environment . INITIALIZING Microsoft.WindowsAzure.ServiceRuntime Information: 100 : Role environment . INITIALED RETURNED. HResult=-2147024894 Microsoft.WindowsAzure.ServiceRuntime Error: 102 : Role environment . FAILED TO INITIALIZE. hr: -2147024894 'iisexpress.exe' (CLR v4.0.30319: Domain 3): Unloaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0b77a5c561934e089\mscorlib.dll' 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Unloaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Web.dll' 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Unloaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\5a5d953e\00a7bf79_6083d501\Microsoft.AI.WindowsServer.dll' 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Unloaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.WindowsAzure.ServiceRuntime\v4.0_2.7.0.031bf3856ad364e35\Microsoft.WindowsAzure.ServiceRuntime.dll' 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Unloaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0b77a5c561934e089\System.Xml.Linq.dll' 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Unloaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0b77a5c561934e089\System.dll' 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Unloaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0b77a5c561934e089\System.Core.dll' 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Unloaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Configuration.dll' 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Unloaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0b77a5c561934e089\System.Xml.dll' 'iisexpress.exe' (CLR v4.0.30319: AppInsightsDomain-aa66d441-0ff6-47a8-b0e6-9550e00348bb): Unloaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\msshrtmi\v4.0_2.7.0.0__31bf3856ad364e35\msshrtmi.dll' 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\b21b29a7\00a7bf79_6083d501\Microsoft.AI.PerfCounterCollector.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\a3ba4e81\00d4f07a_6083d501\System.Diagnostics.DiagnosticSource.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\c3d567da\00a7bf79_6083d501\Microsoft.AI.ServerTelemetryChannel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. The thread 0x7168 has exited with code 0 (0x0). 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Net.Http\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Net.Http.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. System.Net.Http Verbose: 0 : [37496] Entering HttpClientHandler#39070558::.ctor() System.Net.Http Verbose: 0 : [37496] Exiting HttpClientHandler#39070558::.ctor() System.Net.Http Verbose: 0 : [37496] Entering HttpClient#16090703::.ctor(HttpClientHandler#39070558) System.Net.Http Information: 0 : [37496] Associating HttpClient#16090703 with HttpClientHandler#39070558 System.Net.Http Verbose: 0 : [37496] Exiting HttpClient#16090703::.ctor() System.Net.Http Verbose: 0 : [37496] Entering HttpClient#16090703::.ctor(HttpClientHandler#39070558) System.Net.Http Verbose: 0 : [37496] Exiting HttpClient#16090703::.ctor() 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\105c9523\00a7bf796083d501\Microsoft.AI.Agent.Intercept.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\PrivateAssemblies\Runtime\Microsoft.VisualStudio.Debugger.Runtime.Desktop.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\IntelliTrace\Microsoft.IntelliTrace.TelemetryObserver.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'Anonymously Hosted DynamicMethods Assembly'. Application Insights Telemetry (unconfigured): {"name":"Microsoft.ApplicationInsights.Message","time":"2022-01-28T22:15:55.5176621Z","tags":{"ai.cloud.roleInstance":" SWL1YFVQQ2.abc.com","ai.operation.id ":"c20a6c6fe134cc418a16aa4057a7cebc","ai.operation.parentId":"|c20a6c6fe134cc418a16aa4057a7cebc.b94c6490"," ai.operation.name":"GET /","ai.operation.syntheticSource":"SDKTelemetry","ai.location.ip":"127.0.0.1","ai.internal.sdkVersion":"dotnet:2.10.0-31626"},"data":{"baseType":"MessageData","baseData":{"ver":2,"message":"AI: Diagnostic message: Performance counters are unavailable when the application is running under IIS Express. Use EnableIISExpressPerformanceCounters element with a value of 'true' within the Performance Collector Module element to override this behavior."}}} The parameters to the Event method do not match the parameters to the WriteEvent method. This may cause the event to be displayed incorrectly. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0b77a5c561934e089\System.Runtime.Serialization.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0b77a5c561934e089\SMDiagnostics.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'Microsoft.ApplicationInsights.ExceptionTracking'. System.Net.Http Verbose: 0 : [40552] Entering HttpClientHandler#33711845::.ctor() System.Net.Http Verbose: 0 : [40552] Exiting HttpClientHandler#33711845::.ctor() 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0b03f5f7f11d50a3a\Microsoft.CSharp.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. System.Net.Http Verbose: 0 : [40552] Entering HttpClient#37489757::.ctor(HttpClientHandler#33711845) System.Net.Http Information: 0 : [40552] Associating HttpClient#37489757 with HttpClientHandler#33711845 System.Net.Http Verbose: 0 : [40552] Exiting HttpClient#37489757::.ctor() System.Net.Http Verbose: 0 : [40552] Entering HttpClient#37489757::.ctor(HttpClientHandler#33711845) System.Net.Http Verbose: 0 : [40552] Exiting HttpClient#37489757::.ctor() System.Net.Http Verbose: 0 : [40552] Entering HttpRequestMessage#64828693::.ctor(Method: GET, Uri: ' http://169.254.169.254/metadata/instance/compute?format=json&api-version=2017-12-01 ') System.Net.Http Verbose: 0 : [40552] Exiting HttpRequestMessage#64828693::.ctor() System.Net.Http Verbose: 0 : [40552] Entering HttpClient#37489757::SendAsync(HttpRequestMessage#64828693: Method: GET, RequestUri: ' http://169.254.169.254/metadata/instance/compute?format=json&api-version=2017-12-01', Version: 1.1, Content: , Headers: { Metadata: True }) System.Net.Http Verbose: 0 : 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Dynamic\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Dynamic.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. [40552] Entering HttpClientHandler#33711845::SendAsync(HttpRequestMessage#64828693) System.Net Verbose: 0 : [40552] Entering HttpWebRequest#10104599::HttpWebRequest( http://169.254.169.254/metadata/instance/compute?format=json&api-version=2017-12-01#951510431 ) System.Net Information: 0 : [40552] RAS supported: True System.Net Verbose: 0 : [40552] Exiting HttpWebRequest#10104599::HttpWebRequest() System.Net Verbose: 0 : [40552] Entering HttpWebRequest#10104599::HttpWebRequest(uri: ' http://169.254.169.254/metadata/instance/compute?format=json&api-version=2017-12-01', connectionGroupName: '33711845') System.Net Verbose: 0 : [40552] Exiting HttpWebRequest#10104599::HttpWebRequest() System.Net.Http Information: 0 : [40552] Associating HttpRequestMessage#64828693 with HttpWebRequest#10104599 System.Net Verbose: 0 : [27464] Entering HttpWebRequest#10104599::BeginGetResponse() System.Net.Http Verbose: 0 : [40552] Exiting HttpClientHandler#33711845::SendAsync() -> Task1#51288387 System.Net Verbose: 0 : [27464] Entering ServicePoint#35320229::ServicePoint(169.254.169.254:80) System.Net.Http Verbose: 0 : [40552] Exiting HttpClient#37489757::SendAsync() -> Task1#51288387 System.Net Information: 0 : [27464] Associating HttpWebRequest#10104599 with ServicePoint#35320229 System.Net Information: 0 : [27464] Associating Connection#17653682 with HttpWebRequest#10104599 System.Net.Sockets Verbose: 0 : [27464] Entering Socket#42194754::Socket(AddressFamily#2) System.Net.Sockets Verbose: 0 : [27464] Exiting Socket#42194754::Socket() System.Net.Sockets Verbose: 0 : [27464] Entering Socket#15688314::Socket(AddressFamily#23) System.Net.Sockets Verbose: 0 : [27464] Exiting Socket#15688314::Socket() System.Net.Sockets Verbose: 0 : [27464] Entering DNS::TryInternalResolve(169.254.169.254) System.Net.Sockets Verbose: 0 : [27464] Entering Socket#42194754::BeginConnectEx() System.Net.Sockets Verbose: 0 : [27464] Entering Socket#42194754::InternalBind(0.0.0.0:0#0) System.Net.Sockets Verbose: 0 : [27464] Exiting Socket#42194754::InternalBind() System.Net.Sockets Verbose: 0 : [27464] Exiting Socket#42194754::BeginConnectEx() -> ConnectOverlappedAsyncResult#52307948 System.Net Verbose: 0 : [27464] Exiting HttpWebRequest#10104599::BeginGetResponse() -> ContextAwareResult#40535505 System.Net.Sockets Verbose: 0 : [30232] Entering Socket#42194754::EndConnect(ConnectOverlappedAsyncResult#52307948) System.Net.Sockets Verbose: 0 : [30232] Entering Socket#42194754::InternalEndConnect(ConnectOverlappedAsyncResult#52307948) System.Net.Sockets Error: 0 : [30232] Socket#42194754::UpdateStatusAfterSocketError() - NetworkUnreachable System.Net.Sockets Error: 0 : [30232] Exception in Socket#42194754::InternalEndConnect - A socket operation was attempted to an unreachable network 169.254.169.254:80. System.Net.Sockets Verbose: 0 : [30232] Entering Socket#42194754::Dispose() System.Net.Sockets Verbose: 0 : [30232] Entering Socket#15688314::Dispose() System.Net Error: 0 : [30232] Exception in HttpWebRequest#10104599:: - Unable to connect to the remote server. System.Net Verbose: 0 : 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\Microsoft\Web Tools\Browser Link\Microsoft.WebTools.BrowserLink.Tracing.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. [30232] Entering HttpWebRequest#10104599::EndGetResponse() System.Net Error: 0 : [30232] Exception in HttpWebRequest#10104599::EndGetResponse - Unable to connect to the remote server. System.Net.Http Error: 0 : [30232] Exception in HttpClientHandler#33711845::SendAsync - Unable to connect to the remote server. at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar) System.Net.Http Error: 0 : [30232] HttpClient#37489757::SendAsync() - An error occurred while sending HttpRequestMessage#64828693. System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A socket operation was attempted to an unreachable network 169.254.169.254:80 at System.Net.Sockets.Socket.InternalEndConnect(IAsyncResult asyncResult) at System.Net.Sockets.Socket.EndConnect(IAsyncResult asyncResult) at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) --- End of inner exception stack trace --- at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar) --- End of inner exception stack trace --- System.Net Verbose: 0 : [30232] Entering HttpWebRequest#10104599::Abort() System.Net Error: 0 : [30232] Exception in HttpWebRequest#10104599:: - The request was aborted: The request was canceled.. System.Net Verbose: 0 : [30232] Exiting HttpWebRequest#10104599::Abort() System.Net Information: 0 : [30232] ServicePoint#35320229::CloseConnectionGroupInternal(33711845) System.Net Information: 0 : [30232] ServicePoint#35320229::CloseConnectionGroupHelper(connectionGroupName=33711845, closeInternal=True) System.Net Information: 0 : [30232] ServicePoint#35320229::ReleaseConnectionGroup(33711845S>I>) System.Net Information: 0 : [30232] ServicePoint#35320229::ReleaseConnectionGroup, returning(true) System.Net Information: 0 : [30232] ServicePoint#35320229::CloseConnectionGroupHelper, returning(True) System.Net Information: 0 : [30232] Associating HttpWebRequest#10104599 with ConnectStream#24388906 System.Net Information: 0 : [30232] HttpWebRequest#10104599 - Request: GET /metadata/instance/compute?format=json&api-version=2017-12-01 HTTP/1.1

System.Net Information: 0 : [30232] ConnectStream#24388906 - Sending headers { Metadata: True Host: 169.254.169.254 Connection: Keep-Alive }. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\8233360f\df0ff672_6ff0d701\DevExpress.XtraReports.v19.2.Web.WebForms.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\9f525e2d\14ec1372_6ff0d701\DevExpress.Web.Mvc5.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0b77a5c561934e089\System.Data.Linq.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Internals\v4.0_4.0.0.031bf3856ad364e35\System.ServiceModel.Internals.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\92b0904c\00d4f07a_6083d501\Owin.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0b77a5c561934e089\System.Data.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Web.Services.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0b03f5f7f11d50a3a\System.Drawing.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0b03f5f7f11d50a3a\System.EnterpriseServices.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0b77a5c561934e089\System.IdentityModel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0b77a5c561934e089\System.ServiceModel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.031bf3856ad364e35\System.ServiceModel.Web.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.031bf3856ad364e35\System.Activities.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.031bf3856ad364e35\System.ServiceModel.Activities.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.WorkflowServices\v4.0_4.0.0.031bf3856ad364e35\System.WorkflowServices.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Data.DataSetExtensions\v4.0_4.0.0.0b77a5c561934e089\System.Data.DataSetExtensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.DataAnnotations\v4.0_4.0.0.031bf3856ad364e35\System.ComponentModel.DataAnnotations.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Web.DynamicData\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.DynamicData.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\767f4944\007a8e78_6083d501\Antlr3.Runtime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\46055e9f\007a8e78_6083d501\AutoMapper.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\96e40cc0\8541b970_6ff0d701\DevExpress.Charts.v19.2.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\0d74a554\eb09bf70_6ff0d701\DevExpress.CodeParser.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\1451fc96\b436d970_6ff0d701\DevExpress.Data.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\2fbbd586\e0e8df70_6ff0d701\DevExpress.DataAccess.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\73a5faa9\64b1ec70_6ff0d701\DevExpress.Office.v19.2.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\bbb18195\973cfa70_6ff0d701\DevExpress.Pdf.v19.2.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\afe527aa\df950b71_6ff0d701\DevExpress.PivotGrid.v19.2.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\a2a4a6fb\9c741e71_6ff0d701\DevExpress.Printing.v19.2.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\10ca6244\6def3f71_6ff0d701\DevExpress.RichEdit.v19.2.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\16385d79\274e4171_6ff0d701\DevExpress.RichEdit.v19.2.Export.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\30e077df\16ce4471_6ff0d701\DevExpress.Sparkline.v19.2.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\a52313b7\f2e94871_6ff0d701\DevExpress.SpellChecker.v19.2.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\6936d32d\2d178d71_6ff0d701\DevExpress.Utils.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\716bc752\83ad8f71_6ff0d701\DevExpress.Web.ASPxGantt.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\5d17c638\39709071_6ff0d701\DevExpress.Web.ASPxGauges.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\068ddf64\3e8ca271_6ff0d701\DevExpress.Web.ASPxHtmlEditor.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\8a81daf5\a4d4a471_6ff0d701\DevExpress.Web.ASPxPivotGrid.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\34fd1e2f\1b1dae71_6ff0d701\DevExpress.Web.ASPxScheduler.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\e05f19fe\c42daf71_6ff0d701\DevExpress.Web.ASPxSpellChecker.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\51d23a1d\27500c72_6ff0d701\DevExpress.Web.ASPxThemes.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\72e944a9\5d5b0f72_6ff0d701\DevExpress.Web.ASPxTreeList.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\53c0330d\8c565772_6ff0d701\DevExpress.Web.Resources.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\939a0620\6daa7f72_6ff0d701\DevExpress.Xpo.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\8a9181fd\493b9272_6ff0d701\DevExpress.XtraBars.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\96b6fdcd\21f3a472_6ff0d701\DevExpress.XtraCharts.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\f80716f0\90f89472_6ff0d701\DevExpress.XtraCharts.v19.2.Web.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\cc679ca5\1b84be72_6ff0d701\DevExpress.XtraEditors.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\a9fa434c\2a84c572_6ff0d701\DevExpress.XtraGauges.v19.2.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\d0717f52\99a5c772_6ff0d701\DevExpress.XtraGauges.v19.2.Presets.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\b987f971\2fa0d072_6ff0d701\DevExpress.XtraLayout.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\534d189b\95e8d272_6ff0d701\DevExpress.XtraPivotGrid.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\a56ddc3d\aa41dd72_6ff0d701\DevExpress.XtraPrinting.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\a76c390c\33f40673_6ff0d701\DevExpress.XtraReports.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\763c4028\217ff872_6ff0d701\DevExpress.XtraReports.v19.2.Web.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\b8b2d598\ac470c73_6ff0d701\DevExpress.XtraScheduler.v19.2.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\5726bef8\2ce91173_6ff0d701\DevExpress.XtraTreeList.v19.2.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\d5eef1c2\007a8e78_6083d501\EntityFramework.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\d19088ca\007a8e78_6083d501\EntityFramework.SqlServer.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\c9ea6a10\cef3310d_19cbd701\EnvDTE.dll'. Module was built without symbols. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\35f4932b\5052330d_19cbd701\EnvDTE80.dll'. Module was built without symbols. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\916f8874\00a7bf79_6083d501\Microsoft.AspNet.Identity.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\efa81aec\00a7bf79_6083d501\Microsoft.AspNet.Identity.EntityFramework.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\fb5499c4\00a7bf79_6083d501\Microsoft.AspNet.Identity.Owin.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\d41d4bfe\00b49f96_e25cd401\Microsoft.IdentityModel.JsonWebTokens.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\0f454d69\0065a8af_e25cd401\Microsoft.IdentityModel.Logging.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\37e71077\005eab44_e35cd401\Microsoft.IdentityModel.Protocols.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\959da721\00a1dfad_e45cd401\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\3674adb2\00afd983_e35cd401\Microsoft.IdentityModel.Tokens.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\530f9dae\edd7340d_19cbd701\Microsoft.MSXML.dll'. Module was built without symbols. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\ede23335\00174406_9643d701\Microsoft.Owin.Diagnostics.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\5d39cba0\00936cee_9543d701\Microsoft.Owin.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\7c9e8f5b\00174406_9643d701\Microsoft.Owin.Security.Cookies.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\264ad133\005558fa_9543d701\Microsoft.Owin.Security.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\3248ed66\00d4f07a_6083d501\Microsoft.Owin.Security.Facebook.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\8aba9d2c\00d4f07a_6083d501\Microsoft.Owin.Security.Google.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\35658c66\00d4f07a_6083d501\Microsoft.Owin.Security.MicrosoftAccount.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\ff7132a8\00d4f07a_6083d501\Microsoft.Owin.Security.OAuth.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\0bcb4036\007462f4_9543d701\Microsoft.Owin.Security.OpenIdConnect.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\948beab0\00d4f07a_6083d501\Microsoft.Owin.Security.Twitter.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\0be1c190\e2f91273_6ff0d701\Microsoft.Practices.EnterpriseLibrary.Common.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\b90fbe88\451b1573_6ff0d701\Microsoft.Practices.EnterpriseLibrary.Data.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\778d4e77\08de1573_6ff0d701\Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\6db2e44a\2f901573_6ff0d701\Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\40d3f0de\ca151773_6ff0d701\Microsoft.Practices.EnterpriseLibrary.Logging.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\f386598d\9a8a1773_6ff0d701\Microsoft.Practices.ServiceLocation.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\86e788dc\8aff1773_6ff0d701\Microsoft.Practices.Unity.Configuration.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\4ab92e30\27371973_6ff0d701\Microsoft.Practices.Unity.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\4df7df22\694d1873_6ff0d701\Microsoft.Practices.Unity.Interception.Configuration.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\62d2cf30\519b1873_6ff0d701\Microsoft.Practices.Unity.Interception.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\850a2245\00d4f07a_6083d501\Microsoft.ReportViewer.Common.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\3f7fe297\00d4f07a_6083d501\Microsoft.ReportViewer.DataVisualization.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\106d8a51\00d4f07a_6083d501\Microsoft.ReportViewer.Design.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\fe317bd0\00d4f07a_6083d501\Microsoft.ReportViewer.ProcessingObjectModel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\821421dc\00d4f07a_6083d501\Microsoft.ReportViewer.WebDesign.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\6d75e8f1\00d4f07a_6083d501\Microsoft.ReportViewer.WebForms.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\9a820cdd\00d4f07a_6083d501\Microsoft.ReportViewer.WinForms.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\84f3271a\00d4f07a_6083d501\Microsoft.SqlServer.Types.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\e47804e1\815d360d_19cbd701\Microsoft.VisualStudio.OLE.Interop.dll'. Module was built without symbols. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\f71267e0\00fc8543_44a1d501\Microsoft.VisualStudio.ProjectAggregator.dll'. Module was built without symbols. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\33dca5b5\af8f390d_19cbd701\Microsoft.VisualStudio.Shell.Interop.8.0.dll'. Module was built without symbols. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\ea98abbc\de4c3c0d_19cbd701\Microsoft.VisualStudio.Shell.Interop.dll'. Module was built without symbols. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-132878817381862738): Loaded 'C:\Users\MHATHY\AppData\Local\Temp\Temporary ASP.NET Files\vs\db3852c6\f34cad9a\assembly\dl3\e0051f52\3b953e0d_19cbd701\Microsoft.VisualStudio.TextManager.Interop.8.0.dll'. Module was built without symbols. 'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/6/ROOT-1-1328788173818

Tratcher commented 2 years ago

Here are some key logs:

System.Net.Http Verbose: 0 : [40552] Entering
HttpClient#37489757::SendAsync(HttpRequestMessage#64828693: Method: GET,
RequestUri: '
http://169.254.169.254/metadata/instance/compute?format=json&api-version=2017-12-01',
Version: 1.1, Content: <null>, Headers:
{
  Metadata: True
})
System.Net Verbose: 0 : [40552] Entering
HttpWebRequest#10104599::HttpWebRequest(
http://169.254.169.254/metadata/instance/compute?format=json&api-version=2017-12-01#951510431
)
System.Net Information: 0 : [40552] RAS supported: True
System.Net Verbose: 0 : [40552] Entering
HttpWebRequest#10104599::HttpWebRequest(uri: '
http://169.254.169.254/metadata/instance/compute?format=json&api-version=2017-12-01',
connectionGroupName: '33711845')
System.Net.Http Information: 0 : [40552] Associating
HttpRequestMessage#64828693 with HttpWebRequest#10104599
System.Net Verbose: 0 : [27464] Entering
HttpWebRequest#10104599::BeginGetResponse()
System.Net.Http Verbose: 0 : [40552] Exiting
HttpClientHandler#33711845::SendAsync() -> Task`1#51288387
System.Net Verbose: 0 : [27464] Entering
ServicePoint#35320229::ServicePoint(169.254.169.254:80)
System.Net.Http Verbose: 0 : [40552] Exiting
HttpClient#37489757::SendAsync() -> Task`1#51288387
System.Net Information: 0 : [27464] Associating HttpWebRequest#10104599
with ServicePoint#35320229
System.Net Information: 0 : [27464] Associating Connection#17653682 with
HttpWebRequest#10104599
System.Net.Sockets Verbose: 0 : [27464] Entering
Socket#42194754::Socket(AddressFamily#2)
System.Net.Sockets Verbose: 0 : [27464] Exiting Socket#42194754::Socket()
System.Net.Sockets Verbose: 0 : [27464] Entering
Socket#15688314::Socket(AddressFamily#23)
System.Net.Sockets Verbose: 0 : [27464] Exiting Socket#15688314::Socket()
System.Net.Sockets Verbose: 0 : [27464] Entering
DNS::TryInternalResolve(169.254.169.254)
System.Net.Sockets Verbose: 0 : [27464] Entering
Socket#42194754::BeginConnectEx()
System.Net.Sockets Verbose: 0 : [27464] Entering
Socket#42194754::InternalBind(0.0.0.0:0#0)
System.Net.Sockets Verbose: 0 : [27464] Exiting
Socket#42194754::InternalBind()
System.Net.Sockets Verbose: 0 : [27464] Exiting
Socket#42194754::BeginConnectEx() -> ConnectOverlappedAsyncResult#52307948
System.Net Verbose: 0 : [27464] Exiting
HttpWebRequest#10104599::BeginGetResponse() -> ContextAwareResult#40535505
System.Net.Sockets Verbose: 0 : [30232] Entering
Socket#42194754::EndConnect(ConnectOverlappedAsyncResult#52307948)
System.Net.Sockets Verbose: 0 : [30232] Entering
Socket#42194754::InternalEndConnect(ConnectOverlappedAsyncResult#52307948)
System.Net.Sockets Error: 0 : [30232]
Socket#42194754::UpdateStatusAfterSocketError() - NetworkUnreachable
System.Net.Sockets Error: 0 : [30232] Exception in
Socket#42194754::InternalEndConnect - A socket operation was attempted to
an unreachable network 169.254.169.254:80.
System.Net.Sockets Verbose: 0 : [30232] Entering Socket#42194754::Dispose()
System.Net.Sockets Verbose: 0 : [30232] Entering Socket#15688314::Dispose()
System.Net Error: 0 : [30232] Exception in HttpWebRequest#10104599:: -
Unable to connect to the remote server.
[30232] Entering HttpWebRequest#10104599::EndGetResponse()
System.Net Error: 0 : [30232] Exception in
HttpWebRequest#10104599::EndGetResponse - Unable to connect to the remote
server.
System.Net.Http Error: 0 : [30232] Exception in
HttpClientHandler#33711845::SendAsync - Unable to connect to the remote
server.
   at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
   at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar)
System.Net.Http Error: 0 : [30232] HttpClient#37489757::SendAsync() - An
error occurred while sending HttpRequestMessage#64828693.
System.Net.Http.HttpRequestException: An error occurred while sending the
request. ---> System.Net.WebException: Unable to connect to the remote
server ---> System.Net.Sockets.SocketException: A socket operation was
attempted to an unreachable network 169.254.169.254:80
   at System.Net.Sockets.Socket.InternalEndConnect(IAsyncResult asyncResult)
   at System.Net.Sockets.Socket.EndConnect(IAsyncResult asyncResult)
   at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure,
Socket s4, Socket s6, Socket& socket, IPAddress& address,
ConnectSocketState state, IAsyncResult asyncResult, Exception& exception)
   --- End of inner exception stack trace ---
   at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
   at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar)
   --- End of inner exception stack trace ---
System.Net Verbose: 0 : [30232] Entering HttpWebRequest#10104599::Abort()
System.Net Error: 0 : [30232] Exception in HttpWebRequest#10104599:: - The
request was aborted: The request was canceled..
System.Net Verbose: 0 : [30232] Exiting HttpWebRequest#10104599::Abort()
System.Net.Sockets.SocketException: A socket operation was
attempted to an unreachable network 169.254.169.254:80

169.254.169.254 is not a valid address on most networks, it's a default address assigned when the DHCP server can't be contacted. Why is that being given as your metadata address / Authority? https://dfarq.homeip.net/what-is-a-169-ip-address/

pergardebrink commented 2 years ago

169.254.169.254 is not a valid address on most networks, it's a default address assigned when the DHCP server can't be contacted. Why is that being given as your metadata address / Authority? https://dfarq.homeip.net/what-is-a-169-ip-address/

That looks like the Azure Instance Metadata Service call. Maybe just some telemetry code that is part of the application? https://docs.microsoft.com/en-us/azure/virtual-machines/windows/instance-metadata-service?tabs=linux

razmy-hathy commented 2 years ago

localhost-working-har.txt localhost-not wokrin-har.txt

I have attached two http archive take during the testing for the below scenario. I tried to login to the application with two browser instances in the same machine. One with incognito mode and another one with normal mode. I was able to login into only one browser and was not able to login to the other browser although the IdP login was successful as I explained in the previous scenario. If you could help me on this issue that would be greatly appreciated.

razmy-hathy commented 2 years ago

Thanks guys for your support in this issue. I figured out the fix for the issue by of going through the comment given in the https://github.com/aspnet/AspNetKatana/issues/381 by @Tratcher and also the following link suggested https://github.com/aspnet/AspNetKatana/wiki/System.Web-response-cookie-integration-issues#workarounds
Below is the code fix for the problem.

app.UseCookieAuthentication(new CookieAuthenticationOptions { AuthenticationType = CookieAuthenticationDefaults.AuthenticationType, AuthenticationMode = AuthenticationMode.Active, CookieName = ".Net." + CookieAuthenticationDefaults.AuthenticationType, ExpireTimeSpan = TimeSpan.FromMinutes(5), CookieManager = new SystemWebCookieManager() }); I fix the issue by including CookieManager = new SystemWebCookieManager() statement . However, I used the other parameters for other configurations.