Can anyone help me solve my problem trying add GUI to Inventory program?

Here is my code in which I am receiving a couple of errors.
package inventory4;
import java.util.*;
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
public class Inventory4 extends JFrame implements ActionListener {
    private class MyPanel extends JPanel {
        ImageIcon image = new ImageIcon("Sample.jpg");
        int width = image.getIconWidth();
        int height = image.getIconHeight();
        long angle = 30;
        public MyPanel() {
            super();
        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g;
            g2d.rotate(Math.toRadians(angle), 60 + width / 2, 60 + height / 2);
            g2d.drawImage(image.getImage(), 60, 60, this);
            g2d.dispose();
    }//end class MyPanel
    int currentIndex; //Currently displayed Item
    Product[] supplies = new Product[4];
    JLabel name;
    JLabel number;
    JLabel title;
    JLabel quantity;
    JLabel price;
    JLabel fee;
    JLabel totalValue;
    JTextField nameField = new JTextField(20);
    JTextField numberField = new JTextField(20);
    JTextField titleField = new JTextField(20);
    JTextField quantityField = new JTextField(20);
    JTextField priceField = new JTextField(20);
    JPanel display;
    JPanel displayHolder;
    JPanel panel;
    public Inventory4() {
        setSize(500, 500);
        setTitle("Bob's CD Inventory Program");
//make the panels
        display = new JPanel();
        JPanel other = new JPanel();
        JPanel picture = new MyPanel();
        JPanel centerPanel = new JPanel();
        displayHolder = new JPanel();
        display.setLayout(new GridLayout(7, 1));
//other.setLayout(new GridLayout(1, 1));
//make the labels
        name = new JLabel("Name :");
        number = new JLabel("Number :");
        title = new JLabel("Title :");
        quantity = new JLabel("Quantity :");
        price = new JLabel("Price :");
        fee = new JLabel("Restocking Fee :");
        totalValue = new JLabel("Total Value :");
//Add the labels to the display panel
        display.add(name);
        display.add(number);
        display.add(title);
        display.add(quantity);
        display.add(price);
        display.add(fee);
//Add the panels to the frame
        getContentPane().add(centerPanel, "Center");
        getContentPane().add(other, "South");
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setVisible(true);
class CD extends Product {
    String genre;
    double restockingFee;
    public CD(String genre, double restockingFee, int item, String title, double stockQuantity,
            double price) {
        //super(title,item, stockQuantity, price);
        this.genre = genre;
        this.restockingFee = restockingFee;
    // TODO Auto-generated constructor stub
    //returns the value of the inventory, plus the restocking fee
    public double getInventoryValue() {
        // TODO Auto-generated method stub
        return super.getItemPrice() + restockingFee;
    public String toString() {
        StringBuffer sb = new StringBuffer("Genre      \t").append(genre).append("\n");
        sb.append(super.toString());
        return sb.toString();
//Inventory4.java
class Product implements Comparable {
    private String title;   // class variable that stores the item name
    private int item;     // class variable that stores the item number
    private double stockQuantity;   // class variable that stores the quantity in stock
    private double price;     // class variable that stores the item price
    private String genre;
    public Product() {
        title = "";
        item = 0;
        stockQuantity = 0;
        price = 0.0;
        genre = "";
    public Product(String title, String genre, int item, double stockQuantity, double price) {
        this.title = title;
        this.item = item;
        this.stockQuantity = stockQuantity;
        this.price = price;
        this.genre = genre;
    public void setTitle(String title) {
        this.title = title;
    public String getTitle() {
        return title;
    public void setItem(int item) {
        this.item = item;
    public int getItem() {
        return item;
    public void setStockQuantity(double quantity) {
        stockQuantity = quantity;
    public double getStockQuantity() {
        return stockQuantity;
    public void setItemPrice(double price) {
        this.price = price;
    public double getItemPrice() {
        return price;
    public void setGenre(String genre) {
        this.genre = genre;
    public String getGenre() {
        return genre;
    public double calculateInventoryValue() {
        return price * stockQuantity;
    public int compareTo(Object o) {
        Product p = null;
        try {
            p = (Product) o;
        } catch (ClassCastException cE) {
            cE.printStackTrace();
        return title.compareTo(p.getTitle());
    public String toString() {
        return "CD Title: " + title + "\nGenre: " + genre + "\nItem #: " + item + "\nPrice: $" + price + "\nQuantity: " + stockQuantity + "\nValue with restocking fee: $" + (calculateInventoryValue() + (calculateInventoryValue() * .05));
public class Inventory4 {
    Product[] supplies;
    public static void main(String[] args) {
        Inventory4 inventory = new Inventory4();
        inventory.addProduct(new Product("Mozart", "Classical", 1, 54, 11.50));
        inventory.addProduct(new Product("Beethoven", "Classical", 2, 65, 12.00));
        inventory.addProduct(new Product("Tiny Tim", "Classical", 3, 10, 1.00));
        System.out.println("Inventory of CD's:\n\n");
        System.out.println();
        inventory.showInventory();
        System.out.println();
        double total = inventory.calculateTotalInventory();
        System.out.println("Total Value is: $" + (total + (total * .05)));
    public void sortByName() {
        for (int i = 1; i < supplies.length; i++) {
            int j;
            Product val = supplies;
for (j = i - 1; j > -1; j--) {
Product temp = supplies[j];
if (temp.compareTo(val) <= 0) {
break;
supplies[j + 1] = temp;
supplies[j + 1] = val;
//creates a String representation of the array of products
public String toString() {
String s = "";
for (Product p : supplies) {
s = s + p.toString();
s = s + "\n\n";
return s;
//Using an array so adding an item requires us to increase the size of the array first
public void addProduct(Product p1) {
if (supplies == null) {
supplies = new Product[0];
Product[] p = supplies; //Copy all products into p first
Product[] temp = new Product[p.length + 1]; //create bigger array
for (int i = 0; i < p.length; i++) {
temp[i] = p[i];
temp[(temp.length - 1)] = p1; //add the new product at the last position
supplies = temp;
//sorting the array using Bubble Sort
public double calculateTotalInventory() {
double total = 0.0;
for (int i = 0; i < supplies.length; i++) {
total = total + supplies[i].calculateInventoryValue();
return total;
public void showInventory() {
System.out.println(toString()); //call our toString method

I re-entered the package and changed some of the code. I am building successfully, but getting a new msg: init:
deps-jar:
compile:
run:
java.lang.NoClassDefFoundError: Inventory5_5
Caused by: java.lang.ClassNotFoundException: Inventory5_5
        at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
        at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
Exception in thread "main"
Java Result: 1
BUILD SUCCESSFUL (total time: 0 seconds) I may have to go ahead and submit it as is to get it in on time. Thank you very much for your help and your patience. Here is my last effort.package inventory4;
import java.util.*;
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
class inventory4 extends JFrame  {
    private class MyPanel extends JPanel {
        ImageIcon image = new ImageIcon("Sample.jpg");
        int width = image.getIconWidth();
        int height = image.getIconHeight();
        long angle = 30;
        public MyPanel() {
            super();
        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g;
            g2d.rotate(Math.toRadians(angle), 60 + width / 2, 60 + height / 2);
            g2d.drawImage(image.getImage(), 60, 60, this);
            g2d.dispose();
    }//end class MyPanel
    int currentIndex; //Currently displayed Item
    Product[] supplies = new Product[4];
    JLabel name;
    JLabel number;
    JLabel title;
    JLabel quantity;
    JLabel price;
    JLabel fee;
    JLabel totalValue;
    JTextField nameField = new JTextField(20);
    JTextField numberField = new JTextField(20);
    JTextField titleField = new JTextField(20);
    JTextField quantityField = new JTextField(20);
    JTextField priceField = new JTextField(20);
    JPanel display;
    JPanel displayHolder;
    JPanel panel;
    public inventory4() {
        setSize(500, 500);
        setTitle("Bob's CD Inventory Program");
//make the panels
        display = new JPanel();
        JPanel other = new JPanel();
        JPanel picture = new MyPanel();
        JPanel centerPanel = new JPanel();
        displayHolder = new JPanel();
        display.setLayout(new GridLayout(7, 1));
//other.setLayout(new GridLayout(1, 1));
//make the labels
        name = new JLabel("Name :");
        number = new JLabel("Number :");
        title = new JLabel("Title :");
        quantity = new JLabel("Quantity :");
        price = new JLabel("Price :");
        fee = new JLabel("Restocking Fee :");
        totalValue = new JLabel("Total Value :");
//Add the labels to the display panel
        display.add(name);
        display.add(number);
        display.add(title);
        display.add(quantity);
        display.add(price);
        display.add(fee);
//Add the panels to the frame
        getContentPane().add(centerPanel, "Center");
        getContentPane().add(other, "South");
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setVisible(true);
class CD extends Product {
    String genre;
    double restockingFee;
    public CD(String genre, double restockingFee, int item, String title, double stockQuantity,
            double price) {
        //super(title,item, stockQuantity, price);
        this.genre = genre;
        this.restockingFee = restockingFee;
    // TODO Auto-generated constructor stub
    //returns the value of the inventory, plus the restocking fee
    public double getInventoryValue() {
        // TODO Auto-generated method stub
        return super.getItemPrice() + restockingFee;
    public String toString() {
        StringBuffer sb = new StringBuffer("Genre      \t").append(genre).append("\n");
        sb.append(super.toString());
        return sb.toString();
//Inventory4.java
class Product implements Comparable {
    private String title;   // class variable that stores the item name
    private int item;     // class variable that stores the item number
    private double stockQuantity;   // class variable that stores the quantity in stock
    private double price;     // class variable that stores the item price
    private String genre;
    public Product() {
        title = "";
        item = 0;
        stockQuantity = 0;
        price = 0.0;
        genre = "";
    public Product(String title, String genre, int item, double stockQuantity, double price) {
        this.title = title;
        this.item = item;
        this.stockQuantity = stockQuantity;
        this.price = price;
        this.genre = genre;
    public void setTitle(String title) {
        this.title = title;
    public String getTitle() {
        return title;
    public void setItem(int item) {
        this.item = item;
    public int getItem() {
        return item;
    public void setStockQuantity(double quantity) {
        stockQuantity = quantity;
    public double getStockQuantity() {
        return stockQuantity;
    public void setItemPrice(double price) {
        this.price = price;
    public double getItemPrice() {
        return price;
    public void setGenre(String genre) {
        this.genre = genre;
    public String getGenre() {
        return genre;
    public double calculateInventoryValue() {
        return price * stockQuantity;
    public int compareTo(Object o) {
        Product p = null;
        try {
            p = (Product) o;
        } catch (ClassCastException cE) {
            cE.printStackTrace();
        return title.compareTo(p.getTitle());
    public String toString() {
        return "CD Title: " + title + "\nGenre: " + genre + "\nItem #: " + item + "\nPrice: $" + price + "\nQuantity: " + stockQuantity + "\nValue with restocking fee: $" + (calculateInventoryValue() + (calculateInventoryValue() * .05));
public class Inventory4 {
    Product[] supplies;
    public static void main(String[] args) {
        Inventory4 inventory = new Inventory4();
        inventory.addProduct(new Product("Mozart", "Classical", 1, 54, 11.50));
        inventory.addProduct(new Product("Beethoven", "Classical", 2, 65, 12.00));
        inventory.addProduct(new Product("Tiny Tim", "Classical", 3, 10, 1.00));
        System.out.println("Inventory of CD's:\n\n");
        System.out.println();
        inventory.showInventory();
        System.out.println();
        double total = inventory.calculateTotalInventory();
        System.out.println("Total Value is: $" + (total + (total * .05)));
    public void sortByName() {
        for (int i = 1; i < supplies.length; i++) {
            int j;
            Product val = supplies;
for (j = i - 1; j > -1; j--) {
Product temp = supplies[j];
if (temp.compareTo(val) <= 0) {
break;
supplies[j + 1] = temp;
supplies[j + 1] = val;
//creates a String representation of the array of products
public String toString() {
String s = "";
for (Product p : supplies) {
s = s + p.toString();
s = s + "\n\n";
return s;
//Using an array so adding an item requires us to increase the size of the array first
public void addProduct(Product p1) {
if (supplies == null) {
supplies = new Product[0];
Product[] p = supplies; //Copy all products into p first
Product[] temp = new Product[p.length + 1]; //create bigger array
for (int i = 0; i < p.length; i++) {
temp[i] = p[i];
temp[(temp.length - 1)] = p1; //add the new product at the last position
supplies = temp;
//sorting the array using Bubble Sort
public double calculateTotalInventory() {
double total = 0.0;
for (int i = 0; i < supplies.length; i++) {
total = total + supplies[i].calculateInventoryValue();
return total;
public void showInventory() {
System.out.println(toString()); //call our toString method

Similar Messages

  • Hi I tried to contact with Sydney Apple store but impossible so far. Actually I found my Visa card been conducted 4 transactions in 7th may. I am in Auckland that time. It must be wrong deduction. Can anyone help me solve this problem.  My card is visa t

    Hi I tried to contact with Sydney Apple store but impossible so far. Actually I found my Visa card been conducted 4 transactions in 7th may. I am in Auckland that time. It must be wrong deduction. Can anyone help me solve this problem.
    My card is visa the 4 transactions are:
    $19.48, $19.48, $12.98 and $ 25.97
    otherwise I need report to police.
    Also please forward it to the related department please
    Thanks
    Kathy
    Please
    <Personal Information Edited by Host>

    You are not addressing Apple here - this is a technical forum and we are all other users here.
    You should also not post private info in an open forum - it is too dangerous - I've asked the hosts to remove the financial info and your email address. Anyone on this forum will reply to this thread - no need for an email address.
    As for the activity: please call your credit card company immediately to report and question the activity. They can get in touch with the vendor (Apple). Calling the police will not be very helpful.

  • I am unable to sync my Ipod Nano (4th generation I believe) because my computer does not recognize my device.  Can anyone help me solve this problem?

    I am unable to sync my Ipod Nano (4th generation I believe) because my computer does not recognize my device.  Can anyone help me solve this problem?

    Reset the AMDS >  How to restart the Apple Mobile Device Service (AMDS) on Windows

  • My iPhone 4S has no sound on alerts, music, only on calls and SMS, this happened after upgrading to IOS7. Can anyone help me solve this problem?

    My iPhone 4S has no sound on alerts, music, only on calls and SMS, this happened after upgrading to IOS7. Can anyone help me solve this problem?

    check and make sure that an alert style has been choosen for certain alerts, and make sure you check your sounds in settings

  • Can anyone help me solving this problem with Mail?

    I haven´t being able to send emails with MAIL for two days. I have managed 7 email accounts with 3 different servers for more than 2 years with no problem until last Monday.
    Basically, what I can notice as unusual is this message from Connection Inspector:
    220-We do not authorize the use of this system to transport unsolicited,
    220 and/or bulk e-mail.
    But I have copy/pasted what Connection Inspector says:
    urityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x117b0fc60 -- thread:0x117b8b340
    +OK
    WROTE Oct 16 14:09:36.480 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    CAPA
    READ Oct 16 14:09:36.531 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11867d520 -- thread:0x11734ba80
    +OK
    WROTE Oct 16 14:09:36.552 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    USER [email protected]
    WROTE Oct 16 14:09:36.622 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    USER [email protected]
    READ Oct 16 14:09:36.640 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1181804d0 -- thread:0x118731cd0
    250-dime124.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    WROTE Oct 16 14:09:36.666 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x11adb69c0 -- thread:0x11445b140
    EHLO [192.168.2.5]
    READ Oct 16 14:09:36.677 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x11d403520 -- thread:0x11d40e9f0
    250-dime155.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    WROTE Oct 16 14:09:36.694 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    USER [email protected]
    WROTE Oct 16 14:09:36.720 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    USER [email protected]
    WROTE Oct 16 14:09:36.744 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x117b0fc60 -- thread:0x117b8b340
    PASS ********
    WROTE Oct 16 14:09:36.795 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11867d520 -- thread:0x11734ba80
    PASS ********
    READ Oct 16 14:09:36.806 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    READ Oct 16 14:09:36.870 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    +OK
    WROTE Oct 16 14:09:36.871 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1181804d0 -- thread:0x118731cd0
    QUIT
    WROTE Oct 16 14:09:36.924 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x11d403520 -- thread:0x11d40e9f0
    QUIT
    READ Oct 16 14:09:36.948 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    +OK
    READ Oct 16 14:09:36.996 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x11adb69c0 -- thread:0x11445b140
    250-dime124.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    READ Oct 16 14:09:37.012 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    +OK
    READ Oct 16 14:09:37.054 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    +OK
    WROTE Oct 16 14:09:37.065 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    USER [email protected]
    READ Oct 16 14:09:37.087 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x117b0fc60 -- thread:0x117b8b340
    +OK Logged in.
    WROTE Oct 16 14:09:37.094 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    PASS ********
    READ Oct 16 14:09:37.124 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11867d520 -- thread:0x11734ba80
    +OK Logged in.
    WROTE Oct 16 14:09:37.179 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    PASS ********
    WROTE Oct 16 14:09:37.219 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x11adb69c0 -- thread:0x11445b140
    QUIT
    WROTE Oct 16 14:09:37.246 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    PASS ********
    WROTE Oct 16 14:09:37.274 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    PASS ********
    WROTE Oct 16 14:09:37.331 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x117b0fc60 -- thread:0x117b8b340
    QUIT
    READ Oct 16 14:09:37.384 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    +OK
    WROTE Oct 16 14:09:37.388 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11867d520 -- thread:0x11734ba80
    QUIT
    READ Oct 16 14:09:37.421 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    +OK Logged in.
    READ Oct 16 14:09:37.519 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    +OK Logged in.
    WROTE Oct 16 14:09:37.578 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    PASS ********
    READ Oct 16 14:09:37.580 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    +OK Logged in.
    READ Oct 16 14:09:37.602 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    +OK Logged in.
    READ Oct 16 14:09:37.649 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x117b0fc60 -- thread:0x117b8b340
    +OK Logging out.
    WROTE Oct 16 14:09:37.657 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    QUIT
    WROTE Oct 16 14:09:37.680 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    QUIT
    READ Oct 16 14:09:37.705 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11867d520 -- thread:0x11734ba80
    +OK Logging out.
    WROTE Oct 16 14:09:37.731 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    QUIT
    WROTE Oct 16 14:09:37.756 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    QUIT
    READ Oct 16 14:09:37.915 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    +OK Logged in.
    WROTE Oct 16 14:09:37.945 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    QUIT
    READ Oct 16 14:09:37.976 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    +OK Logging out.
    READ Oct 16 14:09:38.010 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    +OK Logging out.
    READ Oct 16 14:09:38.051 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    +OK Logging out.
    READ Oct 16 14:09:38.079 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    +OK Logging out.
    READ Oct 16 14:09:38.270 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    +OK Logging out.
    CONNECTED Oct 16 14:11:00.752 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    CONNECTED Oct 16 14:11:00.752 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    CONNECTED Oct 16 14:11:00.753 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    CONNECTED Oct 16 14:11:00.754 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    CONNECTED Oct 16 14:11:00.755 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    CONNECTED Oct 16 14:11:00.755 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:25 -- socket:0x11ad0a7d0 -- thread:0x11b3406f0
    CONNECTED Oct 16 14:11:00.756 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    CONNECTED Oct 16 14:11:00.756 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:25 -- socket:0x119c94890 -- thread:0x11d40a2a0
    CONNECTED Oct 16 14:11:00.757 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    CONNECTED Oct 16 14:11:00.757 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x1179d3df0 -- thread:0x11731e680
    READ Oct 16 14:11:03.770 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:25 -- socket:0x11ad0a7d0 -- thread:0x11b3406f0
    451-The server has reached its limit for processing requests from your host.
    451 Please try again later.
    READ Oct 16 14:11:03.770 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:25 -- socket:0x119c94890 -- thread:0x11d40a2a0
    451-The server has reached its limit for processing requests from your host.
    451 Please try again later.
    READ Oct 16 14:11:03.777 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x1179d3df0 -- thread:0x11731e680
    220-dime155.dizinc.com ESMTP Exim 4.80 #2 Wed, 16 Oct 2013 13:11:02 -0400
    220-We do not authorize the use of this system to transport unsolicited,
    220 and/or bulk e-mail.
    WROTE Oct 16 14:11:03.863 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x1179d3df0 -- thread:0x11731e680
    EHLO [192.168.2.5]
    CONNECTED Oct 16 14:11:04.165 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x117944c00 -- thread:0x11b3406f0
    CONNECTED Oct 16 14:11:04.168 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1179f2fe0 -- thread:0x11d40a2a0
    READ Oct 16 14:11:04.193 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x1179d3df0 -- thread:0x11731e680
    250-dime155.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    WROTE Oct 16 14:11:04.242 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x1179d3df0 -- thread:0x11731e680
    QUIT
    READ Oct 16 14:11:04.262 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    +OK Dovecot ready.
    WROTE Oct 16 14:11:04.300 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    CAPA
    READ Oct 16 14:11:04.486 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    +OK Dovecot ready.
    READ Oct 16 14:11:04.491 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    +OK Dovecot ready.
    READ Oct 16 14:11:04.493 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    +OK Dovecot ready.
    READ Oct 16 14:11:04.495 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x117944c00 -- thread:0x11b3406f0
    220-dime124.dizinc.com ESMTP Exim 4.80.1 #2 Wed, 16 Oct 2013 13:11:05 -0400
    220-We do not authorize the use of this system to transport unsolicited,
    220 and/or bulk e-mail.
    READ Oct 16 14:11:04.496 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    +OK Dovecot ready.
    READ Oct 16 14:11:04.497 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1179f2fe0 -- thread:0x11d40a2a0
    220-dime124.dizinc.com ESMTP Exim 4.80.1 #2 Wed, 16 Oct 2013 13:11:05 -0400
    220-We do not authorize the use of this system to transport unsolicited,
    220 and/or bulk e-mail.
    READ Oct 16 14:11:04.499 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    +OK Dovecot ready.
    WROTE Oct 16 14:11:04.511 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    CAPA
    WROTE Oct 16 14:11:04.536 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    CAPA
    WROTE Oct 16 14:11:04.561 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    CAPA
    READ Oct 16 14:11:04.586 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    +OK Dovecot ready.
    WROTE Oct 16 14:11:04.594 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x117944c00 -- thread:0x11b3406f0
    EHLO [192.168.2.5]
    WROTE Oct 16 14:11:04.614 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    CAPA
    READ Oct 16 14:11:04.625 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    WROTE Oct 16 14:11:04.648 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1179f2fe0 -- thread:0x11d40a2a0
    EHLO [192.168.2.5]
    WROTE Oct 16 14:11:04.667 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    CAPA
    WROTE Oct 16 14:11:04.778 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    CAPA
    READ Oct 16 14:11:04.838 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    WROTE Oct 16 14:11:04.859 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    USER [email protected]
    READ Oct 16 14:11:04.865 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    READ Oct 16 14:11:04.886 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    READ Oct 16 14:11:04.921 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x117944c00 -- thread:0x11b3406f0
    250-dime124.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    READ Oct 16 14:11:04.938 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    READ Oct 16 14:11:04.974 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1179f2fe0 -- thread:0x11d40a2a0
    250-dime124.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    WROTE Oct 16 14:11:04.975 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    USER [email protected]
    READ Oct 16 14:11:04.989 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    WROTE Oct 16 14:11:05.027 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    USER [email protected]
    WROTE Oct 16 14:11:05.052 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    USER [email protected]
    WROTE Oct 16 14:11:05.080 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x117944c00 -- thread:0x11b3406f0
    QUIT
    READ Oct 16 14:11:05.107 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    WROTE Oct 16 14:11:05.116 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    USER [email protected]
    WROTE Oct 16 14:11:05.143 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1179f2fe0 -- thread:0x11d40a2a0
    QUIT
    READ Oct 16 14:11:05.182 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    +OK
    WROTE Oct 16 14:11:05.200 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    USER [email protected]
    READ Oct 16 14:11:05.303 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    +OK
    WROTE Oct 16 14:11:05.320 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    USER [email protected]
    READ Oct 16 14:11:05.355 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    +OK
    READ Oct 16 14:11:05.379 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    +OK
    WROTE Oct 16 14:11:05.406 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    PASS ********
    READ Oct 16 14:11:05.440 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    +OK
    WROTE Oct 16 14:11:05.476 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    PASS ********
    READ Oct 16 14:11:05.523 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    +OK
    WROTE Oct 16 14:11:05.534 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    PASS ********
    WROTE Oct 16 14:11:05.565 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    PASS ********
    WROTE Oct 16 14:11:05.624 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    PASS ********
    READ Oct 16 14:11:05.648 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    +OK
    WROTE Oct 16 14:11:05.690 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    PASS ********
    READ Oct 16 14:11:05.742 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    +OK Logged in.
    WROTE Oct 16 14:11:05.811 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    PASS ********
    WROTE Oct 16 14:11:05.864 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    QUIT
    READ Oct 16 14:11:05.872 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    +OK Logged in.
    READ Oct 16 14:11:05.901 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    +OK Logged in.
    WROTE Oct 16 14:11:05.947 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    QUIT
    READ Oct 16 14:11:05.969 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    +OK Logged in.
    WROTE Oct 16 14:11:05.971 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    QUIT
    READ Oct 16 14:11:05.987 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    +OK Logged in.
    WROTE Oct 16 14:11:06.023 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    QUIT
    READ Oct 16 14:11:06.028 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    +OK Logged in.
    WROTE Oct 16 14:11:06.080 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    QUIT
    WROTE Oct 16 14:11:06.132 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    QUIT
    READ Oct 16 14:11:06.154 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    +OK Logged in.
    READ Oct 16 14:11:06.189 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    +OK Logging out.
    WROTE Oct 16 14:11:06.214 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    QUIT
    READ Oct 16 14:11:06.273 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    +OK Logging out.
    READ Oct 16 14:11:06.294 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    +OK Logging out.
    READ Oct 16 14:11:06.346 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    +OK Logging out.
    READ Oct 16 14:11:06.406 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    +OK Logging out.
    READ Oct 16 14:11:06.453 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    +OK Logging out.
    READ Oct 16 14:11:06.540 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    +OK Logging out.

    Deep1974 wrote:
    Can anyone help me solving this question with explaination .
    Given:
    11. public String makinStrings() {
    12. String s = ?Fred?;
    13. s = s + ?47?;
    14. s = s.substring(2, 5);
    15. s = s.toUpperCase();
    16. return s.toString();
    17. }
    How many String objects will be created when this method is invoked?
    A. 1
    B. 2
    C. 3
    D. 4
    E. 5
    F. 61 is created at line 13 as a result of StringBuilder.toString().
    1 is created at line 14 as a result of substring().
    1 is created at line 15 as a result of toUpperCase().
    The Strings "Fred" and "47" at lines 12 and 13 are NOT created when that method is invoked. They are created when the class is loaded.
    Note, however, that some of this is based on current implementations, NOT on requirements of the JLS or VM spec, so really, the answers could be different. Overall, it's a poorly thought out question.
    Edited by: jverd on Jan 28, 2010 2:35 PM

  • Hi I am trying to download the family tree maker that i purchased by email onto my ipad however I keep getting the same thing SAFARI CANNOT DOWNLOAD FILE can anyone help me solve this problem thanks.....bebe

    Hi i am i have any ipad and i am trying to download family tree maker that i purchased online, but all that keeps co ing up is safari cannot download file can anyone help me .....bebe

    I think you are trying to install a computer application to use on an iPad. You can't. They are incompatible pieces of hardware. If you want Family Tree Maker for your iPad, then you need to get that version, if it exists, from the iTunes Store. That download can't be done via Safari.

  • I get an error mesage -50 everytime I try to sync my IPad and PC. Can anyone help me solve this problem?

    Everytime I try to sync my Ipad with my PC I get an unknown error message number -50? Can anyone help me?

    this may be related: http://support.apple.com/kb/ts1539

  • Can anyone help me solve the problem of text displaying very rough on my new ASUS PA279Q display monitor running off my MacBook Pro?

    This is regarding a brand new ASUS PA 279Q, 2560 x 1440 IPS monitor. I'm connected via mini display port (into thunderbolt port on MacBook Pro) to display port on ASUS monitor; using cable ASUS included with the monitor. Mid 2012 MacBook Pro…full specs at bottom of this post.
    I have resolution set at 2560 x 1440 which is the native resolution according to the ASUS spec. I tried the other resolutions available in my System Preferences and text displayed rough with those settings too. I've tried adjusting contrast, brightness and sharpness via the ASUS control panel and didn't solve the problem. Also tried calibrating via Mac's system preferences/display and that did not improve text display either. All the text on this monitor (no matter what software I launch, Finder, InDesign, Illustrator, MS Word, Excel, VMWare Windows XP, Windows versions of Word, Excel, Acrobat, etc, all are consistently rendering text the same way ---  ROUGH and with "HALOS" around each letter.
    All point sizes of text and at various scales, display very rough on the screen. (My comparison is the retina display of my MBP and a Thunderbolt…so those two displays are my expectations.) I'm using the same MBP for both a Thunderbolt display (at work) and this ASUS at my home office.
    On the ASUS it's not as noticeable when the text is on white backgrounds, but I'm a graphic designer and compose images with text all day everyday. Not to mention the specs on this ASUS PA279Q indicate it's built for the professional so I would expect better text rendering. I haven't even addressed color calibration and balance yet, because that won't matter to me if the text won't display any better than it is now.
    I was so hopeful after researching all the specs on this monitor it would be a viable alternative to the glossy display of the Thunderbolt display. (Which, I do love the Thunderbolt display for it's clarity and how it displays crisp, clean text at all sizes. (This ASUS actually displays text decently if I increase the text so each letter is about 4" high. Which is pointless for practical purposes -- that'd be like doing page layout through a microscope!)
    I kept holding off on getting a monitor for the home office thinking the Thunderbolt would be updated soon. I'd be sick if I dropped a grand on piece of 2011 technology only to learn a few days later an updated Thunderbolt display hit the market! Not to mention, I'm praying Apple comes out with a less reflective Thunderbolt display. The glare and reflection is the main reason I looked elsewhere for a large monitor; hence my asking for help. Hoping the ASUS text display issue can be worked out. My expectation is for it to display like the MBP retina and Thunderbolt display text. That possible?
    Alternatively, I guess I could do the Apple Refurb Thunderbolt at $799. And see if there's a decent aftermarket anti-glare I could stick on it?
    Thanks for reading my post. Hope someone can help; offer any suggestions? Words or wisdom?
    Has anyone else had similar issues and figured out a resolution? Help!
    MacBook Pro
    Retina, Mid 2012, 2.3 Ghz Intel i7
    8GB 1600 MHz DDR3
    OS X 10.8.5
    NVIDIA GeForce GT 650M 1024 MB
    ASUS PA279Q

    I uninstalled those two items. It still runs slow on start-up and when opening safari, firefox, iphoto, itunes, etc. It's not snappy like it used to be. Any other ideas? Thanks.

  • My iPod touch 4G doesn't receive photos through iMessage, only typed messages. Can anyone help me solve this problem?

    Lately my iPod touch 4G has not been receiving photos from my wife through IMessage, when the photo is received I can see it for less than half a second, then it disappears. If I restart my iPod sete it shows up as unknown and a question mark, instead of the actual photo. I have tried reseting my iPod all the setting including network, and have tried turning off the iMessage and back on again. Other than that I don't know what else I can do, so please get back to me as soon as possible I would appreciate it.
    Thanks!

    Troubleshooting songs that skip
    - Unsync all music and resync
    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                       

  • I have problems retrieving my message. I can only respond to a message if I get it once it has been sent. Can anyone help me solve my problem.

    I have problems retrieving my messages.

    This is a user to user support forum. I doubt any of the Regent Street store staff pay attention here. I would try contacting the store directly. See https://www.apple.com/uk/retail/regentstreet/.
    tt2

  • My ipod touch brightness just went to zero after charging it. i've tried adjusting it to 100% but it still does not changed. can anybody help me solve this problem? thankS!

    my ipod touch brightness just went to zero after charging it. i've tried adjusting it to 100% but it still does not changed. can anybody help me solve this problem? thankS!

    Have yu tried the standard fixes:
    - Resetting:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restoring the iPOd via iTunes.  First from backup and if problem persists, restore to factory defaults/new iPod
    - Make an appointment at the Genius Bar of an Apple store since you likely have a hardware problem

  • When I plug in my headphones into my imac only the right side plays music. I tried with other headphones and still has the same problem. I tried the headphones with other devices and they work properly. Can anyone help me with my problem please?

    When I plug in my headphones into my imac only the right side plays music. I tried with other headphones and still has the same problem. I tried the headphones with other devices and they work properly. Can anyone help me with my problem please?

    Macs have crazy headpne jacks in different models.
    So we know more about it...
    At the Apple Icon at top left>About this Mac, then click on More Info, then click on Hardware> and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 6 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B03
    SMC Version (system): 1.21f4

  • Can anyone help me with a problem i am having with my music on my iPhone 4S. I have put alot of Compilation CDs in my library on iTunes. I download these tracks onto my phone, everything is ok so far. Now, this is what is niggling me and I don.t know how

    Can anyone help me with a problem i am having with my music on my iPhone 4S. I have put alot of Compilation CDs in my library on iTunes. I download these tracks onto my phone, everything is ok so far. Now, this is what is niggling me and I don.t know how to resolve it. This is my problem: 
    Have downloaded for example: Queen – Bohemium Rhapsody from a compilation album as well as a few complete Queen Album CDs into the iTunes library and then put them into playlists,
    When I go onto my phone and select Queen on the MUSIC app using Songs tab at the bottom of the screen it will display all Queen songs and their resective Alum pics, that is all those not in a complilation album, .
    If I know the song title I can select the songs tab and find the song that way,
    I’ve tried fiddling with the settings in the iTunes app by going to ‘get info’ tab and trying to sort the problem out that way but am not having much luck.What I want the phone to do is show, for example all Queens songs including those in compilation albums. Can this be done, would be grateful for any ideas on how it can be done, that is if ic can be done, any ideas
    Thanks for your help

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • My iphone 4 was on ios 5.0.1, then a few days ago I upgraded it to ios 6.1.4, then the apple logo won't stop flashing. Can anyone help to resolve my problem? Thanks in advance

    My iphone 4 was on ios 5.0.1, then a few days ago I upgraded it to ios 6.1.4, then the apple logo won't stop flashing. Can anyone help to resolve my problem? Thanks in advance

    I'm trying to restore my iphone by using the recovery mode. But it always seems to run out of time, any idea why is that? Thank you again

  • TS2634 the flashing light next too the camera is stays on,can anyone help me with this problem.thanks

    the flashing light next too the camera is stays on,can anyone help me with this problem.thanks

    Basics from the manual are restart, reset, restore.  Have you tried these?
    Have you read the manual?

Maybe you are looking for

  • WebService Receiver Problem. Pls advice urgent.

    Hi All, I have R/3 (RFC) -- XI -- R/3(WebService) Scenario. Now when I test my WebService in R/3 using wsadmin command it works fine. But If I import my webservice as wsdl file and use it in Soap Receicer Adapter and use XI I get error: <SAP:Category

  • ALert Cat- Conatainer Elements are not filled

    Hi I am raising an Alert using a UDF by calling SALERT_CREATE FM in my mapping, and I have defined the Container Elements SXMS_MSG_GUID & SXMS_ERROR_CODE in the ALERTCATDEF,But when the Alert is raised, these Variables are not filled, It says <SXMS_E

  • Essbase 11.1.2.2

    Hi All, I am planning to build a essbase environment in the below setup. Can you please provide you input. I would really appreciate your comments. 1) 1 Windows 2008 servers on VM , 1 RHEL v6 on VM 2) On Windows server 2008 ( webserver) a) Hyperion S

  • I want to change from Outlook to Thunderbird without losing data or email files - how can I do this?

    I bought a Dell Inspiron in February when my old computer (with XP Pro and Outlook 2007) crashed. Now I have Windows 7 with Outlook 2013, which is proving to be a disaster. A colleague recommended I go to Thunderbird and forget all about Outlook. I h

  • XFI card with Cubase Le iss

    I have windows XP with Pentium 4 processor, Phonic Helix 8ch mixer with firewire, XFI extreme music sound card and Cubase Le. The issue we are having is that it is not playing back. Is there a conflict between these? We had a friend who uses Cubase f