Client certificate authentication fails when the CA list sent by server is big and the list goes in 2 encrypted messages.

I checked with IE browser(on windows and MAC) and MAC safari packet capture. The CA certificate list is sent by server in 2 messages as the list is too big. I compared packet by packet exchanges in both the browsers. It is same till TLSv1 handshake is done for the ldap certificate authentication. It works fine in IE without any issues though the certificate list is divided into 2 messages.
In case of safari, after the TLSv1 handshake is done successfully, it again sends a SSLv3 'Client Hello' message and initiates the whole handshake process again and the server responds to it too till the handshake is complete. But it brakes after that with the server showing 'Cant establish secure connection' at the browser.
The issue occurs only in case of MAC safari for big list of CA certs >150(where it crosses the max limit) from server. It is not clear why safari alone is switching from TLSv1 to SSLv3 in this scenario.
NOTE: With shorter list of CA certs at server when it goes in one message, safari works fine and all messages are only TLSv1 and does not repeat the handshake process.
I have checked on safari version 5 and 6.0.3 on OS X mountain lion.
Is there any specific reason why MAC safari behaves like this or somethings needs to be done at server?
Any help would be appreciated.

I checked with IE browser(on windows and MAC) and MAC safari packet capture. The CA certificate list is sent by server in 2 messages as the list is too big. I compared packet by packet exchanges in both the browsers. It is same till TLSv1 handshake is done for the ldap certificate authentication. It works fine in IE without any issues though the certificate list is divided into 2 messages.
In case of safari, after the TLSv1 handshake is done successfully, it again sends a SSLv3 'Client Hello' message and initiates the whole handshake process again and the server responds to it too till the handshake is complete. But it brakes after that with the server showing 'Cant establish secure connection' at the browser.
The issue occurs only in case of MAC safari for big list of CA certs >150(where it crosses the max limit) from server. It is not clear why safari alone is switching from TLSv1 to SSLv3 in this scenario.
NOTE: With shorter list of CA certs at server when it goes in one message, safari works fine and all messages are only TLSv1 and does not repeat the handshake process.
I have checked on safari version 5 and 6.0.3 on OS X mountain lion.
Is there any specific reason why MAC safari behaves like this or somethings needs to be done at server?
Any help would be appreciated.

