PLEASE HELP PROJECT ME GOT EXAM NEXT WEEK

I dont know how to do the code code comments that are listed
// ask for fields needed for an account
// declare local variables and store the information in these
// ask whether it is a checking or savings. Read in a char datatype named which
// ask for the monthly fee and read it into a variable
// ask whether it is a checking or savings. Read in a char datatype named which
// ask for the interest rate and read it into a variable
// create an instance of a savings account and add it to the array
public static void process(Account[] acct, int num)
// use a for loop to calculate all the new balances
public static void printAll(Account[] acct, int num)
// use a for loop to print out all of the accounts
public static int addAccount(Account[] a, int num, String name)
// ask for fields needed for an account
JOptionPane.showInputDialog( "Enter Name" );
JOptionPane.showInputDialog( "Enter Address" );
JOptionPane.showInputDialog( "Enter Phone Number" );
JOptionPane.showInputDialog( "Enter Date of Birth" );
JOptionPane.showInputDialog( "Enter Social Security Number" );
JOptionPane.showInputDialog( "Enter Account Number" );
// declare local variables and store the information in these
// ask whether it is a checking or savings. Read in a char datatype named which
JOptionPane.showInputDialog("Enter checking or savings 'C','S'");
if (which=='C')
// ask for the monthly fee and read it into a variable
JOptionPane.showInputDialog("Enter monthly fee");
// create an instance of a checking account and add it to the array
else if (which=='S')
// ask for the interest rate and read it into a variable
// create an instance of a savings account and add it to the array
return ++num;
public static void sortAccount(Account[] a, int num)
for(int pass = 1; pass < num; pass++)
for(int pair = 1; pair < num; pair++)
if(a[pair].compareTo(a[pair - 1]) < 1)
Account temp = a[pair - 1];
a[pair - 1] = a[pair];
a[pair] = temp;
public static void process(Account[] acct, int num)
// use a for loop to calculate all the new balances
public static void printAll(Account[] acct, int num)
// use a for loop to print out all of the accounts

