Pre-authentication information was invalid (24) authoriazation against AD

Hi all,
im going to be really desperate from this error message during the authentization to the Win2003 server where the Active Directory is running ... Im using Krb5LoginModule.
- Our administrator of the AD service has enabled DES encryption at the tested account.
- Im sure that entered password is correct, because im able to login via this password to our network.
- Entered Kerberos realm is in upper case...in the form (COMPANY.COM)
- Kerberos KDC contains IP adress of the Domain controller.
I really dont know why it doesnt work....:-(( Strange is that if i enable ticketCache to the ability to use the native ticket cache it works fine.....
My code is:
import javax.security.sasl.*;
import java.io.*;
import java.util.*;
import javax.security.auth.Subject;
import com.sun.security.auth.callback.TextCallbackHandler;
* This JaasAcn application attempts to authenticate a user
* and reports whether or not the authentication was successful.
public class JaasSample {
  public static void main(String[] args) {
        LoginContext lc = null;
     java.util.Properties p = new java.util.Properties(System.getProperties());
       try
            lc = new LoginContext("JaasSample", new TextCallbackHandler());
       catch (LoginException le)
            System.err.println("Cannot create LoginContext. "
                 + le.getMessage());
            System.exit(-1);
       catch (SecurityException se)
            System.err.println("Cannot create LoginContext. "
                 + se.getMessage());
            System.exit(-1);
       catch (Exception e)
            System.out.println("Login failer: "+e.getMessage());
      try {
                    lc.login();
                    Subject subject = lc.getSubject();
                Iterator it = subject.getPrincipals().iterator();
                while (it.hasNext())
                    System.out.println("Authenticated: " + it.next().toString());
                it = subject.getPublicCredentials(Properties.class).iterator();
                while (it.hasNext())
                    ((Properties)it.next()).list(System.out);
                lc.logout();
      } catch (LoginException le) {
          System.err.println("Authentication failed: ");
          System.err.println("  " + le.getMessage());
          System.exit(-1);
      System.out.println("Authentication succeeded!");
}start.bat file:
"c:\Program Files\Java\jdk1.5.0_06\bin\java" -Djava.security.krb5.realm=BERIT.CZ -Djava.security.krb5.kdc=10.1.0.04 -Djava.security.krb5.debug=true -Djava.security.auth.login.config=jaas.conf JaasSample
jaas.conf file:
JaasSample {
com.sun.security.auth.module.Krb5LoginModule required useTicketCache="false" debug="true";
Output is:
c:\JAAS>"c:\Program Files\Java\jdk1.5.0_06\bin\java" -Djava.security.krb5.realm=
BERIT.CZ -Djava.security.krb5.kdc=10.1.0.04 -Djava.security.krb5.debug=true -Dja
va.security.auth.login.config=jaas.conf JaasSample
Debug is true storeKey false useTicketCache false useKeyTab false doNotPrompt f
alse ticketCache is null KeyTab is null refreshKrb5Config is false principal is
null tryFirstPass is false useFirstPass is false storePass is false clearPass is
false
Kerberos username [Kloucek]: User3
Kerberos password for User3: Poiu4566
[Krb5LoginModule] user entered username: User3
principal is [email protected]
Acquire TGT using AS Exchange
EncryptionKey: keyType=3 keyBytes (hex dump)=0000: 13 A1 F4 86 B6 1C BF 85
EncryptionKey: keyType=1 keyBytes (hex dump)=0000: 13 A1 F4 86 B6 1C BF 85
EncryptionKey: keyType=16 keyBytes (hex dump)=0000: 01 58 6E AE EF 25 15 43 F1
2C 40 46 7A 3D 2A B0 .Xn..%.C.,@Fz=*.
0010: 1F 16 9E B6 19 8A 46 68
[Krb5LoginModule] authentication failed
Pre-authentication information was invalid (24)
Authentication failed:
Pre-authentication information was invalid (24)
I tried all tips i found at this forum and other internet resources without luck...:-(((
Please heeeeelp!!!!!!!!!!!!!!!!!

I have solve it....The reason of this problem was this:
Im accesing our network via this login properties:
login: My second name
pass: My password
Due to this fact i had entered this login properties into the Kerberos database too..., BUT KERBEROS had been expecting my fully qualified network name which is myfirstname.myseconame@KERBEROS-REALM!!!!!!!!!!!!!!!So after i had entered [email protected] instead of [email protected] it started to work!!!!! I hope this will help many other programmers....

Similar Messages

  • Pre-authentication information was invalid (24)

    Hi all,
    im going to be really desperate from this error message during the authentization to the Win2003 server where the Active Directory is running ... Im using Krb5LoginModule.
    - Our administrator of the AD service has enabled DES encryption at the tested account.
    - Im sure that entered password is correct, because im able to login via this password to our network.
    - Entered Kerberos realm is in upper case...in the form (COMPANY.COM)
    - Kerberos KDC contains IP adress of the Domain controller.
    I really dont know why it doesnt work....:-(( Strange is that if i enable ticketCache to the ability to use the native ticket cache it works fine.....
    My code is:
    import javax.security.sasl.*;
    import java.io.*;
    import java.util.*;
    import javax.security.auth.Subject;
    import com.sun.security.auth.callback.TextCallbackHandler;
    * This JaasAcn application attempts to authenticate a user
    * and reports whether or not the authentication was successful.
    public class JaasSample {
      public static void main(String[] args) {
            LoginContext lc = null;
         java.util.Properties p = new java.util.Properties(System.getProperties());
           try
                lc = new LoginContext("JaasSample", new TextCallbackHandler());
           catch (LoginException le)
                System.err.println("Cannot create LoginContext. "
                     + le.getMessage());
                System.exit(-1);
           catch (SecurityException se)
                System.err.println("Cannot create LoginContext. "
                     + se.getMessage());
                System.exit(-1);
           catch (Exception e)
                System.out.println("Login failer: "+e.getMessage());
          try {
                        lc.login();
                        Subject subject = lc.getSubject();
                    Iterator it = subject.getPrincipals().iterator();
                    while (it.hasNext())
                        System.out.println("Authenticated: " + it.next().toString());
                    it = subject.getPublicCredentials(Properties.class).iterator();
                    while (it.hasNext())
                        ((Properties)it.next()).list(System.out);
                    lc.logout();
          } catch (LoginException le) {
              System.err.println("Authentication failed: ");
              System.err.println("  " + le.getMessage());
              System.exit(-1);
          System.out.println("Authentication succeeded!");
    }start.bat file:
    "c:\Program Files\Java\jdk1.5.0_06\bin\java" -Djava.security.krb5.realm=BERIT.CZ -Djava.security.krb5.kdc=10.1.0.04 -Djava.security.krb5.debug=true -Djava.security.auth.login.config=jaas.conf JaasSample
    jaas.conf file:
    JaasSample {
    com.sun.security.auth.module.Krb5LoginModule required useTicketCache="false" debug="true";
    Output is:
    c:\JAAS>"c:\Program Files\Java\jdk1.5.0_06\bin\java" -Djava.security.krb5.realm=
    BERIT.CZ -Djava.security.krb5.kdc=10.1.0.04 -Djava.security.krb5.debug=true -Dja
    va.security.auth.login.config=jaas.conf JaasSample
    Debug is true storeKey false useTicketCache false useKeyTab false doNotPrompt f
    alse ticketCache is null KeyTab is null refreshKrb5Config is false principal is
    null tryFirstPass is false useFirstPass is false storePass is false clearPass is
    false
    Kerberos username [Kloucek]: User3
    Kerberos password for User3: Poiu4566
    [Krb5LoginModule] user entered username: User3
    principal is [email protected]
    Acquire TGT using AS Exchange
    EncryptionKey: keyType=3 keyBytes (hex dump)=0000: 13 A1 F4 86 B6 1C BF 85
    EncryptionKey: keyType=1 keyBytes (hex dump)=0000: 13 A1 F4 86 B6 1C BF 85
    EncryptionKey: keyType=16 keyBytes (hex dump)=0000: 01 58 6E AE EF 25 15 43 F1
    2C 40 46 7A 3D 2A B0 .Xn..%.C.,@Fz=*.
    0010: 1F 16 9E B6 19 8A 46 68
    [Krb5LoginModule] authentication failed
    Pre-authentication information was invalid (24)
    Authentication failed:
    Pre-authentication information was invalid (24)
    I tried all tips i found at this forum and other internet resources without luck...:-(((
    Please heeeeelp!!!!!!!!!!!!!!!!!

    Hi all,
    im going to be really desperate from this error message during the authentization to the Win2003 server where the Active Directory is running ... Im using Krb5LoginModule.
    - Our administrator of the AD service has enabled DES encryption at the tested account.
    - Im sure that entered password is correct, because im able to login via this password to our network.
    - Entered Kerberos realm is in upper case...in the form (COMPANY.COM)
    - Kerberos KDC contains IP adress of the Domain controller.
    I really dont know why it doesnt work....:-(( Strange is that if i enable ticketCache to the ability to use the native ticket cache it works fine.....
    My code is:
    import javax.security.sasl.*;
    import java.io.*;
    import java.util.*;
    import javax.security.auth.Subject;
    import com.sun.security.auth.callback.TextCallbackHandler;
    * This JaasAcn application attempts to authenticate a user
    * and reports whether or not the authentication was successful.
    public class JaasSample {
      public static void main(String[] args) {
            LoginContext lc = null;
         java.util.Properties p = new java.util.Properties(System.getProperties());
           try
                lc = new LoginContext("JaasSample", new TextCallbackHandler());
           catch (LoginException le)
                System.err.println("Cannot create LoginContext. "
                     + le.getMessage());
                System.exit(-1);
           catch (SecurityException se)
                System.err.println("Cannot create LoginContext. "
                     + se.getMessage());
                System.exit(-1);
           catch (Exception e)
                System.out.println("Login failer: "+e.getMessage());
          try {
                        lc.login();
                        Subject subject = lc.getSubject();
                    Iterator it = subject.getPrincipals().iterator();
                    while (it.hasNext())
                        System.out.println("Authenticated: " + it.next().toString());
                    it = subject.getPublicCredentials(Properties.class).iterator();
                    while (it.hasNext())
                        ((Properties)it.next()).list(System.out);
                    lc.logout();
          } catch (LoginException le) {
              System.err.println("Authentication failed: ");
              System.err.println("  " + le.getMessage());
              System.exit(-1);
          System.out.println("Authentication succeeded!");
    start.bat file:
    "c:\Program Files\Java\jdk1.5.0_06\bin\java" -Djava.security.krb5.realm=BERIT.CZ -Djava.security.krb5.kdc=10.1.0.04 -Djava.security.krb5.debug=true -Djava.security.auth.login.config=jaas.conf JaasSample
    jaas.conf file:
    JaasSample {
    com.sun.security.auth.module.Krb5LoginModule required useTicketCache="false" debug="true";
    Output is:
    c:\JAAS>"c:\Program Files\Java\jdk1.5.0_06\bin\java" -Djava.security.krb5.realm=
    BERIT.CZ -Djava.security.krb5.kdc=10.1.0.04 -Djava.security.krb5.debug=true -Dja
    va.security.auth.login.config=jaas.conf JaasSample
    Debug is true storeKey false useTicketCache false useKeyTab false doNotPrompt f
    alse ticketCache is null KeyTab is null refreshKrb5Config is false principal is
    null tryFirstPass is false useFirstPass is false storePass is false clearPass is
    false
    Kerberos username [Kloucek]: User3
    Kerberos password for User3: Poiu4566
    [Krb5LoginModule] user entered username: User3
    principal is [email protected]
    Acquire TGT using AS Exchange
    EncryptionKey: keyType=3 keyBytes (hex dump)=0000: 13 A1 F4 86 B6 1C BF 85
    EncryptionKey: keyType=1 keyBytes (hex dump)=0000: 13 A1 F4 86 B6 1C BF 85
    EncryptionKey: keyType=16 keyBytes (hex dump)=0000: 01 58 6E AE EF 25 15 43 F1
    2C 40 46 7A 3D 2A B0 .Xn..%.C.,@Fz=*.
    0010: 1F 16 9E B6 19 8A 46 68
    [Krb5LoginModule] authentication failed
    Pre-authentication information was invalid (24)
    Authentication failed:
    Pre-authentication information was invalid (24)I tried all tips i found at this forum and other internet resources without luck...:-(((
    Please heeeeelp!!!!!!!!!!!!!!!!!

  • JAAS, AD, Pre-authentication information was invalid (24)

    Our application is java based, and we use JAAS to allow authentication for the users though Active Directory.
    In particular we alwyas encourage our prospect clients to use Krb5LoginModule.
    We would
    1. add new user to AD , set DES for the account, reset the password
    2.
    setspn -A host/newUser.DOMAIN.COM newUser
    setspn -A HTTP/newUser.DOMAIN.COM newUser
    run ktpass
    pass the keytab to the server where the server application will be running from and setup there
    -Djava.security.auth.login.config=c:\config\config.conf
    -Djava.security.realm=DOMANNAME
    -Djava.security.kdc=<Ip address of kdc>
    where config.conf file would have line
    Krb5LoginModule tryFirstPass=true storePass=true storeKey=true useKeyTab=true keyTab="c:\keytab.key";
    and it works...
    However, I have encountered a situation where the above would return
    Pre-authentication information was invalid (24) error.
    We have reset the password, re-generate the keytab, it is the same time zone ... and nothing.
    Then I asked to have a new user added (just to test it) - and it worked for the new user.
    Now - what do I need to do to get to work for the hunders of others?
    Thanks

    Support for the new Kerberos preauthentication mechanisms is available in Java SE 6.
    In addition, the pre-auth support has been backported to J2SE 5.0 Update 8.
    Seema

  • Error with Pre-Authentication for Windows Desktop SSO

    When I try to use the windows desktop sso module created in the Access Manager I get an error in the amAuthWindowsDesktopSSO file, but I don't know what I'm doing erroneous. It's not an access manager problem, I can't get kinit to work either. I think I'm following the directions correctly from the manual.
    Are these ktpass commands setup right?
    The Windows AD administrator created the accounts:
    C:\>ktpass -princ HOST/[email protected] -pass amdev -mapuser AD\amdev$ -out amdev.keytab
    Targeting domain controller: dc2.ad.tcpip.com
    Successfully mapped HOST/amdev.tcpip.com to AMDEV$.
    WARNING: Account AMDEV$ is not a user account (uacflags=0x1021).
    WARNING: Resetting AMDEV$'s password may cause authentication problems if AMDEV$ is being used as a server.
    Reset AMDEV$'s password [y/n]?  y
    Key created.
    Output keytab to amdev.keytab:
    Keytab version: 0x502
    keysize 56 HOST/[email protected] ptype 1 (KRB5_NT_PRINCIPAL) vno 3 etype 0x3 (DES-CBC-MD5) keylength 8 (0x023efe
    3e6846d3cd)
    Account AMDEV$ has been set for DES-only encryption.
    C:\>ktpass -princ HTTP/[email protected] -pass amdev -mapuser AD\amdev$ -out amdev-http.keytab
    Targeting domain controller: dc2.ad.tcpip.com
    Successfully mapped HTTP/amdev.tcpip.com to AMDEV$.
    WARNING: Account AMDEV$ is not a user account (uacflags=0x201021).
    WARNING: Resetting AMDEV$'s password may cause authentication problems if AMDEV$ is being used as a server.
    Reset AMDEV$'s password [y/n]?  y
    Key created.
    Output keytab to amdev-http.keytab:
    Keytab version: 0x502
    keysize 56 HTTP/[email protected] ptype 1 (KRB5_NT_PRINCIPAL) vno 4 etype 0x3 (DES-CBC-MD5) keylength 8 (0x45201c
    f4d3ec43e6)
    Account AMDEV$ has been set for DES-only encryption.
    C:\>I can read the keys with ktutil.
    ktutil:  rkt amdev-http.keytab
    ktutil:  list
    slot KVNO Principal
       1    4            HTTP/[email protected]
    ktutil:  rkt amdev.keytab
    ktutil:  list
    slot KVNO Principal
       1    4            HTTP/[email protected]
       2    3            HOST/[email protected]
    ktutil:  wkt amdev2.keytabI then try to do a kinit with the principal:
    kinit -k -t amdev2.keytab HTTP/[email protected]
    kinit(v5): Preauthentication failed while getting initial credentialsAccess Manager reports similar problem on access:
    01/17/2007 10:23:56:699 AM CST: Thread[service-j2ee-2,5,main]
    Stack trace:
    javax.security.auth.login.LoginException: Pre-authentication information was invalid (24)
            at com.sun.security.auth.module.Krb5LoginModule.attemptAuthentication(Krb5LoginModule.java:652)
            at com.sun.security.auth.module.Krb5LoginModule.login(Krb5LoginModule.java:512)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
    . . .

    Something deep, dark, and inside Kerberos way outside of my knowledge base was the problem.
    I could always get a kinit with the HTTP/amdev.tcpip.com service to work. I never got the keytabs from the output of ktpass to operate. I used ktutil to create keytab entries all in vain, kinit using the keytab always resulted in a PA error, although the time clocks are setup the same.
    The AD administrator created the account, this time as a user account, not a machine account, and the keytabs from the Windows domain controller finally worked.
    If anyone knows the difference between machine and user accounts are in AD, I would be obliged for his/her explanation. The UPN and SPN look the same in the directory. I'm at a loss. However, very glad to finally have this working.

  • Pre-Order Bonus Code Was Invalid

    I pre-ordered Thief for the PS4 back in February and received my code on 2/25/14. I realize it is now nine months later but when I went to use my code a couple weeks ago it said it was invalid or had already been used. I contacted PS support and they informed me the code had been used on 2/26/14 by someone that was not me. So either that person mistakenly put my code in, correctly guessed my code or was sent the exact same code as me. As I said, I realize this concerning a nine month old code but I am a very busy man and usually do not redeem my pre-order codes until I am able to play the game that the code is for. I would really appreciate a replacement code.

    Hello Sub-Xero,
    Thanks for your Thief pre-order.  Thanks too for being a My Best Buy member.  We appreciate your loyalty.  I'll be happy to review your purchase with you.
    It definitely seems odd that your code would have been used a day after it was received.  I'm afraid I would have no way of knowing how that would have been possible.  I will review your order and send you a private message with additional information.
    Best regards,
    Mike|Social Media Specialist | Best Buy® Corporate
     Private Message

  • 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.

  • Being informed about invalid user/pwd from Authenticator

    I set up a subclass of java.net.Authenticator to handle the user/password for proxy authentication. The proxy authentication is given by the user in some preference page. The authentication preference is part of the framework. My users are programmers that use URLConnection and subclasses. They should not care about authentication details but just be able to connect().
    Now, when a user opens an URLConnection, the connect() call either succeeds or fails with a 407 if the password does not match. However, I don't want to give the users a 407 right away. In case of a wrong authentication information, I'd rather open the preference page again and let the application user enter the password again.
    The password might be wrong due to an application user error, but also due to a changed proxy authentication, so a simple "test connection" on the preference page won't do the job.
    So, my question is: How can the framework be informed that a 407 occured, intercept and retry the connect() without doing the actual connect() call? Can this be done with the java.net classes or do I have to let my users use a wrapper (I'd rather avoid this)?
    Matthias

    BI System User is the user OBI uses for internal communication. Once you change the password for that user, you need to make sure you change the password in the Credential Store as well. Refer: http://docs.oracle.com/cd/E21764_01/bi.1111/e10543/privileges.htm#CHDFHDBE
    Make the change and see if that helps.

  • Kerberos pre-authentication issues - why now?

    Hi all,
    We recently put up a new Windows 2003 Active Directory domain controller to replace a de-commissioned Windows 2000 DC.  When my VPN users try to authenticate to it using Kerberos, they are getting rejected with a pre-authentication failed error.  I know that this is a common issue with the ASA, and TAC has confirmed that there's no solution for it yet.  However, we have another W2K3 DC that has never had this issue.  So why now?  Why this new DC?  What's the difference between my DCs where one can authenticate a user with pre-authentication enabled and one can't?
    Any help or information that I can get would be helpful.
    Thanks,
    - Steve

    Hi JK,
    Thanks for the reply.
    Right, I understand that, and TAC directed me to the same document.  But we have an existing domain controller that we are currently using the authenicate against; pre-authentication is enabled, and it works fine.  It's only the NEW domain controller that has this problem.  So I'm trying to figure out what the difference is!
    I would rather NOT disable pre-authentication for all VPN users if possible - there are a lot of them and it lessens the security of Active Directory.
    Thanks,
    - Steve

  • Sasl, a token was invalid

    Hello,
    I'm trying to get an initial context with this code...
             Properties env = new Properties();
             env.setProperty(javax.naming.Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
             env.setProperty(javax.naming.Context.PROVIDER_URL, "ldap://foo.com:389/dc=foo,dc=com");
             env.put( Context.SECURITY_PRINCIPAL, "uid=admin,ou=Users,dc=foo,dc=com" );
             env.setProperty(javax.naming.Context.SECURITY_AUTHENTICATION, "GSSAPI");
             env.setProperty("javax.security.sasl.server.authentication", "true");
             DirContext ctx = new InitialDirContext(env);and at the call to InitialDirContext i get...
    javax.naming.NamingException: [LDAP: error code 80 - SASL(-1): generic failure: GSSAPI Error: A token was invalid (No error)]
         at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:3029)
         at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2931)
         at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2732)
         at com.sun.jndi.ldap.LdapCtx.connect(LdapCtx.java:2646)
         at com.sun.jndi.ldap.LdapCtx.<init>(LdapCtx.java:283)
         at com.sun.jndi.ldap.LdapCtxFactory.getUsingURL(LdapCtxFactory.java:175)
         at com.sun.jndi.ldap.LdapCtxFactory.getUsingURLs(LdapCtxFactory.java:193)
         at com.sun.jndi.ldap.LdapCtxFactory.getLdapCtxInstance(LdapCtxFactory.java:136)
         at com.sun.jndi.ldap.LdapCtxFactory.getInitialContext(LdapCtxFactory.java:66)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at javax.naming.directory.InitialDirContext.<init>(InitialDirContext.java:82)
         at TestClient.run(TestClient.java:76)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:337)
         at TestClient.main(TestClient.java:41)This is obviously something to do with the sasl/kerberos5 side of things. Connecting to ldap isnt a problem, only when using this authentication.
    Hope someone has a clue as google dosnt :o(
    Ted.

    Hi,
    Thanks for the reply although I assumed you meant this link http://forum.java.sun.com/thread.jspa?threadID=579829&tstart=195
    However, it dosnt help me.
    You talk about active directory and kerberos, i only have kerberos. I have a java app on a box (any platform) that needs to authenticate against kerberos then connect to ldap (on the same box as kerberos as it happens).
    The authentication happens ok but getting the initial context falls over.
    Any idea what the error means? Can't find it mentioned in any docs or n'groups. No reply from newsgroups :o(
    Ted.

  • Got a new mac today, I created my iCloud account (and therfore my Apple ID?) I tried to set up my iTunes and download updates, and it says i need to review my account, then I had to edit my Apple ID details, but said my email address was invalid???

    Got a new mac today, I created my iCloud account (and therfore my Apple ID?) I tried to set up my iTunes and download updates, and it says i need to review my account, then I had to edit my Apple ID details, but said my email address was invalid???

    From the information that you have provided, it sounds like your Apple ID has been disabled.  You can read this to see how you can troubleshoot that issue.
    Apple ID is Disabled - Apple Club - Google Sites
    You can try signing out of your ID on the iPad and sign in with his ID and see if that works.
    Settings>iTunes and App Stores>Apple ID. Tap your ID and sign out. Then sign in with your husband's newly created ID.

  • Error "Registration information is invalid" when you start Premiere Elements 7 (Windows)

    Issue
    When you start Adobe Premiere Elements 7 for the first time, Premiere Elements returns the error message "Registration information is invalid. Please reinstall Adobe Premiere Elements."
    Solution
    Do one of the following solutions:
    Solution 1: Install Premiere Elements 7 using the Premiere Elements 7 serial number.
    If you purchased Premiere Elements bundled with Photoshop Elements, you may have used the Photoshop Elements serial number included in the pack to install Premiere Elements. Uninstall Premiere Elements and reinstall Premiere Elements using the Premiere Elements serial number.
    Note: The Premiere Elements serial number starts with the number set 1143. The Photoshop Elements serial number starts with the number set 1057.
    Solution 2: Use a Company Name with 40 single-byte characters or fewer, or 20 double-byte characters or fewer.
    When installing Premiere Elements, you are asked to provide a user name, a company name, and a serial number. While the company name field is not a required field for installation, if you choose to enter data, do not enter a name that contains more than 40 single-byte characters or more than 20 double-byte characters.
    Note: A single-byte character is any character in the standard ASCII character set. English language characters are all single-byte characters. Double-byte character code uses two bytes to represent one character. The double-byte character set was developed for the Japanese, Chinese, and Korean characters sets. Many extended ASCII characters are also double-byte.
    Solution 3: Install Premiere Elements to a location that does not contain extended ASCII characters in the file path.
    Do not install Premiere Elements to a location that uses extended ASCII characters in the file path. Extended ASCII characters include characters such as , –, ›, †, ‡, ‘, Ÿ.
    Note: The default installation path for Adobe Premiere Elements does not contain extended ASCII characters.

    Thanks.  I thought of that.  But won't I get whammied for registration again?  I just registered this at adobe last month after rebuilding a crashed system.  In other words, will Adobe know that I've uninstalled it, and therefore have an available license?  Thanks for the welcome.  I've been a Studio premium user for 3 years, and now that my product is no longer supported....I need support!
    Thanks.

  • ImageReady CS2 error: Could not fully open the application. Personalization information is invalid.

    Hello,
    I am posting because Adobe is not offering tech support for CS2 and I cannot find this error for CS2 software, only CS.
    I have been using CS2 for some time on the same machine (specs below, let me know if you need additional), and have had no problems. All of a sudden, I am getting the error: "Could not fully open the application. Personalization information is invalid." when opening ImageReady. Either jumping from Photoshop or opening from Applications.
    I cannot reinstall, as I lost discs in a move, but it is valid software with valid serials, and registered, but no phone tech support! I would appreciate any help/advice/solutions greatly! Thanks.
    Photoshop/ImageReady 9.0.2
    Mac OSX 10.4.11
    1.47 GHz PowerPC G4
    1.25 GB SDRAM
    Available Disc space: 24.91 GB
    GeForce FX 5200

    Neil and Ann,
    I tried calling customer service today looking for a tech support number and was told that tech support is no longer offered for CS2! She told me to go to the forums at Adobe.com, which is how I ended up here.
    My discs were lost in a move away from a roommate (along with some other things!), so there is no recovering them. I'll call it the cost of my sanity.
    I have an old version of Director, but it gets so involved. It would have been so easy to flip my simple graphics straight from Photoshop to ImageReady. Looks like I will have to though.
    Thanks for the time and attention to my problem. I guess I should be thankful that I only lost ImageReady, which I use once in a blue moon anyway.
    Best regards.

  • Mail problem - "Sender address was invalid"

    So I get this message from time to time: then I try to send an e-mail from the mail app on my iPod Touch, it'll come back to me saying "The Sender Address was invalid" and won't send it. However, it's gotten worse of late; previously, I would hit the refresh button and then it would send, but recently that has stopped working. For about 45 minutes this morning I tried to send an e-mail and it just wouldn't send. I ended up having to log into my e-mail manually (through Safari on my iPod) to get it to send (which worked). However, I would like to know if anyone else has encountered this problem, if anyone knows what causes it, if anyone knows how to solve it, and if it would be worthwhile submitting a bug report to Apple about this. Thanks.

    With so many threads and indy websites posting this problem, I'm not sure where's best to post my solution. So it's here and I hope someone gets help from it.
    Same thing - "sender address blah blah blah" and none of the fixes worked. So I deleted the outgoing server (or so I thought!) and restarted the iPod. The server was not listed.
    Then I reentered the information and used Port 25 (I had tried that before but went back to the default port of 587 before deleting the old server).
    I connected to my WiFi and my mail went thru immediately. But what was interesting was the 'old' server showed up as the backup with port 587. I don't dare touch a thing - it's working!
    BTW, I am using my own website and mail servers (hosted elsewhere).
    Interestingly, if the iPod is accessing the mail servers, the computer access is blocked. Probably my host no allowing multiple connections from the same location, but I've done that before with my laptop and other Macs here w/o a hitch. But really a big deal, but interesting.
    Thanks to all who have posted in this thread and all the other threads. Together, we ARE tech support! But the Apple guys and gals are great as well. And this iPod Touch is AMAZING!

  • The binary you uploaded was invalid. Very unhelpful support complaint

    I have finally made it to the "Add New Application" screen in the iTunes connect portal. 3 hours must have passed since I decided to submit my app to the itunes store.
    Almost every step of the way here was painful and full of troubleshooting madness. Yet I followed each step carefully one by one, did everything that the guides told me to do to.
    I've found that to submit your iphone app to the App store following instructions is not enough. Many times in my life I have had to go through Applications procedures, but I have never heard of a procedure where you follow each step but still run into problems.
    So my problem is, I try to upload my file I get an error message:
    The binary you uploaded was invalid. The signature was invalid, or it was not signed with an Apple submission certificate.
    Question 1)
    Am I supposed to be uploading a zip file or the .app file? When reading the step by step instructions it says to zip the file (Yet no explanation on what to do with the zipped file). When choosing which file to upload I can only upload the zip file. Their should be clear instructions pointing out exactly what type of file needs to be uploaded, and also additional notes explaning what I should do with the zipped file.
    Question 2)
    Earlier in the process I was required to enter a common name in the certificate. It says to enter the common name you entered when you signed up. I do not know where to find that common name exactly, and and I unsure where I can find that exact information. There should be instructions about where you can find your common name to avoid problems further down the process.
    Question 3)
    Under verifying distribution, Step number 2 it says:
    "Search for the term “CodeSign” in the Build Log detail view - this will take you to the line in the build log that confirms your application was signed by your iPhone Certificate"
    So it shows up in my log, but the instructions do not point out what to look at, and where the problem might be. It only tells you to search for the term CodeSign and leaves you off. Sure their is an image highlighting the required line. But it says nothing other than to look for the words CodeSign. What exactly am I looking at here?
    I am doing my best to try and forgive these flaws found in the help section. What is it that I did wrong?
    Message was edited by: Darpachief

    Darpachief wrote:
    So my problem is, I try to upload my file I get an error message:
    The binary you uploaded was invalid. The signature was invalid, or it was not signed with an Apple submission certificate.
    Most likely you got the binary signed with the wrong certificate. Or there's something else in your process that doesn't match exactly with what you entered at the Program Portal.
    Question 1)
    Am I supposed to be uploading a zip file or the .app file? When reading the step by step instructions it says to zip the file (Yet no explanation on what to do with the zipped file). When choosing which file to upload I can only upload the zip file.
    You should upload the zip file. You're correct that it's not spelled out in the printed directions, but there's a video on how to prepare your app for the store and in it the presenter uploads the zip file. Being only able to choose the zip file is a sign that the correct file is the zip.
    Question 2)
    Earlier in the process I was required to enter a common name in the certificate. It says to enter the common name you entered when you signed up. I do not know where to find that common name exactly, and and I unsure where I can find that exact information. There should be instructions about where you can find your common name to avoid problems further down the process.
    Remember when you generated and installed all the certificates from the Program Portal web site? You can get the names from there.
    So it shows up in my log, but the instructions do not point out what to look at, and where the problem might be. It only tells you to search for the term CodeSign and leaves you off. Sure their is an image highlighting the required line. But it says nothing other than to look for the words CodeSign. What exactly am I looking at here?
    Basically, by following those directions, you're looking to see if your code is signed and that it's signing the right binary (i.e., in the correct build folder). It's not telling you what you used to sign the binary, whether you used the development certificate or the distribution one.
    What is it that I did wrong?
    You have to generate a certificate and provisioning profile for your app for distribution. You can't use the same one you used for signing your app if you tested on your device. You need to have the certificates and provisioning profiles properly entered into your keychain and Xcode for this to all work. Perhaps you missed one? Make sure you've zipped and uploaded the correct binary, i.e., the distribution one and not a development one.
    Also, you should make sure that the app identifier (com.companyname.appname) matches exactly with what you entered into the program portal, even down to the case (i.e., if it's "appname" on the portal make sure it's not "AppName" in Xcode).
    I haven't uploaded anything to the App Store yet, but I've pretty much done everything else: Ad Hoc distribution to my iPod via iTunes on another computer running an older OS, run directly on the iPod, used Instruments to profile my code on the iPod. In every case, I ran into some kind of roadblock, but in going through it again, I also found that I skipped some step, or missed some setting, and once I corrected that, things worked as expected.
    It's a complicated process, one that has a lot of steps, therefore a lot of places for a mistake or missed setting. So try going back through the process again just to make sure you haven't missed a step or gotten some setting wrong.
    charlie
    P.S. - If you want to send feedback on the documentation, ADC has a contact page.

  • Java.rmi.NoSuchObjectException: Session has timed out or was invalidated

    I am getting error in subject when my application is not using Statefull Session Bean for sometime(20 Minutes or so). What i understand is that after session bean is passivated and next time some method is invoked, it is throwing this exeception. My appserver is Oracle 10gAS release2. Please guide if somebody has any clue...This is very critical.Thanks.
    Below is stack trace for reference:
    java.rmi.NoSuchObjectException: Session has timed out or was invalidated
         at com.evermind.server.ejb.StatefulSessionEJBObject.throwPassivisationException(StatefulSessionEJBObject.java:299)
         at BONInstance_StatefulSessionBeanWrapper8.getOutputParameterDetail(BONInstance_StatefulSessionBeanWrapper8.java:728)
         at com.nuc.bon.controller.UIController.processRequest(UIController.java:170)
         at com.nuc.bon.controller.UIController.doPost(UIController.java:457)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)

    I'm having the same problem. I posted to VSM sample and Pooled ApplicationModule Maximum Inactive Age
    which seems to be a similar situation.
    Does anyone have any information on where this time out parameter is set on either the app module or OAS and how to handle this error correctly?
    Thanks,
    Brian

Maybe you are looking for