Similar Messages

  • Get message, "certificate authentication failed" when downloading

    Get message "certificate authentication failed" when downloading Adobe flash

    Download and run the offline installers
    Flash Player: http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_header
    Adobe Reader: http://get.adobe.com/reader/enterprise/

  • Installation error: Certificate authentication failed

    Hard drive crashed. Restoring files on new drive, Keep getting "Certificate authentication failed" when trying to install Adobe Reader. How do I fix that?

    Use the offline installer from http://get.adobe.com/reader/enterprise/

  • Project Server 2010 Web services access with Client Certificate Authentication

    We switched our SharePoint/Project Server 2010 farm to use client certificate authentication with Active Directory Federation Services (AD FS) 2.0, which is working without issue. We have some administrative Project Server Interface (PSI)
    web service applications that no longer connect to server with the new authentication configuration.  Our custom applications are using the WCF interface to access the public web services.
    Please let us know if it is possible to authenticate with AD FS 2.0 and then call
    Project Server web services. Any help or coding examples would be greatly appreciated.

    what is the error occurred when the custom PSI app connects?
    can you upload the ULS logs here for research?
    What is the user account format you specified in the code for authentication?
    For proper authorization, the “user logon account” in PWA for the user needs to be changed from domain\username to the claims token (e.g.
    'I:0#.w|mybusinessdomain\ewmccarty').
    It requires you to manually call the UpnLogon method of
    “Claims to Windows Token Service”. if (Thread.CurrentPrincipal.Identity is ClaimsIdentity)  
    {  var identity = (ClaimsIdentity)Thread.CurrentPrincipal.Identity;  }  
    if (Thread.CurrentPrincipal.Identity is ClaimsIdentity)
    var identity = (ClaimsIdentity)Thread.CurrentPrincipal.Identity;
    Than you need to extract UPN-Claim from the identity.
    Upload the verbose log if possible.
    Did you see this?
    http://msdn.microsoft.com/en-us/library/ff181538(v=office.14).aspx
    Cheers. Happy troubleshooting !!! Sriram E - MSFT Enterprise Project Management

  • Client certificate authentication with custom authorization for J2EE roles?

    We have a Java application deployed on Sun Java Web Server 7.0u2 where we would like to secure it with client certificates, and a custom mapping of subject DNs onto J2EE roles (e.g., "visitor", "registered-user", "admin"). If we our web.xml includes:
    <login-config>
        <auth-method>CLIENT-CERT</auth-method>
        <realm-name>certificate</realm-name>
    <login-config>that will enforce that only users with valid client certs can access our app, but I don't see any hook for mapping different roles. Is there one? Can anyone point to documentation, or an example?
    On the other hand, if we wanted to create a custom realm, the only documentation I have found is the sample JDBCRealm, which includes extending IASPasswordLoginModule. In our case, we wouldn't want to prompt for a password, we would want to examine the client certificate, so we would want to extend some base class higher up the hierarchy. I'm not sure whether I can provide any class that implements javax.security.auth.spi.LoginModule, or whether the WebServer requires it to implement or extend something more specific. It would be ideal if there were an IASCertificateLoginModule that handled the certificate authentication, and allowed me to access the subject DN info from the certificate (e.g., thru a javax.security.auth.Subject) and cache group info to support a specialized IASRealm::getGroupNames(string user) method for authorization. In a case like that, I'm not sure whether the web.xml should be:
    <login-config>
        <auth-method>CLIENT-CERT</auth-method>
        <realm-name>MyRealm</realm-name>
    <login-config>or:
    <login-config>
        <auth-method>MyRealm</auth-method>
    <login-config>Anybody done anything like this before?
    --Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    We have JDBCRealm.java and JDBCLoginModule.java in <ws-install-dir>/samples/java/webapps/security/jdbcrealm/src/samples/security/jdbcrealm. I think we need to tweak it to suite our needs :
    $cat JDBCRealm.java
    * JDBCRealm for supporting RDBMS authentication.
    * <P>This login module provides a sample implementation of a custom realm.
    * You may use this sample as a template for creating alternate custom
    * authentication realm implementations to suit your applications needs.
    * <P>In order to plug in a realm into the server you need to
    * implement both a login module (see JDBCLoginModule for an example)
    * which performs the authentication and a realm (as shown by this
    * class) which is used to manage other realm operations.
    * <P>A custom realm should implement the following methods:
    * <ul>
    *  <li>init(props)
    *  <li>getAuthType()
    *  <li>getGroupNames(username)
    * </ul>
    * <P>IASRealm and other classes and fields referenced in the sample
    * code should be treated as opaque undocumented interfaces.
    final public class JDBCRealm extends IASRealm
        protected void init(Properties props)
            throws BadRealmException, NoSuchRealmException
        public java.util.Enumeration getGroupNames (String username)
            throws InvalidOperationException, NoSuchUserException
        public void setGroupNames(String username, String[] groups)
    }and
    $cat JDBCLoginModule.java
    * JDBCRealm login module.
    * <P>This login module provides a sample implementation of a custom realm.
    * You may use this sample as a template for creating alternate custom
    * authentication realm implementations to suit your applications needs.
    * <P>In order to plug in a realm into the server you need to implement
    * both a login module (as shown by this class) which performs the
    * authentication and a realm (see JDBCRealm for an example) which is used
    * to manage other realm operations.
    * <P>The PasswordLoginModule class is a JAAS LoginModule and must be
    * extended by this class. PasswordLoginModule provides internal
    * implementations for all the LoginModule methods (such as login(),
    * commit()). This class should not override these methods.
    * <P>This class is only required to implement the authenticate() method as
    * shown below. The following rules need to be followed in the implementation
    * of this method:
    * <ul>
    *  <li>Your code should obtain the user and password to authenticate from
    *       _username and _password fields, respectively.
    *  <li>The authenticate method must finish with this call:
    *      return commitAuthentication(_username, _password, _currentRealm,
    *      grpList);
    *  <li>The grpList parameter is a String[] which can optionally be
    *      populated to contain the list of groups this user belongs to
    * </ul>
    * <P>The PasswordLoginModule, AuthenticationStatus and other classes and
    * fields referenced in the sample code should be treated as opaque
    * undocumented interfaces.
    * <P>Sample setting in server.xml for JDBCLoginModule
    * <pre>
    *    <auth-realm name="jdbc" classname="samples.security.jdbcrealm.JDBCRealm">
    *      <property name="dbdrivername" value="com.pointbase.jdbc.jdbcUniversalDriver"/>
    *       <property name="jaas-context"  value="jdbcRealm"/>
    *    </auth-realm>
    * </pre>
    public class JDBCLoginModule extends PasswordLoginModule
        protected AuthenticationStatus authenticate()
            throws LoginException
        private String[] authenticate(String username,String passwd)
        private Connection getConnection() throws SQLException
    }One more article [http://developers.sun.com/appserver/reference/techart/as8_authentication/]
    You can try to extend "com/iplanet/ias/security/auth/realm/certificate/CertificateRealm.java"
    [http://fisheye5.cenqua.com/browse/glassfish/appserv-core/src/java/com/sun/enterprise/security/auth/realm/certificate/CertificateRealm.java?r=SJSAS_9_0]
    $cat CertificateRealm.java
    package com.iplanet.ias.security.auth.realm.certificate;
    * Realm wrapper for supporting certificate authentication.
    * <P>The certificate realm provides the security-service functionality
    * needed to process a client-cert authentication. Since the SSL processing,
    * and client certificate verification is done by NSS, no authentication
    * is actually done by this realm. It only serves the purpose of being
    * registered as the certificate handler realm and to service group
    * membership requests during web container role checks.
    * <P>There is no JAAS LoginModule corresponding to the certificate
    * realm. The purpose of a JAAS LoginModule is to implement the actual
    * authentication processing, which for the case of this certificate
    * realm is already done by the time execution gets to Java.
    * <P>The certificate realm needs the following properties in its
    * configuration: None.
    * <P>The following optional attributes can also be specified:
    * <ul>
    *   <li>assign-groups - A comma-separated list of group names which
    *       will be assigned to all users who present a cryptographically
    *       valid certificate. Since groups are otherwise not supported
    *       by the cert realm, this allows grouping cert users
    *       for convenience.
    * </ul>
    public class CertificateRealm extends IASRealm
       protected void init(Properties props)
         * Returns the name of all the groups that this user belongs to.
         * @param username Name of the user in this realm whose group listing
         *     is needed.
         * @return Enumeration of group names (strings).
         * @exception InvalidOperationException thrown if the realm does not
         *     support this operation - e.g. Certificate realm does not support
         *     this operation.
        public Enumeration getGroupNames(String username)
            throws NoSuchUserException, InvalidOperationException
         * Complete authentication of certificate user.
         * <P>As noted, the certificate realm does not do the actual
         * authentication (signature and cert chain validation) for
         * the user certificate, this is done earlier in NSS. This default
         * implementation does nothing. The call has been preserved from S1AS
         * as a placeholder for potential subclasses which may take some
         * action.
         * @param certs The array of certificates provided in the request.
        public void authenticate(X509Certificate certs[])
            throws LoginException
            // Set up SecurityContext, but that is not applicable to S1WS..
    }Edited by: mv on Apr 24, 2009 7:04 AM

  • SOAP -Client Certificate Authentication in Receiver SOAP Adapter

    Dear All,
    We are working on the below scenario
    SAP R/3 System  -> XI/PI -> Proxy -> Customer
    In this, SAP R/3 System sends a IDOC and XI should give that XML Payload of IDOC to Customer.
    Cusomer gave us the WSDL file and also a Certificate for authentication.
    Mapping - we are using XSLT mapping to send that XML payload as we need to capture the whole XML payload of IDOC into 1 field at the target end ( This was given in the WSDL).
    Now, how can we achieve this Client Certificate authentication in the SOAP Receiver Adapter when we have Proxy server in between PI/XI and Customer system.
    Require your inputs on Client Certificate authentication and Proxy server configuration.
    Regards,
    Srini

    Hi
    Look this blog
    How to use Client Authentication with SOAP Adapter
    http://help.sap.com/saphelp_nw04/helpdata/en/14/ef2940cbf2195de10000000a1550b0/content.htm
    Also refer to "SAP Security Guide XI" at service market place.
    ABAP Proxy configuration
    How do you activate ABAP Proxies?

  • 6.1 SP 2 certificate authenticator fails with Apache plugin and SSL

    Hi,
    Does anybody have a certificate authenticator working in WebLogic 6.1
    SP 2, in combination with the Apache HTTP Server plugin and SSL?
    We implemented a certificate authenticator that works correctly in
    WebLogic 6.1 SP 2 when we configure SSL with "Client Certificate
    Required", and access it directly from a browser (the browser hits the
    SSL port of the WebLogic server, like 7002).
    This certificate authenticator also works correctly with a proxy web
    server. We set up a Stronghold server (web server based on Apache) on
    Linux with the Apache HTTP Server plugin from BEA, configured the
    plugin to use SSL, and configured our WebLogic 6.1 SP 1 server without
    "Client Certificate Required". The certificate authenticator gets the
    end user's certificate correctly.
    This same architecture with the proxy web server does not work when we
    upgrade the WebLogic Server to SP 2. WebLogic Server logs the
    "incorrect or missing client cert" error, our certificate
    authenticator is never called, and the browser gets a 401 Unauthorized
    error.
    We looked all over the WebLogic 6.1 SP 2 installation for a newer
    version of the plugin (mod_wl_ssl.so) and found the same version as SP
    1. We double-checked that it was the Linux-specific installer
    (because we'd found that some Linux libraries are missing from the
    generic installer). So it appears to us that the plugin encodes the
    certificate in the request header in such a way that a SP 1 server can
    extract it, but an SP 2 server cannot. We were wondering whether
    there might be changes to the plugin to stay in step with the SP 2
    server that never got ported to Linux, or whether an updated Linux
    plugin never got included in the installer packages.
    So: has anybody gotten a system like
    Apache/Stronghold + WebLogic Plugin <-- SSL --> WebLogic 6.1 SP 2 +
    Cert Auth
    to work?
    Thanks in advance for any help,
    Jim Doyle
    [email protected]

    A correction, I think:
    Now that I rolled back a system to 6.1 SP 1, it looks like 6.1 SP 1
    does include a different mod_wl_ssl.so from that in SP 2. I believe I
    was comparing the wrong file. In fact, trying to compare versions of
    the mod_wl_ssl.so makes things rather confusing:
    A mod_wl_ssl.so from a straight weblogic610sp2_generic.zip install has
    a cksum of "1853014778 1132467".
    A mod_wl_ssl.so from a weblogic610sp1_generic.zip install with a
    subsequent SP 2 upgrade install has a cksum of "1350917183 1147927".
    A mod_wl_ssl.so from a plain 6.1 install with subsequent SP 1 and SP 2
    upgrade installs, followed by an SP 2 uninstall and another SP 1
    upgrade install, has a cksum of "1471948065 1136501".
    I think I may be looking at three different plugin versions here: 6.1,
    6.1 SP 1, and 6.1 SP 2, assuming the upgrade installs don't actually
    change mod_wl_ssl.so. I'm not sure whether there's an easier way to
    verify what version of the plugin you have.
    In any case, we did try each plugin version, and none of them works
    against a 6.1 SP 2 WebLogic server.
    Jim
    [email protected] (Jim Doyle) wrote in message news:<[email protected]>...
    [snip]
    We looked all over the WebLogic 6.1 SP 2 installation for a newer
    version of the plugin (mod_wl_ssl.so) and found the same version as SP
    1. We double-checked that it was the Linux-specific installer
    (because we'd found that some Linux libraries are missing from the
    generic installer). [snip]

  • Event code: 4005 Event message: Forms authentication failed for the request. Reason: The ticket supplied was invalid.

    When i was run my web application in everyday morning(after that issue was not reproduced), it was immediatly redirected to logout page
     while i perform any task after login.Session_end function was called unfortunately.
    Event log as follows 
    Event code: 4005 
    Event message: Forms authentication failed for the request. Reason: The ticket supplied was invalid. 
    Event time: 10/10/2014 10:36:33 AM 
    Event time (UTC): 10/10/2014 5:06:33 AM 
    Event ID: a268f3dd45da406dadd78773a858067f 
    Event sequence: 4 
    Event occurrence: 1 
    Event detail code: 50201 
    Application information: 
        Application domain: 463c736b-2-130573911817035712 
        Trust level: Full
    The output while session_end() was called is as follows
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Program Files\Common Files\Microsoft Shared\DevServer\11.0\WebDev.WebServer40.exe'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\WebDev.WebHost40\v4.0_11.0.0.0__b03f5f7f11d50a3a\WebDev.WebHost40.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll'
    A first chance exception of type 'System.ArgumentNullException' occurred in System.Core.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.WorkflowServices\v4.0_4.0.0.0__31bf3856ad364e35\System.WorkflowServices.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.DataSetExtensions\v4.0_4.0.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.DataAnnotations\v4.0_4.0.0.0__31bf3856ad364e35\System.ComponentModel.DataAnnotations.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.DynamicData\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.DynamicData.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\d2ac696f\807ca1a9_01cccf01\AjaxControlToolkit.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\0ff769a3\738a1ab9_47e4cf01\myapp.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\48c5da56\c38dd5b4_47e4cf01\WPCSCore.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\1c6f45a6\dd41c2e2_8ed8cf01\wpcsLibrary.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\6a813290\35d3aedf_8ed8cf01\WPWebControls.dll', Symbols loaded.
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): 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'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Deployment\v4.0_1.0.0.0__31bf3856ad364e35\System.Web.WebPages.Deployment.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Deployment\v4.0_2.0.0.0__31bf3856ad364e35\System.Web.WebPages.Deployment.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Web.PageInspector.Runtime\v4.0_1.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Web.PageInspector.Runtime.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Web.Infrastructure\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Web.Infrastructure.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.Wrapper.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\App_global.asax.3ly5lssc.dll', Symbols loaded.
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in System.Web.dll
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
    'iexplore.exe' (Script): Loaded 'Script Code (Windows Internet Explorer)'.
    The thread '<No Name>' (0x2178) has exited with code 0 (0x0).
    The thread '<No Name>' (0x22c0) has exited with code 0 (0x0).
    The thread '<No Name>' (0x3c4) has exited with code 0 (0x0).
    The thread '<No Name>' (0x2198) has exited with code 0 (0x0).
    The thread '<No Name>' (0x19e0) has exited with code 0 (0x0).
    The thread '<No Name>' (0x21c8) has exited with code 0 (0x0).
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): 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'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Deployment\v4.0_1.0.0.0__31bf3856ad364e35\System.Web.WebPages.Deployment.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Deployment\v4.0_2.0.0.0__31bf3856ad364e35\System.Web.WebPages.Deployment.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Web.PageInspector.Runtime\v4.0_1.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Web.PageInspector.Runtime.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Web.Infrastructure\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Web.Infrastructure.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.WorkflowServices\v4.0_4.0.0.0__31bf3856ad364e35\System.WorkflowServices.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.DataSetExtensions\v4.0_4.0.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.DataAnnotations\v4.0_4.0.0.0__31bf3856ad364e35\System.ComponentModel.DataAnnotations.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.DynamicData\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.DynamicData.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\d2ac696f\807ca1a9_01cccf01\AjaxControlToolkit.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\0ff769a3\738a1ab9_47e4cf01\myapp.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\48c5da56\c38dd5b4_47e4cf01\WPCSCore.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\1c6f45a6\dd41c2e2_8ed8cf01\wpcsLibrary.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\6a813290\35d3aedf_8ed8cf01\WPWebControls.dll', Symbols loaded.
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\App_global.asax.yz9nltrj.dll', Symbols loaded.
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll'
    A first chance exception of type 'System.Deployment.Application.InvalidDeploymentException' occurred in System.Deployment.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.Wrapper.dll'
    WebDev.WebServer40.exe Information: 0 : [Source : ASP.global_asax ] - <No Message>
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Mobile\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Mobile.dll'
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Internals\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Internals.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll'
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Web.Entity.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'A_7ac34899_0878_4547_ab89_13333f2a2da8'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\App_Web_2vnmaiqi.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\App_Web_axfwmnjt.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\a9a217f9\93d383b9_47e4cf01\myapp.resources.dll'
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    The thread '<No Name>' (0x230c) has exited with code 0 (0x0).
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    Exception was thrown at line 3, column 25599 in http://localhost:51399/myapp/public/jquery-1.7.2.min.js
    0x800a139e - JavaScript runtime error: SyntaxError
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    The thread '<No Name>' (0x258c) has exited with code 0 (0x0).
    WebDev.WebServer40.exe Information: 0 : [Source : ASP.login_aspx ] - <No Message>
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Diagnostics.ServiceModelSink\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Diagnostics.ServiceModelSink.dll'
    WebDev.WebServer40.exe Information: 0 : [Source : wpcsLibrary.wpcsUserManager.UserAuthenticate ] - <No Message>
    A first chance exception of type 'System.IO.IOException' occurred in mscorlib.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.Http\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.Http.dll'
    WebDev.WebServer40.exe Information: 0 : [Source : ] - <No Message>
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
    WebDev.WebServer40.exe Information: 0 : Entering method call dbUtilities
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll'
    WebDev.WebServer40.exe Information: 0 : [Source :dbUtilities ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : Exiting method call dbUtilities
    WebDev.WebServer40.exe Information: 0 : [Source : ASP.accountselector_aspx ] - <No Message>
    The thread '<No Name>' (0x24dc) has exited with code 0 (0x0).
    WebDev.WebServer40.exe Information: 0 : [Source : ASP.accountselector_aspx ] - <No Message>
    A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll
    A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'Microsoft.GeneratedCode'
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll'
    WebDev.WebServer40.exe Information: 0 : Entering method call myweb.CentralStation.Apps.AppManager
    WebDev.WebServer40.exe Information: 0 : [Source : myweb.CentralStation.Apps.AppManager ] - <No Message>
    The thread '<No Name>' (0x2590) has exited with code 0 (0x0).
    WebDev.WebServer40.exe Information: 0 : Entering method call myweb.CentralStation.Apps.AppManager
    WebDev.WebServer40.exe Information: 0 : [Source : myweb.CentralStation.Apps.AppManager ] - <No Message>
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Users\E849324\myweb\Finalview\NCI\Source\WIN-PAK 2.0 R5\SourceCode\WPCSWEB\myapp\bin\DoorApp.app', Symbols loaded.
    WebDev.WebServer40.exe Information: 0 : Entering method call myweb.CentralStation.Apps.AppManager
    WebDev.WebServer40.exe Information: 0 : [Source : myweb.CentralStation.Apps.AppManager ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : Exiting method call myweb.CentralStation.Apps.AppManager
    WebDev.WebServer40.exe Information: 0 : Exiting method call myweb.CentralStation.Apps.AppManager
    WebDev.WebServer40.exe Information: 0 : Exiting method call myweb.CentralStation.Apps.AppManager
    The thread '<No Name>' (0x1f04) has exited with code 0 (0x0).
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : Entering method call wpcsLibrary.wpcsDataManager.dbUtilities
    WebDev.WebServer40.exe Information: 0 : Exiting method call wpcsLibrary.wpcsDataManager.dbUtilities
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.Instance.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.Canvas.set'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    The thread '<No Name>' (0x26c0) has exited with code 0 (0x0).
    Step into: Stepping over method without symbols 'string.Concat'
    Step into: Stepping over method without symbols 'System.Diagnostics.Trace.TraceInformation'
    WebDev.WebServer40.exe Information: 0 : Entering method call myweb.CentralStation.Apps.AppManager
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.Canvas.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Clear'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Collections.Generic.List<System.Web.UI.WebControls.Panel>.List'
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.InstalledApps.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'string.Concat'
    Step into: Stepping over method without symbols 'System.Diagnostics.Trace.TraceInformation'
    WebDev.WebServer40.exe Information: 0 : Entering method call myweb.CentralStation.Apps.AppManager
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.Panel.Panel'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.WebControl.CssClass.set'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.Panel.Panel'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.WebControl.CssClass.set'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.Panel.Panel'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.WebControl.CssClass.set'
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.App.AppInfo.get'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.AppAttribute.IconImage.get'
    Step into: Stepping over method without symbols 'string.IsNullOrEmpty'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.Label.Label'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.App.AppInfo.get'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.AppAttribute.Name.get'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.Label.Text.set'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.App.AppInfo.get'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.AppAttribute.Description.get'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.WebControl.ToolTip.set'
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.Canvas.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over method without symbols 'string.Concat'
    Step into: Stepping over method without symbols 'System.Diagnostics.Trace.TraceInformation'
    WebDev.WebServer40.exe Information: 0 : Exiting method call myweb.CentralStation.Apps.AppManager
    Step into: Stepping over method without symbols 'System.Collections.Generic.List<System.Web.UI.WebControls.Panel>.Add'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Collections.Generic.List<System.Web.UI.WebControls.Panel>.ToArray'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].set'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.Canvas.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over method without symbols 'string.Concat'
    Step into: Stepping over method without symbols 'System.Diagnostics.Trace.TraceInformation'
    WebDev.WebServer40.exe Information: 0 : Exiting method call myweb.CentralStation.Apps.AppManager
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.InstalledApps.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.InstalledApps.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Web.UI.HtmlControls.HtmlControl.Style.get'
    Step into: Stepping over method without symbols 'System.AppDomain.Flags.get'
    Step into: Stepping over method without symbols 'string.Concat'
    Step into: Stepping over method without symbols 'System.Web.UI.CssStyleCollection.Add'
    The thread '<No Name>' (0x1b04) has exited with code 0 (0x0).
    WebDev.WebServer40.exe Information: 0 : Entering method call ASP.site_master
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : Entering method call wpcsLibrary.wpcsDataManager.dbUtilities
    WebDev.WebServer40.exe Information: 0 : Exiting method call wpcsLibrary.wpcsDataManager.dbUtilities
    WebDev.WebServer40.exe Information: 0 : Exiting method call ASP.site_master
    A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll
    A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'Microsoft.GeneratedCode'

    Please post this question to the forums at http://www.asp.net.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Webapp authentication failed when using chinese characters as login name

    Hello,
    I have tried webapp authentication on tomcat and oc4j, via BASIC and FORM auth-method. All failed when the login name contains non-English characters. It seems an encoding issue, therefore, I also tried to change the page encoding of the login form to utf-8. None of the above is successful. Is there any solution? I really appreciate any help!
    Thanks in advance!!

    Enterprise support:
    Call enterprise support  (866) 752-7753  to create  a case ID number
    Get an account at
    http://developer.apple.com/  then submit a bug report to http://bugreporter.apple.com/
    Once on the bugreporter page,
       -- click on New icon
       -- See if you need to attach a log file or log files, clicking on Show instructions for gathering logs.  Scroll down to find the area or application that matches the problem.
       -- etc.
    Developers:
    "Submitting Bugs and Feedback
    Your feedback goes a long way towards making our products even better. With Apple Bug Reporter, you can submit bug reports or request enhancements to APIs and developer tools."
    https://developer.apple.com/bug-reporting/

  • Google chrome : client certificate install fails

    when i try ti install client certificate on google chrome, the error says : The server returned invalid client certificate.
    This is happening in Google chrome under the certsrv site to install the issued certificate. Does chrome support client certificates?

    Question: 
    What does Error
    207 (net::ERR_CERT_INVALID) mean when I try to collect my certificate (CodeSigning or Email)?
    Answer: 
    This means that you have tried to obtain your certificate using the Google Chrome browser. At this present time Google Chrome does
    not support chained certificate enrollment and you can not use another browser to collect this certificate because the private key was generated with Chrome and you must start the process from the beginning again using another browser such as Mozilla Firefox
    or Microsoft Internet Explorer.
    Source:
    https://support.comodo.com/index.php?/Default/Knowledgebase/Article/View/776/38/ 

  • Reader download error "certificate authentication failed"

    I'm trying to download the latest version of Reader but keep coming up with the error message "certificate authentication failed".
    Any help?

    Try downloading the offline installer from http://get.adobe.com/reader/enterprise/

  • "User authentication failed" when connecting with Visual Administrator

    Hello,
    I am having trouble making a connection to my local J2EE Engine using the Visual Administrator (VA).
    I open the VA interface and create a new connection. The default User Name is "Administrator". I put in "localhost" for host, "50004" for port and leave the Transport Layer selection to "Default".
    When I try to connect this way I get the following message:
    User authentication failed
    Next I went into Start|Settings|Control Panel|Users and Passwords  and saw that there were several ids created by the Developer Workplace (DW) installation. The ids that I see are: j2eadm,sapadmin,sapinstall and SAPServiceJ2E
    I checked all of them to see what groups they're members of and they're all at least members of "Administrators" group.
    There are also 3 new groups that must have been created by the DW installation: SAP_J2E_GlobalAdmin, SAP_J2E_LocalAdmin and SAP_LocalAdmin.
    The j2eadm id belonged to all 3 new sap groups so I changed its password to something I'd remember and then changed the connection to use that login.
    When I tried to connect thru VA using this id and the new password I still get the "User authentication failed" error message.
    Can anyone please tell me what I'm doing wrong?
    Thanks in advance for any help.
    David.

    Hi,
    During the installation the SAPINST asks for a Administrator  Password.. This password is very important.
    We had kept same passwords for all userids to start with.
    This helped reduce lot of confusion.
    Warning: if you enter the wrong password 5 times, the userid 'Administrator' gets locked.
    However there is an Emergency password recovery procedures.
    Try this link
    http://help.sap.com/saphelp_erp2004/helpdata/en/3a/4a0640d7b28f5ce10000000a155106/frameset.htm
    Hope that helps
    Regards,
    Siddhesh

  • Modbus Ethernet Slave seems to fail when the Master query information simultaneously for more than 16 Coils or Discrete Inputs.

    I'm developing an control application by using the Modbus TCP/IP for communicating with the host computer.
    I'm using the Modbus Library for LabVIEW
     (http://sine.ni.com/apps/we/niepd_web_display.display_epd4?p_guid=F1582737BACF5CA8E0340003BA7CCD71&p_node=DZ52363&p_source=External).
    The LabVIEW MB Ethernet Slave seems to fail when the MB Ethernet Master
    query information simultaneously for more than 16 Coils or Discrete
    Inputs.
    The Modbus Application Protocol Specification (http://www.Modbus-IDA.org) state that:
    1- The function code 0x01 'Read Coilsis' is designed to read from 1 to 2000 contiguous status of coils in a remote device.
    2- The function code 0x02 'Read Discrete Inputs' is designed to read
    from 1 to 2000 contiguous status of discrete inputs in a remote device.
    To test the behaviour of the LabVIEW MB Ethernet Slave I have modified
    the 'MB Ethernet Example Slave.vi' by adding more Coils and Discrete
    Inputs. I have added up ONLY to 20 Coils and 20 Discrete Inputs.
    By using the 'MB Ethernet Example Master.vi' the answer to the MB query
    is correct for the first 16 Coils or Discrete Inputs. Starting from the
    17th Coil or Discrete Input the MB Ethernet Slave doesn't give any
    answer.
    By shifting the start point address the answer remain correct for the first 16 Coils or Discrete Inputs.
    I have tested the slave by using also a third part MB Ethernet Master and the behaviour is the same.
    1) There is a reason for this behaviour?
    2) There is a Modbus Library for LabVIEW that satisfy the  'Modbus
    Application Protocol Specification' managing from 1 to 2000 contiguous
    status of Coils or Discrete Inputs?
    Thanks,
    Asper

    I have the same problem with the MB Ethernet.
    I need 40 Outputs.
    The first 16 work perfectly. The next 8 coils do not work, The next 8 work, The next 16 do not work,The next 8 work,The next 24 do not work And work for the last 8. Conclusion, to activate the 40 outputs, I needed 88 coils.
     Because 48 coil, do nothing Can someone help me and i cant implemet the jim solution

  • I tried to send a mail message to too many addees. when the rejection came back "cannot send message using the server..." the window is too long to be able to see the choices at the bottom of it. how can i see the choices at the bottom of that window?

    I tried to send a mail message to too many addees. when the rejection came back "cannot send message using the server..." the window is too long to be able to see the choices at the bottom of it. how can I see the choices at the bottom of that window?

    I tried to send it through gmail and the acct is  a POP acct
    I'm not concerned about sending to the long address list. I just can't get the email and window that says "cannot send emai using the server..." to go away. The default must be "retry", because although I cannot see the choices at the bottom of the window if I hit return it trys again... and then of course comes back with the very long pop up window that I cannot see the bottom of so I can tell it to quit trying...

  • Is there a  requirement to restart the JMS/Weblogc Server everytime when the DB goes down?

    Question:
    When the Database is shutdown gracefully everything was fine.
    But when the Database is brought down with shutdown abort the MDB consumer will never consume messages from the topic again. And we need to restart the WebLogic Server in order to get the messages consumed again.
    So is there a requirement to restart the JMS/Weblogc Server everytime when the DB goes down? If not, what type of failures will require the JMS/WLS restart?

    On a DB failure, a WL JDBC store service will make a brief attempt to reconnect before shutting itself down along with any services that depend on the store. 
    It isn't necessary to restart the entire WebLogic Server JVM to bring the affected service(s) back if you can use the Automatic Service Migration feature.  ASM can automatically restart a failed service on a different WL Server in the same cluster, and/or can try a restart-in-place for the service if the service's original host WL Server JVM is still running.   The Automatic Service Migration (pdf) white-paper has a thorough discussion of this area.
    In addition to ASM, there's also a "whole server migration" option that can automatically restart or migrate an entire WL server.
    Tom

Maybe you are looking for

  • Multiple users using One account and issue making calls to 1-800-###...

    We have 15 volunteers who are using One account we set up for them. They login at the same time and need to make 1-800 calls (same number) concurrently. Right now, when you start pressing 800 all of sudden the display goes blank (cx300) and can't eve

  • Creation of BDOCs for CRM Billing - BEAIPMOBILLDOC

    Hi all, can anybody give me a hint, where I have to look for BDoc creation, especially BDOC type BEAIPMOBILLDOC? I mean really the piece of code, where the system is forced to create a bdoc of a special bdoc type. The background is, that I copied thi

  • Error in JDBC Adapter Configuration....

    Hi,   My scenario is like this FTP->XI->Oracle Database. The problem is that the files are not getting posted to the database though it is running well. In XI receiver comm channel in JDBC adapter, I have provided the Connection path as   jdbc:oracle

  • Report on Annual leave details

    Dear All,        Would you please give a hint on the REPORT of giving all the annual leave details of the employees.        Also, please advise the report name on leave balance. Thanks and best regards, Sophie Que

  • Can you Setup a Active Passive DFS namespace in the same site

    Hi, I would like to use DFS for profile replication. I know MS doesn't recommend it, but was wondering if you could setup DFS namespace in an Active/ passive contests in the same AD site. I think or what I can understand of DFS is that if the Fileser