ok here is the whole program
here is where I am having trouble inder the Banking part I have done everythng else and now I am stuck
// Ask for fields needed for an account
// declare local variables and store the information in these
// ask whether it is a checking or savings. Read in a char datatype named which
// ask for the monthly fee and read it into a variable
// ask whether it is a checking or savings. Read in a char datatype named which
// ask for the interest rate and read it into a variable
// create an instance of a savings account and add it to the array
public static void process (Account[] acct, int num)
import java.text.*;
public abstract class Account implements Comparable{
     * Constructor Account.
     * @param cust
     * @param balance
     * @param acctNum
     public Account(Customer cust, double balance, int acctNum)
     // three protected fields, cust of type Customer
     // balance of type double and acctNum of type int
     protected String cust;
     protected double balance;
     protected int acctNum;
     private NumberFormat fmt = NumberFormat.getCurrencyInstance();
     private String Customer;
     private String acctNumber;
// empty constructor
public Account ()
     //full constructor
public Account (String cust, double balance, int accNum)     
          Customer = cust;
     public abstract void calcBalance();
     public String toString( )
          return cust.toString() + " with account number " + acctNum + " and a balance of " + fmt.format(balance);
     // get method deposit from p228
     public double deposit (double amount)
          if (amount < 0) // deposit value is negative
               System.out.println ();
               System.out.println ("Error: Deposit amount is invalid.");
               System.out.println (acctNumber + " " + fmt.format(amount));
          else
               balance = balance + amount;
          return balance;
     // get method withdraw from p 228
     public double withdraw (double amount, double fee)
          amount += fee;
          if (amount < 0) // withdraw value is negative
               System.out.println ();
               System.out.println ("Error: Withdraw amount is invalid.");
               System.out.println ("Account: " + acctNumber);
               System.out.println ("Requested: " + fmt.format(amount));
          else
               if (amount > balance) // withdraw value exceeds balance
                    System.out.println ();
                    System.out.println ("Error: Insufficient funds.");
                    System.out.println ("Account: " + acctNumber);
                    System.out.println ("Requested: " + fmt.format(amount));
                    System.out.println ("Available: " + fmt.format(balance));
               else
                    balance = balance - amount;
          return balance;
public int compareTo(Object o)
     Account a = (Account) o;
     if (acctNum>a.acctNum)
          return 1;
     else
          return -1;     
// all getters and setters
     * Returns the acctNum.
     * @return int
     public int getAcctNum()
          return acctNum;
     * Returns the acctNumber.
     * @return String
     public String getAcctNumber()
          return acctNumber;
     * Returns the balance.
     * @return double
     public double getBalance()
          return balance;
     * Returns the cust.
     * @return String
     public String getCust()
          return cust;
     * Returns the customer.
     * @return String
     public String getCustomer()
          return Customer;
     * Returns the fmt.
     * @return NumberFormat
     public NumberFormat getFmt()
          return fmt;
     * Sets the acctNum.
     * @param acctNum The acctNum to set
     public void setAcctNum(int acctNum)
          this.acctNum = acctNum;
     * Sets the acctNumber.
     * @param acctNumber The acctNumber to set
     public void setAcctNumber(String acctNumber)
          this.acctNumber = acctNumber;
     * Sets the balance.
     * @param balance The balance to set
     public void setBalance(double balance)
          this.balance = balance;
     * Sets the cust.
     * @param cust The cust to set
     public void setCust(String cust)
          this.cust = cust;
     * Sets the customer.
     * @param customer The customer to set
     public void setCustomer(String customer)
          Customer = customer;
     * Sets the fmt.
     * @param fmt The fmt to set
     public void setFmt(NumberFormat fmt)
          this.fmt = fmt;
public class Savings extends Account {
     private String monthlyFee;
     public Savings(Customer c, int i, int i1, double d)
     // one extrra private field called intRate of type double
     private double intRate ()
          double RATE = 0;
          balance += (balance * RATE);
          return balance;
     // empty constructor
     public Savings ()
     // full constructor - see Checking class on how to do this
     public Savings(Customer cust, double balance, int acctNum, double monthlyFee)
               super(cust,balance, acctNum);
               this.balance=monthlyFee;
     public void calcBalance()
          double intRate = 0;
          balance = balance + balance*intRate/100/12;
     // toString method - see Checking class on how to do this.
     public String toString()
               return super.toString() + " and a monthly fee of " + monthlyFee;
     // getters and setters for only the new fields
     * Returns the monthlyFee.
     * @return String
     public String getMonthlyFee()
          return monthlyFee;
     * Sets the monthlyFee.
     * @param monthlyFee The monthlyFee to set
     public void setMonthlyFee(String monthlyFee)
          this.monthlyFee = monthlyFee;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
public class Messages
     private static final String BUNDLE_NAME = "p5start.test"; //$NON-NLS-1$
     private static final ResourceBundle RESOURCE_BUNDLE =
          ResourceBundle.getBundle(BUNDLE_NAME);
     private Messages()
     public static String getString(String key)
          try
               return RESOURCE_BUNDLE.getString(key);
          catch (MissingResourceException e)
               return '!' + key + '!';
public class Customer {
     * Constructor Customer.
     * @param string
     * @param string1
     public Customer(String string, String string1)
     private String first;
     private String last;
     // two private fields of type String named first and last
     // an empty and a full constructor
     public Customer ()
     public String toString()
          return first + " " + last ;
     // all getters and setters
     * Returns the first.
     * @return String
     public String getFirst()
          return first;
     * Returns the last.
     * @return String
     public String getLast()
          return last;
     * Sets the first.
     * @param first The first to set
     public void setFirst(String first)
          this.first = first;
     * Sets the last.
     * @param last The last to set
     public void setLast(String last)
          this.last = last;
}public class Checking extends Account{
     // one private field monthlyFee of type double
     private double monthlyFee;
     // empty constuctor
     public Checking ()
     // this is the full constructor - notice how it is done
     public Checking(Customer cust, double balance, int acctNum, double monthlyFee)
          super(cust,balance, acctNum);
          this.monthlyFee=monthlyFee;
     public void calcBalance()
          balance = balance - monthlyFee;
     // notice how the toString is done
     public String toString()
          return super.toString() + " and a monthly fee of " + monthlyFee;
// getters and setters for ONLY the new fields
     * Returns the monthlyFee.
     * @return double
     public double getMonthlyFee()
          return monthlyFee;
     * Sets the monthlyFee.
     * @param monthlyFee The monthlyFee to set
     public void setMonthlyFee(double monthlyFee)
          this.monthlyFee = monthlyFee;
import javax.swing.JOptionPane;
public class Bank {
     private static char which;
     public static void main(String args[])
     Account[] bankAcct = new Account[30];
     int num = 0;
     Customer c = new Customer("Daffy", "Duck");
     Savings s = new Savings(c, 40000, 1237,3.00);
     Checking ck = new Checking(c, 3500, 1235,2.50);     
     bankAcct[0]=s;
     bankAcct[1]=ck;
     bankAcct[2] = new Checking ( new Customer("Bugs", "Bunny"), 2000,1236,4.00);
     num = 3;
int ans=0;
while (ans!=6)
menu();
System.out.println("CHOICE:");
ans = Keyboard.readInt();
if (ans==1)
num = addAccount(bankAcct,num);
if (ans==2)
sortAccount(bankAcct,num);
if (ans==3)
process(bankAcct,num);
if (ans == 4)
printAll(bankAcct,num);
if (ans==5)
     System.out.println("See ya later!!!!");
System.exit(0);
     * Method addAccount.
     * @param bankAcct
     * @param num
     * @return int
     private static int addAccount(Account[] bankAcct, int num)
          return 0;
public static void menu()
System.out.println("1. Add an account");
System.out.println("2. sort the accounts");
System.out.println("3. end of month processing");
System.out.println("4. print all records");
System.out.println("5. exit");
public static int addAccount(Account[] a, int num, String name)
     // ask for fields needed for an account
     JOptionPane.showInputDialog( "Enter Name" );
     JOptionPane.showInputDialog( "Enter Address" );
     JOptionPane.showInputDialog( "Enter Phone Number" );
     JOptionPane.showInputDialog( "Enter Date of Birth" );
     JOptionPane.showInputDialog( "Enter Social Security Number" );
     JOptionPane.showInputDialog( "Enter Account Number" );
     // declare local variables and store the information in these
     // ask whether it is a checking or savings. Read in a char datatype named which
     JOptionPane.showInputDialog("Enter checking or savings 'C','S'");
     if (which=='C')
          // ask for the monthly fee and read it into a variable
     JOptionPane.showInputDialog("Enter monthly fee");
          // create an instance of a checking account and add it to the array
     else if (which=='S')
          // ask for the interest rate and read it into a variable
          // create an instance of a savings account and add it to the array
     return ++num;
public static void sortAccount(Account[] a, int num)
for(int pass = 1; pass < num; pass++)
for(int pair = 1; pair < num; pair++)
if(a[pair].compareTo(a[pair - 1]) < 1)
Account temp = a[pair - 1];
a[pair - 1] = a[pair];
a[pair] = temp;
public static void process(Account[] acct, int num)
     // use a for loop to calculate all the new balances
public static void printAll(Account[] acct, int num)
     // use a for loop to print out all of the accounts
     * Returns the which.
     * @return char
     public static char getWhich()
          return which;
     * Sets the which.
     * @param which The which to set
     public static void setWhich(char which)
          Bank.which = which;

Similar Messages

  • Since I went to 4 Paychex and another important site can't work - they've requested I go back to 3.6 (???) Please help - need to do payroll next week and the other one is an important dianostic site for patients - thanks!!!!

    went to firefox 4 and our payroll company and another site won't work with it

    You can find the latest Firefox 3.6.x here:
    *http://www.mozilla.com/en-US/firefox/all-older.html

  • Please help! We got a used Mac Mini and we don't have the former owner's password, so we can't install anything like flash player.  Does anyone know how to get around this?

    Please help! We got a used Mac Mini and we don't have the former owner's password, so we can't install anything like flash player.  Does anyone know how to get around this? I don't know how to wipe the hard drive, and the support online doesn't seem to work.

    As posted previously:
    Reinstall OS X without erasing the drive
    Do the following:
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    If installing Leopard the process is similar in some respects.  If you wish to begin anew then after selecting the target disk click on the Options button and select the Erase and Install option then click on the OK button.  To install over an existing system do the following:
    How to Perform an Archive and Install
    An Archive and Install will NOT erase your hard drive, but you must have sufficient free space for a second OS X installation which could be from 3-9 GBs depending upon the version of OS X and selected installation options. The free space requirement is over and above normal free space requirements which should be at least 6-10 GBs. Read all the linked references carefully before proceeding.
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger, Leopard or Snow Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • Hi, my free trial license has expired, and I am wondering if it's possible to only pay for one month for after effects without locking for a year with monthly fee. I only need this for a project that is ending next week.

    Hi, my free trial license has expired, and I am wondering if it's possible to only pay for one month for after effects without locking for a year with monthly fee. I only need this for a project that is ending next week.

    Creative Cloud Plans
    https://creative.adobe.com/#plans

  • Oracle OCA 1Z0-042 exam next week

    Im taking the OCA 1Z0-042 next week and was wondering if anybody within the forums has taken this exam lately and what I should be concentrating on. Im currently using test software and this book (Oracle Database 10g OCP Certification All-In-One Exam Guide (Oracle Database 10g Handbook)
    Message was edited by:
    HoLy_PiLgRiM

    I am an OCP. I have completed my exams. But at times I feel too dumb. So OCP will not help you, unless you understand the concepts and have hands on experience. unless you live with oracle server. In fact, It may mislead yourself about your knowledge if you get an OCP from those brain dumps. (You may think yourself high, because you are an OCP. But in actual knowledge you will be very low).
    To get an OCP from the brain dumps all you need is good memory power. That my 3 year old can do.
    But that's not what being a DBA is.

  • Cannot log into AD on Mountain Lion. Please help! I got the logs

    My company has been experiencing this problem ever since Mountain Lion released.
    The problem is, we cannot log into AD on all of our MAC who currently runs Mountain Lion. We, however, can log into AD fine with Lion and Snow Leopard just fine. We only use AD, we don't use Open Directory or have any Apple server.
    I have gather some logs using the SSH. Please help me view the logs and let me know what's going on if possible.
    Here are the steps that I performed before capture these logs.
    I format the hard drive and installed a new OS X 10.8.2 on the hard drive using the Recovery Mode (Hold down option Key while boot).
    I created a new computer name call ittest-mac3 in AD and assigned to proper OU. I changed the computer name under System Preferences ==> Sharing to "ittest-mac3".
       3.  I bind this Macbook Pro to our Active Directory via xyz.com. The bind was successful. I enabled "Create mobile account at login", "Required confirmation before creating a mobile account", " Force local home directory on start up disk", " Use UNC path from active directory to derive network home location", "Default user shell: /bin/bash/. Network protocol to be used: smb:
    After I reboot the Mac client, I was unable to log into it using our regular AD user account (consider all of our employees has regular account).
    I created 2 test accounts for Mac on Active Directory, they are "mac test" and "mac test 2".
    With "mac test" account, I configured everything the same as our regular account in AD. Which I was not able to log into the Mac client using this account.
    With “mac test 2” account, I configured everything the same as our regular account in AD EXCEPT for UNIX Attributes. I was successfully logged into the Mac client using this user account.
    So the problem is ... set the Unix Attributes for NIS domain on the AD account prevent everyone of us in our company to log into AD on any client that have Mountain Lion OSX installed.
    Here are the logs:
    Log1. This logs showed successful when log into AD on a Mountain Lion OSX using an AD account that don't have UNIX attributes setting configure.
    login as: administrator
    Using keyboard-interactive authentication.
    Password:
    Last login: Mon Dec 17 08:43:38 2012
    ittest-mac3:~ administrator$ sudo su -
    WARNING: Improper use of the sudo command could lead to data loss
    or the deletion of important system files. Please double-check your
    typing when using sudo. Type "man sudo" for more information.
    To proceed, enter your password, or type Ctrl-C to abort.
    Password:
    ittest-mac3:~ root# cd /var/log
    ittest-mac3:log root# tail -f system.log
    Dec 17 09:02:19 ittest-mac3.local SecurityAgent[650]: *** WARNING: -[NSImage com                                                                            
    positeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Pleas                                                                             
    e use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:02:50 ittest-mac3.local sshd[659]: Accepted keyboard-interactive/pam f                                                                            
    or administrator from 10.10.202.63 port 50738 ssh2
    Dec 17 09:02:50 ittest-mac3.local sshd[659]: USER_PROCESS: 665 ttys000
    Dec 17 09:04:59 ittest-mac3.local sudo[673]: administrator : TTY=ttys000 ; PWD=/                                                                             
    Users/administrator ; USER=root ; COMMAND=/usr/bin/su -
    Dec 17 09:04:59 ittest-mac3.local su[674]: in pam_sm_authenticate(): authenticat                                                                             
    ion succeeded
    Dec 17 09:04:59 ittest-mac3.local su[674]: in pam_sm_acct_mgmt(): The group chec                                                                             
    k succeeded.
    Dec 17 09:04:59 ittest-mac3.local su[674]: in pam_sm_acct_mgmt(): OpenDirectory                                                                              
    - Membership cache TTL set to 1800.
    Dec 17 09:04:59 ittest-mac3.local su[674]: in od_record_check_pwpolicy(): retval                                                                             
    : 0
    Dec 17 09:04:59 ittest-mac3.local su[674]: in pam_sm_open_session(): No session                                                                              
    type specified.
    Dec 17 09:04:59 ittest-mac3.local su[674]: in pam_sm_open_session(): Going to sw                                                                            
    itch to (root) 0's Background session
    Dec 17 09:07:19 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'config.modify.com.apple.familycontrols.override' by client
    '/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Resources /parentalcontrolsd' [679] for authorization created by
    '/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Resources /parentalcontrolsd' [679] (3,0)
    Dec 17 09:07:19 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'config.modify.com.apple.familycontrols.loginwindow.override' by
    client '/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Resource s/parentalcontrolsd' [679] for authorization created by
    '/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Resources /parentalcontrolsd' [679] (3,0)
    Dec 17 09:07:19 ittest-mac3.local SecurityAgent[650]: User info context values set for mtest2
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): Got user: mtest2
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): Got ruser: (null)
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): Got service: authorization
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): Context initialised
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): Stashing kcm credentials in enviroment for kcminit: [email protected]
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): pam_sm_authenticate: ntlm
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in od_record_check_pwpolicy(): retval: 0
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in od_record_attribute_create_cfstring(): returned 2 attributes for
    dsAttrTypeStandard:AuthenticationAuthority
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Establishing credentials
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Got user: mtest2
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Context initialised
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Got euid, egid: 0 0
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done getpwnam()
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done setegid() & seteuid()
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): pam_sm_setcred: init credential cache
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): pam_sm_setcred: storing credential for: [email protected]
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Got cache_name: API:164370296:1
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Environment done: KRB5CCNAME=164370296:1
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Cache closed
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done cleanup2
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done cleanup3
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done seteuid() & setegid()
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done cleanup4
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): pam_sm_setcred: ntlm
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in ac_complete(): ac_complete returned: 0 for 164370296
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): pam_sm_setcred: ntlm done, used domain: PROS1
    Dec 17 09:07:19 ittest-mac3.local SecurityAgent[650]: Login Window login proceeding
    Dec 17 09:07:19 ittest-mac3.local ManagedClient[644]: ODUGetMCXRecordWithCache(): [ODRecord setNodeCredentialsWithRecordType:"dsRecTypeStandard:Users"
    authenticationType:kDSStdAuthNodeNativeRetainCredential authenticationItems:["mtest2", password]]) == 2100 (Connection failed to the directory server.) [This
    error is ignored and is only being flagged for notification]
    Dec 17 09:07:20 ittest-mac3 kernel[0]: Sandbox: kcm(681) deny mach-lookup com.apple.networkd
    Dec 17 09:07:20 ittest-mac3.local MCXCompositor[690]: CFPreferences: user home directory for user kCFPreferencesCurrentUser at  is unavailable. User domains
    will be volatile.
    Dec 17 09:07:20 ittest-mac3.local UserNotificationCenter[696]: *** WARNING: Method userSpaceScaleFactor in class NSWindow is deprecated on 10.7 and later. It
    should not be used in new applications. Use convertRectToBacking: instead.
    Dec 17 09:07:24 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client
    '/System/Library/CoreServices/ManagedClient.app' [644] for authorization created by '/System/Library/CoreServices/ManagedClient.app' [644] (100002,0)
    Dec 17 09:07:24 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client
    '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/writecon fig' [697] for authorization created by
    '/System/Library/CoreServices/ManagedClient.app' [644] (100002,0)
    Dec 17 09:07:24 ittest-mac3.local ManagedClient[644]: ODUMakeMobileMCXRecord: updating record from kDSNAttrOriginalHomeDirectory =
    <home_dir><url>smb://pros-fsvr2/home/mtest2</url><path>/</path></home_dir>
    Dec 17 09:07:24 ittest-mac3.local ManagedClient[644]: ODUMakeMobileMCXRecord: updating record to   kDSNAttrOriginalHomeDirectory =
    <home_dir><url>smb://pros-fsvr2/home/</url><path>mtest2/</path></home_dir>
    Dec 17 09:07:25 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client
    '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/writecon fig' [697] for authorization created by
    '/System/Library/CoreServices/ManagedClient.app' [644] (100002,0)
    Dec 17 09:07:26 --- last message repeated 1 time ---
    Dec 17 09:07:26 ittest-mac3 com.apple.launchd[1] (com.apple.launchd.peruser.164370296): Throttling respawn: Will start in 4 seconds
    Dec 17 09:07:26 ittest-mac3.local writeconfig[697]: Unable to talk to lsboxd
    Dec 17 09:07:26 ittest-mac3.local writeconfig[697]: SFL(697): AddNewItemWithProperties_rpc returned 5
    Dec 17 09:07:26 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client
    '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/writecon fig' [697] for authorization created by
    '/System/Library/CoreServices/ManagedClient.app' [644] (100002,0)
    Dec 17 09:07:30 ittest-mac3.local distnoted[721]: # distnote server agent  absolute time: 3817.482079135   civil time: Mon Dec 17 09:07:30 2012   pid: 721
    uid: 164370296  root: no
    Dec 17 09:07:30 ittest-mac3.local distnoted[721]: Bug: 12C60: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    Dec 17 09:07:30 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.login.console' by client
    '/System/Library/CoreServices/loginwindow.app' [641] for authorization created by '/System/Library/CoreServices/loginwindow.app' [641] (100003,0)
    Dec 17 09:07:30 ittest-mac3.local loginwindow[641]: Login Window - Returned from Security Agent
    Dec 17 09:07:31 ittest-mac3.local loginwindow[641]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort,
    err: 1102
    Dec 17 09:07:31 ittest-mac3.local loginwindow[641]: USER_PROCESS: 641 console
    Dec 17 09:07:31 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.gamed): Ignored this key: UserName
    Dec 17 09:07:31 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.gamed): Ignored this key: GroupName
    Dec 17 09:07:31 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find:
    com.apple.ReportCrash.Self
    Dec 17 09:07:31 ittest-mac3.local loginwindow[641]: Connection with distnoted server was invalidated
    Dec 17 09:07:31 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client
    '/System/Library/CoreServices/UserAccountUpdater' [727] for authorization created by '/System/Library/CoreServices/UserAccountUpdater' [727] (2,0)
    Dec 17 09:07:31 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client
    '/usr/libexec/launchdadd' [730] for authorization created by '/System/Library/CoreServices/UserAccountUpdater' [727] (100002,0)
    Dec 17 09:07:31 ittest-mac3.local com.apple.SecurityServer[15]: Session 100015 created
    Dec 17 09:07:31 ittest-mac3.local MRT[731]: MRT finished scan. Malware files were not found.
    Dec 17 09:07:31 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client
    '/usr/libexec/MRT' [731] for authorization created by '/usr/libexec/MRT' [731] (2,0)
    Dec 17 09:07:31 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client
    '/usr/libexec/launchdadd' [730] for authorization created by '/usr/libexec/MRT' [731] (100002,0)
    Dec 17 09:07:31 --- last message repeated 1 time ---
    Dec 17 09:07:31 ittest-mac3.local blued[68]: kBTXPCUpdateUserPreferences gConsoleUserUID = 164370296
    Dec 17 09:07:31 ittest-mac3.local locationd[738]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this
    compatiblity mapping behavior in the near future.
    Dec 17 09:07:31 ittest-mac3.local locationd[738]: NOTICE,Location icon should now be in state 0
    Dec 17 09:07:31 ittest-mac3.local UserEventAgent[725]: cannot find fw daemon port 1102
    Dec 17 09:07:34 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.login.done' by client
    '/System/Library/CoreServices/loginwindow.app' [641] for authorization created by '/System/Library/CoreServices/loginwindow.app' [641] (100002,0)
    Dec 17 09:07:36 ittest-mac3.local CalendarAgent[753]: Could not find Meta Data for persistent Store
    Dec 17 09:07:37 ittest-mac3.local WindowServer[76]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:07:37 ittest-mac3.local WindowServer[76]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Dec 17 09:07:37 ittest-mac3.local genatsdb[764]: ########## genatsdb Sandboxed. ##########
    Dec 17 09:07:37 ittest-mac3.local SystemUIServer[763]: CGSCopyWindowShape: pid (763) passed NULL window
    Dec 17 09:07:37 ittest-mac3.local SystemUIServer[763]: could not update menu bar region, 1000
    Dec 17 09:07:37 ittest-mac3.local SystemUIServer[763]: CGSSetWindowTransformAtPlacement: Singular matrix [0.000 0.000 0.000 0.000]
    Dec 17 09:07:37 ittest-mac3.local SystemUIServer[763]: *** WARNING: Method convertRectToBase: in class NSView is deprecated on 10.7 and later. It should not
    be used in new applications.
    Dec 17 09:07:37 ittest-mac3.local SystemUIServer[763]: *** WARNING: Method convertRectFromBase: in class NSView is deprecated on 10.7 and later. It should
    not be used in new applications.
    Dec 17 09:07:38 ittest-mac3.local SystemUIServer[763]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:07:38 ittest-mac3.local SystemUIServer[763]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and
    later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:07:39 ittest-mac3.local genatsdb[764]: *GENATSDB* FontObjects generated = 392
    Dec 17 09:07:53 ittest-mac3 kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    Dec 17 09:07:53 ittest-mac3 kernel[0]: macx_swapoff SUCCESS
    Dec 17 09:07:59 ittest-mac3.local Setup Assistant[751]: INFO: MMAccountMgr_Private: finishedSetup called.
    Dec 17 09:07:59 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39931
    Dec 17 09:07:59 --- last message repeated 4 times ---
    Dec 17 09:07:59 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.afpstat-qfa[793]): Job failed to exec(3). Setting up event to tell us when to
    try again: 2: No such file or directory
    Dec 17 09:07:59 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.afpstat-qfa[793]): Job failed to exec(3) for weird reason: 2
    Dec 17 09:07:59 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39931
    Dec 17 09:07:59 --- last message repeated 4 times ---
    Dec 17 09:07:59 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.mrt.uiagent[783]): Exited with code: 255
    Dec 17 09:07:59 ittest-mac3.local NetworkBrowserAgent[796]: Starting NetworkBrowserAgent
    Dec 17 09:07:59 ittest-mac3.local imagent[786]: [Warning] Setting up a new messages database.
    Dec 17 09:07:59 ittest-mac3.local Finder[775]: *** WARNING: Method userSpaceScaleFactor in class NSWindow is deprecated on 10.7 and later. It should not be
    used in new applications. Use convertRectToBacking: instead.
    Dec 17 09:07:59 ittest-mac3.local Finder[775]: *** WARNING: Method userSpaceScaleFactor in class NSView is deprecated on 10.7 and later. It should not be
    used in new applications. Use convertRectToBacking: instead.
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: dict count after removing entry for window 0xfe is 0
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending
    notification kLSNotifyApplicationDeath to notificationID=243
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd[1] (com.apple.quicklook.satellite.D6822423-2893-4C1C-B282-5022A61D589C[806]): Could not terminate job: 3: No
    such process
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd[1] (com.apple.quicklook.satellite.D6822423-2893-4C1C-B282-5022A61D589C[806]): Using fallback option to
    terminate job...
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] ([0x0-0x44044].com.apple.AppleSpell[767]): Exited: Terminated: 15
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.quicklook[803]): Exited: Killed: 9
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification
    kLSNotifyApplicationDeath to notificationID=272
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000[813]): Exited: Killed: 9
    Dec 17 09:09:09 ittest-mac3.local loginwindow[641]: DEAD_PROCESS: 641 console
    Dec 17 09:09:09 ittest-mac3.local migCacheCleanup[736]: Cache cleanup: cleanup for user 164370296 took 0.07 seconds
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending
    notification kLSNotifyApplicationDeath to notificationID=260
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXRestartSessionWorkspace: session workspace exited for session 257 (on console)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: Session 257 released (1 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: Session 257 released (0 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: loginwindow connection closed; closing server.
    Dec 17 09:09:09 ittest-mac3.local loginwindow[641]: CGSFlushWindowContentRegion: Invalid connection
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSGetNextEventRecord (Inline) connection 0x201b, 16384 bytes
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSShutdownServerConnections: Detaching application from window server
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[11]: Captive: [UserAgentDied:139] User Agent @port=15883 Died
    Dec 17 09:09:09 ittest-mac3.local loginwindow[826]: Login Window Application Started
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Server is starting up
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 retained (2 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 released (1 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 retained (2 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: init_page_flip: page flip mode is on
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: mux_initialize: Mode is dynamic
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: GLCompositor enabled for tile size [256 x 256]
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXGLInitMipMap: mip map mode is on
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: WSMachineUsesNewStyleMirroring: true
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x042803c0: GL mask 0x11; bounds (0, 0)[1440 x 900], 27 modes available
            Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00f, S/N 0, Unit 0, Rotation 0
            UUID 0x000006100000a00f00000000042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x4 for display 0x042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x5 for display 0x003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x6 for display 0x003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x7 for display 0x003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x042803c0: GL mask 0x11; bounds (0, 0)[1440 x 900], 27 modes available
            Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00f, S/N 0, Unit 0, Rotation 0
            UUID 0x000006100000a00f00000000042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003f: GL mask 0x8; bounds (2464, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003e: GL mask 0x4; bounds (2465, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003d: GL mask 0x2; bounds (2466, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXPerformInitialDisplayConfiguration
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x042803c0: MappedDisplay Unit 0; Alias(4, 0x11); Vendor 0x610 Model 0xa00f S/N 0 Dimensions
    13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 2
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXMuxBoot: Boot normal
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, accelerator 0x0000494b, unit 0, caps QEX|
    QGL|MIPMAP, vram 1024 MB
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, texture units 8, texture max 16384,
    viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, accelerator 0x00004833, unit 4, caps QEX|
    QGL|MIPMAP, vram 580 MB
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, texture units 8, texture max 16384,
    viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Dec 17 09:09:10 ittest-mac3.local loginwindow[826]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: Created shield window 0x8 for display 0x042803c0
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Dec 17 09:09:10 ittest-mac3.local launchctl[829]: com.apple.findmymacmessenger: Already loaded
    Dec 17 09:09:10 ittest-mac3.local com.apple.SecurityServer[15]: Session 100018 created
    Dec 17 09:09:10 ittest-mac3.local hidd[59]: CGSShutdownServerConnections: Detaching application from window server
    Dec 17 09:09:10 ittest-mac3.local hidd[59]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Dec 17 09:09:10 ittest-mac3.local loginwindow[826]: Login Window Started Security Agent
    Dec 17 09:09:10 ittest-mac3.local UserEventAgent[831]: cannot find useragent 1102
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: MacBuddy was run = 0
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042803c0 device: 0x1072ab320 
    isBackBuffered: 1 numComp: 3 numDisp: 3
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and
    later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use
    -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: dict count after removing entry for window 0xfe is 0
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending
    notification kLSNotifyApplicationDeath to notificationID=243
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd[1] (com.apple.quicklook.satellite.D6822423-2893-4C1C-B282-5022A61D589C[806]): Could not terminate job: 3: No
    such process
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd[1] (com.apple.quicklook.satellite.D6822423-2893-4C1C-B282-5022A61D589C[806]): Using fallback option to
    terminate job...
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] ([0x0-0x44044].com.apple.AppleSpell[767]): Exited: Terminated: 15
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.quicklook[803]): Exited: Killed: 9
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification
    kLSNotifyApplicationDeath to notificationID=272
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000[813]): Exited: Killed: 9
    Dec 17 09:09:09 ittest-mac3.local loginwindow[641]: DEAD_PROCESS: 641 console
    Dec 17 09:09:09 ittest-mac3.local migCacheCleanup[736]: Cache cleanup: cleanup for user 164370296 took 0.07 seconds
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending
    notification kLSNotifyApplicationDeath to notificationID=260
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXRestartSessionWorkspace: session workspace exited for session 257 (on console)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: Session 257 released (1 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: Session 257 released (0 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: loginwindow connection closed; closing server.
    Dec 17 09:09:09 ittest-mac3.local loginwindow[641]: CGSFlushWindowContentRegion: Invalid connection
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSGetNextEventRecord (Inline) connection 0x201b, 16384 bytes
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSShutdownServerConnections: Detaching application from window server
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[11]: Captive: [UserAgentDied:139] User Agent @port=15883 Died
    Dec 17 09:09:09 ittest-mac3.local loginwindow[826]: Login Window Application Started
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Server is starting up
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 retained (2 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 released (1 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 retained (2 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: init_page_flip: page flip mode is on
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: mux_initialize: Mode is dynamic
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: GLCompositor enabled for tile size [256 x 256]
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXGLInitMipMap: mip map mode is on
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: WSMachineUsesNewStyleMirroring: true
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x042803c0: GL mask 0x11; bounds (0, 0)[1440 x 900], 27 modes available
            Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00f, S/N 0, Unit 0, Rotation 0
            UUID 0x000006100000a00f00000000042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x4 for display 0x042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x5 for display 0x003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x6 for display 0x003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x7 for display 0x003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x042803c0: GL mask 0x11; bounds (0, 0)[1440 x 900], 27 modes available
            Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00f, S/N 0, Unit 0, Rotation 0
            UUID 0x000006100000a00f00000000042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003f: GL mask 0x8; bounds (2464, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003e: GL mask 0x4; bounds (2465, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003d: GL mask 0x2; bounds (2466, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXPerformInitialDisplayConfiguration
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x042803c0: MappedDisplay Unit 0; Alias(4, 0x11); Vendor 0x610 Model 0xa00f S/N 0 Dimensions
    13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 2
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXMuxBoot: Boot normal
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, accelerator 0x0000494b, unit 0, caps QEX|
    QGL|MIPMAP, vram 1024 MB
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, texture units 8, texture max 16384,
    viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, accelerator 0x00004833, unit 4, caps QEX|
    QGL|MIPMAP, vram 580 MB
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, texture units 8, texture max 16384,
    viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Dec 17 09:09:10 ittest-mac3.local loginwindow[826]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: Created shield window 0x8 for display 0x042803c0
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Dec 17 09:09:10 ittest-mac3.local launchctl[829]: com.apple.findmymacmessenger: Already loaded
    Dec 17 09:09:10 ittest-mac3.local com.apple.SecurityServer[15]: Session 100018 created
    Dec 17 09:09:10 ittest-mac3.local hidd[59]: CGSShutdownServerConnections: Detaching application from window server
    Dec 17 09:09:10 ittest-mac3.local hidd[59]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Dec 17 09:09:10 ittest-mac3.local loginwindow[826]: Login Window Started Security Agent
    Dec 17 09:09:10 ittest-mac3.local UserEventAgent[831]: cannot find useragent 1102
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: MacBuddy was run = 0
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042803c0 device: 0x1072ab320 
    isBackBuffered: 1 numComp: 3 numDisp: 3
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and
    later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use
    -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Log2: This log showed was captured when we logged into a test account that have Unix Attributes configure just like our regular user's account.
    ^C
    ittest-mac3:log root# tail -f system.log
    Dec 17 09:09:10 ittest-mac3.local loginwindow[826]: Login Window Started Security Agent
    Dec 17 09:09:10 ittest-mac3.local UserEventAgent[831]: cannot find useragent 1102
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: MacBuddy was run = 0
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042803c0 device: 0x1072ab320 
    isBackBuffered: 1 numComp: 3 numDisp: 3
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and
    later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use
    -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Dec 17 09:09:41 --- last message repeated 1 time ---
    Dec 17 09:10:13 ittest-mac3.local SecurityAgent[836]: User info context values set for tle
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): Got user: mtest
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): Got ruser: (null)
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): Got service: authorization
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): Context initialised
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): Stashing kcm credentials in enviroment for kcminit: [email protected]
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): pam_sm_authenticate: ntlm
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in od_record_check_pwpolicy(): retval: 0
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in od_record_attribute_create_cfstring(): returned 2 attributes for
    dsAttrTypeStandard:AuthenticationAuthority
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Establishing credentials
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Got user: mtest
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Context initialised
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Got euid, egid: 0 0
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done getpwnam()
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done setegid() & seteuid()
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): pam_sm_setcred: init credential cache
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): pam_sm_setcred: storing credential for: [email protected]
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Got cache_name: API:2137600189:2
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Environment done: KRB5CCNAME=2137600189:2
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Cache closed
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done cleanup2
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done cleanup3
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done seteuid() & setegid()
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done cleanup4
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): pam_sm_setcred: ntlm
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in ac_complete(): ac_complete returned: 0 for 2137600189
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): pam_sm_setcred: ntlm done, used domain: PROS1
    Dec 17 09:10:13 ittest-mac3.local SecurityAgent[836]: Login Window login proceeding
    Dec 17 09:10:13 ittest-mac3.local ManagedClient[830]: ODUGetMCXRecordWithCache(): [ODRecord setNodeCredentialsWithRecordType:"dsRecTypeStandard:Users"
    authenticationType:kDSStdAuthNodeNativeRetainCredential authenticationItems:["mtest", password]]) == 2100 (Connection failed to the directory server.) [This
    error is ignored and is only being flagged for notification]
    Dec 17 09:10:13 ittest-mac3 com.apple.launchd[1] (com.apple.launchd.peruser.4294967295[846]): getpwuid("4294967295") failed
    Dec 17 09:10:13 ittest-mac3 com.apple.launch

    -Reece,
    We only have 1 single domain, 1 domain forest, no subdomains, only alias. I had replied to the other post as well. But I am happy to paste it here in case anyone want to read it.
    So, after a few months of testing, capture and sending logs back and forth to Apple Engineers, we found out there is a setting in AD, under User Account that prevent us to log into AD from Mountain Lion. If you would go to your AD server, open up a user account properties, then go to Account tab, the "Do not require Kerberos preauthentication" option is checked. As soon as I uncheck that option, immediately I was able to log into AD on the Mac client. Apple engineers copied all my AD settings and setup a test environment on their end and match exact mine AD environment. They was able to reproduce this issue.
    The bad part about this is... our environment required the "Do not require Kerberos preauthentication" is checked in AD, in order for our users to login into some of our Unix and Linux services. Which mean that it is impossible for us to remove that check mark because most, if not all of them some way or another require to login into applications that run on Unix and Linux. Apple is working to see if they can come up with a fix. Apparently, no one has report this issue except us. I believe most of you out there don't have that check mark checked in your environment... Anyone out there have any suggestion to by pass or have a work around for this?

  • PLEASE HELP! SLOW SPEED FOR 5 WEEKS!

    Hey all, i've come here as a last resort as im sick of my slow infinity speed and sick to death with bt customer service which does not exist!
    Since before christmas my bt infinity package 1 38down/10up has been playing up after 12 midnight! usually after this time my speed would go down from 37download to around 0.5/0.1 soo low that i can't load a web page. Ive tried for weeks contacting bt which takes me to the offshore call centre where iv'e been fobbed of that an engineer is investigating an issue at the exchange or that the issue will be fixed in either 24, 36 or 48 hours numerous times to which it has not.
    This last week my internet speed has dropped during the day time where before in the day it was a solid 37down and 10 up it now goes down to 10 meg and now its gone down to 0.1 meg. It went down to 0.1 meg today at around 6.30pm.
    These are a list of stats below: Im at my wits end and i just want my broadband fixed! I beg Please someone help me!
    1. Product name:
    BT Home Hub
    2. Serial number:
    +068543+NQ41012931
    3. Firmware version:
    Software version 4.7.5.1.83.8.204 (Type A) Last updated 15/01/15
    4. Board version:
    BT Hub 5A
    5. DSL uptime:
    0 days, 00:07:34
    6. Data rate:
    9999 / 39993
    7. Maximum data rate:
    36556 / 97131
    8. Noise margin:
    30.5 / 22.7
    9. Line attenuation:
    13.5 / 12.8
    10. Signal attenuation:
    13.7 / 12.8
    11. Data sent/received:
    0.2 MB / 0.1 MB
    12. Broadband username:
    [email protected]
    13. BT Wi-fi:
    Yes
    14. 2.4 GHz Wireless network/SSID:
    BTHub5-QTSG
    15. 2.4 GHz Wireless connections:
    Enabled (802.11 b/g/n (up to 144 Mb/s))
    16. 2.4 GHz Wireless security:
    WPA2
    17. 2.4 GHz Wireless channel:
    Automatic (Smart Wireless)
    18. 5 GHz Wireless network/SSID:
    BTHub5-QTSG
    19. 5 GHz Wireless connections:
    Enabled (802.11 a/n/ac (up to 1300 Mb/s))
    20. 5 GHz Wireless security:
    WPA2
    21. 5 GHz Wireless channel:
    Automatic (Smart Wireless)
    22. Firewall:
    Default
    23. MAC Address:
    34:8a:ae:bb:d4:80
    24. Modulation:
    G.993.2 Annex B
    25. Software variant:
    AA
    26. Boot loader:
    1.0.0

    Can someone please help me too! before christmas i was getting low speeds after 12 midnight, going down to 0.1 meg for over 5 weeks now ive had this problem and now in the day where i used to get a solid 37meg down im now at different times, started today at 6.30pm im going down to 0.1 meg.
    BT Customer service is disgusting beyone belief, been fobbed of after 12 phone calls. Please someone help.
    stats avalibe here:
    1. Product name:
    BT Home Hub
    2. Serial number:
    +068543+NQ41012931
    3. Firmware version:
    Software version 4.7.5.1.83.8.204 (Type A) Last updated 15/01/15
    4. Board version:
    BT Hub 5A
    5. DSL uptime:
    0 days, 00:45:18
    6. Data rate:
    9999 / 39993
    7. Maximum data rate:
    36556 / 97131
    8. Noise margin:
    30.5 / 22.7
    9. Line attenuation:
    13.5 / 12.8
    10. Signal attenuation:
    13.7 / 12.8
    11. Data sent/received:
    0.2 MB / 0.1 MB
    12. Broadband username:
    [email protected]
    13. BT Wi-fi:
    Yes
    14. 2.4 GHz Wireless network/SSID:
    BTHub5-QTSG
    15. 2.4 GHz Wireless connections:
    Enabled (802.11 b/g/n (up to 144 Mb/s))
    16. 2.4 GHz Wireless security:
    WPA2
    17. 2.4 GHz Wireless channel:
    Automatic (Smart Wireless)
    18. 5 GHz Wireless network/SSID:
    BTHub5-QTSG
    19. 5 GHz Wireless connections:
    Enabled (802.11 a/n/ac (up to 1300 Mb/s))
    20. 5 GHz Wireless security:
    WPA2
    21. 5 GHz Wireless channel:
    Automatic (Smart Wireless)
    22. Firewall:
    Default
    23. MAC Address:
    34:8a:ae:bb:d4:80
    24. Modulation:
    G.993.2 Annex B
    25. Software variant:
    AA
    26. Boot loader:
    1.0.0

  • Please help, just recently got ios7 on my phone and have updated itunes but my iphone 4s wont sync i have tried everything like turning restrictions on and things, thank you for reading and please help

    please help, just got iso7 and the new itunes and have synced my ipone once already all fine but suddenly it doesnt work i have tried everything like turning restrictions on and off , please help

    fighter19lisa wrote:
    that only makes it say its synced, when its not.
    No, it does not.  It transfers purchases from the iDevice to the computer.  The computer must be authorized for the Apple ID that the content was acquired with.
    fighter19lisa wrote:
    my playlists wont show up on the phone.
    Are they selected to sync?  Is Manually Manage content on the device selected?
    fighter19lisa wrote:
    i had to change my password for my aol account again and i still cannot get my email on my phone to even work
    What does that have to do with syncing content to the device?  FYI, nothing.

  • My iphone 4s just turned of randomly. i have tried turning it on, plugging it into itunes and restoring it. it keeps saying error 28. please help i just got this phone and dont know what to do

    turned of randomly.
    have tried-
    pressing the home and lock button at the same time
    plugging it into itunes and restoring(still does not work, keeps saying error 28)
    any other suggestions
    i have not dropped it in the past
    i just got this phone
    PLEASE HELP!!!

    See This Discussion  >  https://discussions.apple.com/thread/4087808?start=0&tstart=0

  • HT201272 yes i have previously bought music music videos and apps on my cpu but it was broken to pieces by my ex wife thats what she did to me i want to get all that i have purchased back so i can put in my iphone 5s can u please help me i got a new cpu

    i have previously purchased music and apps and music videos on itunes on a different cpu but my ex wife broke it into million pieces in other words its been destroyed since then i have bought an iphone and now i bought a cpu and would love to get all those old purchases back so that i can put it into my iphone 5s i just purchased with att can u please help me recover these things i purchased i know the passwords user name and eben have the debit card i made the purchases with its ben two years i know i should have asked sooner but i didnt can u please help?

    What you can redownload will depend upon what country that you are in (not all content types can be redownloaded in all countries) and whether they are still in your country's store (content providers occasionally remove their items from sale) - if you go into the Purchased link under Quicklinks on the right-hand side of the iTunes store homepage on your computer's iTunes you should see what you can re-download :
    Or on your phone you can use the Purchased tabs in the iTunes and App Store apps.

  • Please help me: i got this error - service 'sapdp00' uknown

    Hi friends,
    I'm trying to log on with SAP, and after i do double click in a system using sap logon, an error occurs:
    service 'sapdbp00' unknown
    time         xxxx
    component    NI(network interface)
    realease     640
    version      37
    module       ninti.c
    line         494
    method       NipGetServByName2: service 'sapdp00' not
                 found
    return code  -3
    system call   getservbyname_r
    counter       1
    I don't know what could be happend.
    Could you please help me?
    I review th files: host and services in C:\WINDOWS\system32\drivers\etc
    And the service exist:
    sapdp00          3200/tcp
    Regards!!!
    Thanks!!!
    Albio.-
    Message was edited by: Albio Vivas

    Hi Jose,
    I execute that command and this is the output:
    C:\>niping -v -S sapdp00
    Hostname/Hostaddr verification:
    ===============================
    Hostname of local computer: amvivas                          (NiMyHostName)
    Lookup of hostname: amvivas                                  (NiHostToAddr)
        --> IP-Addr.: xxx.xx.12.41
    Lookup of IP-Addr.: xxx.xx.12.41                             (NiAddrToHost)
        --> Hostname: amvivas
    Lookup of hostname: localhost                                (NiHostToAddr)
        --> IP-Addr.: 127.0.0.1
    Lookup of IP-Addr.: 127.0.0.1                                (NiAddrToHost)
        --> Hostname: localhost
    Lookup of IP-Addr.: 127.0.0.1                                (NiAddrToHostCanon)
        --> Hostname: localhost
    Servicename/Serviceport verification:
    =======================================
    Lookup of service: sapdp00                                   (NiServToNo)
    Thu Apr 06 07:39:10 2006
    ***LOG Q0I=> NiPServToNo: getservbyname [ninti.c 428]
    ***LOG Q0A=> NiIServToNo, NiPServToNo ( sapdp00) [nixxi.c      2624]
        --> **** FAILED ****
    What could this mean?
    Thanks,
    Albio

  • Please Help, Finder Icon got dragged on desktop accidently

    I accidently dragged my Finder icon from the Dock to the desktop and I don't know how to put it back into Dock. So now my Finder icon from the Dock is on my desktop and it's always on top of any application. I don't know what to do. I hope I didn't break it or anything. Someone please help :'(
    P.S. i posted this question in iBook section, before i posted here, sorry for any inconvenience, i don't know how to delete the other one.
    iBook G4   Mac OS X (10.3.9)  

    Anna,
    Welcome to Apple Discussions.
    Find the com.apple.dock.plist file in your Macintosh HD/Users/yourusername/Library/Preferences folder, drag it to your Desktop, log out/in or restart and let us know what happens.
    Your Dock should return to default appearance and the Finder should once again reside on the Dock.
    ;~)

  • Please help me for my exam question!

    1)Discuss briefly what is meant by the term operator precedence.Explain how precednce is used to evaluate the expression 3 + 4 * 5. Re-write the expression using parenthses to indicate explicitly the order of evaluation of operators.
    2)Explain what is meant by the scope of an identifier in JAVA.
    3)Discuss the idea of encapsulation in object design,explaining why it is important. Also explain how access control in JAVA supports encapsulation.
    Please help me about the above questions.
    Actually, I can find something in The Big Java book. But I am not sure how to answer appropriately and I can get mark.
    Thanks.

    Actully, I don't know what is operator precedence
    http://en.wikipedia.org/wiki/PEMDAS
    YOU UKers SAY BODMAS??? WEEEEEEEEEIRD.
    It only goes to support my theory, people from the uk
    are CUH-RAY-ZEE. : )
    And dont even get me started on Canadians and
    BEDMAS...You write like that and you are calling Canadians wierd ? (Thankfully being called wierd by a wierd guy has little to no impact on my views) ;-P

  • Can you please help my account got hacked

    Please, help me to get my Skype account name. They managed to change emails and passwords . I have valuable contacts on it. Please help

    please contact Skype customer service
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Please help my iphone got white screen and stopped working

    i restored to default factory setting and errased every thing even the operating system and i got white screen and i tried to restore it but i didnt successd i connected it to the itunes and when it is recognized by itunes but after connecting this messege came out " unknown erroe 1604"
    i tried many ways but no hope to get my iphone work , i think the bootloader is corrupted any help please?

    See this post:
    http://discussions.apple.com/thread.jspa?threadID=1153287&tstart=135

Maybe you are looking for

  • Sql queries for date and year

    Hi Friends, I Have a view named - item_sales with 4 column Item code Item name Transaction_YYYYMM (Date stored in YYYYMM format ) QTY_RECEIVED QTY_SOLD Sample data is ITEM_CODE ITEM NAME  TRANSACTION_YYYMM     QTY_RECD    QTY_SOLD AX             TSHI

  • Default date parameters

    Hi everyone! I have an user request that I thought should be fairly simple, but I cannot quite get it working. We have a concurrent request with beginning and ending date parameters. The users have requested that these dates default to the beginning/

  • Rich Internet Applications

    I was reading an article from Cameron O'Rourke in the latest Oracle Magazine and it seems that rich clients are returning to the arena as an alternative to the old and restrict HTML interface. Maybe Oracle Forms will have a second chance after all?

  • DNS Server binding wrong ip address

    The DFS Replication service failed to contact domain controller to access configuration information

  • PS CS4 working  before hard drive crash

    I started with PS5 then PS7 then CS4. I went from XP to Windows7. Been working with CS4 on Windows 7 for 10 months. Then my Hard drive crashed. Got a new hard drive installed. I copied over the program files from the original XP backup (which is what