Help on GUIs... very basic java .. please

I'm a newbie in java and I'm having problem with this code. It shows a NullPointerException when i run this code. I know this is a very basic code, as I've told you I'm a newbie (I studied java for only 4 months), please help me. Thank you ^^
import javax.swing.*;
import java.awt.event.*;
public class Riddle_2 implements ActionListener {
     JFrame frame;
     JPanel contentPane;
     JLabel riddleSelect, riddleQuestion1, riddleQuestion, riddleAnswer;
     JComboBox riddleNo;
     JButton answer;
     public Riddle_2() {
          frame = new JFrame("Riddle");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          contentPane = new JPanel();
          contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.PAGE_AXIS));
          contentPane.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          riddleSelect = new JLabel("Select a riddle: ");
          riddleSelect.setAlignmentX(JLabel.LEFT_ALIGNMENT);
          contentPane.add(riddleQuestion);
          String[] names = {"Riddle1", "Riddle2", "Riddle3"};
          riddleNo = new JComboBox(names);
          riddleNo.setAlignmentX(JComboBox.LEFT_ALIGNMENT);
          riddleNo.setSelectedIndex(0);
          riddleNo.addActionListener(this);
          contentPane.add(riddleNo);
          riddleQuestion1 = new JLabel("Why did chicken cross the road? To get to the other side.");
          riddleQuestion1.setBorder(BorderFactory.createEmptyBorder (20, 0, 0, 0));
          contentPane.add(riddleQuestion1);
          answer = new JButton("Answer");
         answer.setActionCommand("answer");
         answer.addActionListener(this);
         contentPane.add(answer);
          frame.setContentPane(contentPane);
          frame.pack();
          frame.setVisible(true);
     public void actionPerformed(ActionEvent event) {
          JComboBox comboBox = (JComboBox)event.getSource();
          String riddleNo = (String)comboBox.getSelectedItem();
          String eventName = event.getActionCommand();
          if (riddleNo == "Riddle1") {
               riddleQuestion.setText("Why did chicken cross the road?");
          } else if (riddleNo == "Riddle2") {
               riddleQuestion.setText(" How many letters are in the alphabet?");
          } else if (riddleNo == "Riddle3") {
               riddleQuestion.setText(" A woman has 7 children, half of them are boys. How can this be possible?");
          if (riddleNo == "Riddle1" && (eventName.equals("Answer"))) {
               riddleAnswer.setText("To get to the other side.");
          } else if (riddleNo == "Riddle2" && eventName.equals("Answer")) {
               riddleAnswer.setText(" There are 11 letters in 'THE ALPHABET', Did you say 26? :)");
          } else if (riddleNo == "Riddle3" && eventName.equals("Answer")) {
               riddleAnswer.setText(" ALL the children are boys, so 1/2 half are boys and so is the other half.");
     private static void runGUI() {
          JFrame.setDefaultLookAndFeelDecorated(true);
          Riddle_2 jokes = new Riddle_2();
     public static void main(String[] args) {
          javax.swing.SwingUtilities.invokeLater(new Runnable() {
               public void run() {
                    runGUI();
}

you must return to school...
we are in:
Developers Home > Developer Forums > Java Mobility Forums > Java ME Technologies > CLDC and MIDP >
and stop cross posting !

Similar Messages

  • A very basic query, Please help.

    Hi all,
    I am very new to java and need your help in getting rid of this error. Please help.
    I have written two java files. packageTest.java and callPackageTest.java. Following is the code:
    // packageTest.java
    package aaa.bbb.ccc;
    public class packageTest
         public packageTest()
              System.out.println("This is from inside package test constructor");
         public static void main(String[] args)
              packageTest obj1 = new packageTest();
              System.out.println("Hello World!");
    //callPackageTest.java
    import aaa.bbb.ccc.*; // there is a star at the end. Seems to get removed by the forum every time.
    public class callPackageTest
         public static void main(String[] args)
              packageTest obj1 = new packageTest();
              System.out.println("Hello World!");
    Now when I compile packageTest.java with the following command:
    javac -d . packageTest.java
    I get correct class file created in correct directory, i.e. aaa/bbb/ccc/packageTest.class.
    But now when I try to compile the java file callPackageTest.java with the following command:
    javac -cp . callPackageTest.java
    I get the following error message:
    class file contains wrong class.
    Please remove or make sure it appears in the correct subdirectory of the classpath
    I also observed that when I put the complete class name in the import statement in the file callPackageTest.java ( import aaa.bbb.ccc.packageTest; ) then there is no error. But I expect the same to be done when I write import aaa.bbb.ccc. * ( an star at the end)
    Where is the mistake ? Please help.
    Thanks in advance.
    Sinha
    Edited by: sinha_java on May 26, 2010 10:50 PM
    Edited by: sinha_java on May 26, 2010 10:52 PM

    Thanks guys for all the information about how to post and other forum related stuff. So here goes the formatted code.
    I have written two java files. packageTest.java and callPackageTest.java. Following is the code:
    // packageTest.java
    package aaa.bbb.ccc;
    public class packageTest
    public packageTest()
    System.out.println("This is from inside package test constructor");
    public static void main(String[] args)
    packageTest obj1 = new packageTest();
    System.out.println("Hello World!");
    //callPackageTest.java
    import aaa.bbb.ccc.*;
    public class callPackageTest
    public static void main(String[] args)
    packageTest obj1 = new packageTest();
    System.out.println("Hello World!");
    Now when I compile packageTest.java with the following command:
    javac -d . packageTest.javaI get correct class file created in correct directory, i.e. aaa/bbb/ccc/packageTest.class.
    But now when I try to compile the java file callPackageTest.java with the following command:
    javac -cp . callPackageTest.javaI get the following error message:
    class file contains wrong class.
    Please remove or make sure it appears in the correct subdirectory of the classpath
    I also observed that when I put the complete class name in the import statement in the file callPackageTest.java ( import aaa.bbb.ccc.packageTest; ) then there is no error. But I expect the same to be done when I write import aaa.bbb.ccc.*
    Where is the mistake ?

  • Help with a very basic GUI

    Hi guys, i have a project to do and Ive chosen hangman. Ive already made the main program , but i need help with the GUI. I havent been taught about GUI in school, so all i know is what i could understand from a book and what ive read on the internet..
    First , heres the code of my basic Hangman class:
    import java.io.*;
    import java.util.Random;
    public class Hangman
        public void maingame()throws IOException
            InputStreamReader isr = new InputStreamReader(System.in);
            BufferedReader br = new BufferedReader(isr);
            String movies[]={"THE BOURNE ULTIMATUM","TRANSFORMERS","RUSH HOUR 3","THE INSIDE MAN","THE SIMPSONS MOVIE","THE LORD OF THE RINGS","DIE HARD 4.0"};
            Random rand = new Random();
            char current[]=(movies[rand.nextInt(movies.length)]).toCharArray();  //Convert a random string from movies array into a char array
            char actual[]=new char[current.length]; //Store current state of guessed movie
            for (int i=0;i<actual.length;i++)
                if (isVowel(Character.toUpperCase(current))==true)
    actual[i]=current[i];
    else if (isSpecialChar(Character.toUpperCase(current[i]))==true)
    actual[i]=current[i];
    else if (current[i]==' ')
    actual[i]='/';
    else
    actual[i]='_';
    String hangman = "HANGMAN";
    int turnsleft=7;
    StringBuffer guessed=new StringBuffer();
    while (turnsleft!=0)
    System.out.println("\n\t\t\t\t"+hangman.substring(0,turnsleft)+"\n");
    print(actual);
    System.out.println("\nEnter your guess");
    String inp = br.readLine();
    if (inp.length()>1)
    System.out.println("You may only enter one character");
    else
    char guess = inp.charAt(0); //Convert the entered string to char
    if ( (hasBeenGuessed(guess,guessed)) == true )
    System.out.println("You have already guessed that\nYou have "+turnsleft+" turns left");
    else if (guess >= '0' && guess <= '9')
    System.out.println("You cannot guess digits.All digits in a movie will will be filled in automatically");
    else
    guessed.append(guess);
    if (isVowel(guess)!=true)
    if (isCorrect(guess,turnsleft,current,actual)==true)
    if (hasWon(actual,current)==true)
    System.out.println();
    print(actual);
    System.out.println("\nCongratulations!You won!");
    System.exit(0);
    else
    System.out.println("\nCorrect Guess!\nYou have "+turnsleft+" turns left\n");
    else
    turnsleft--;
    System.out.println("Wrong Guess!\nYou have "+turnsleft+" turns left\n");
    else if (isVowel(guess)==true)
    System.out.println("You cannot guess vowels\nYou have "+turnsleft+" turns left\n");
    else
    System.out.println("You have already guessed that\nYou have "+turnsleft+" turns left\n");
    print(actual);
    if (turnsleft==0)
    System.out.println("\nYou lose!\nThe movie was: ");
    print(current);
    System.exit(0);
    private boolean isCorrect(char guess,int turnsleft,char current[],char actual[])
    int flag=0;
    for (int i=0;i<current.length;i++)
    if ( Character.toUpperCase(current[i])==Character.toUpperCase(guess) && actual[i]!=guess ) //Check if guess is correct, and make sure it has not already been entered
    actual[i]=guess;
    flag=1;
    else if (Character.toUpperCase(current[i])!=Character.toUpperCase(guess) && i==current.length-1 && flag==0)
    return false;
    if (flag!=0)
    return true;
    else
    return false;
    private boolean hasWon(char actual[],char current[])
    char actualspc[]=new char[actual.length];
    for (int i=0;i<actual.length;i++)
    if (actual[i]=='/')
    actualspc[i]=' ';
    else
    actualspc[i]=actual[i];
    for (int i=0;i<actual.length;i++)
    if ((Character.toUpperCase(current[i]))==(Character.toUpperCase(actualspc[i])) && i==actual.length-1)
    return true;
    else if ((Character.toUpperCase(current[i]))==(Character.toUpperCase(actualspc[i])) && i!=actual.length-1)
    continue;
    else
    return false;
    return false;
    private void print(char arr[])
    for (int i=0;i<arr.length;i++)
    System.out.print(Character.toUpperCase(arr[i])+" ");
    private boolean isVowel(char a)
    if (a=='a' || a=='A' || a=='e' || a=='E' || a=='i' || a=='I' || a=='o' || a=='O' || a=='u' || a=='U')
    return true;
    else
    return false;
    private boolean isSpecialChar(char a)
    //if (a>='a' && a<='z')
    //return false;
    //else if (a>='A' && a<='z')
    //return false;
    //else if (a==' ')
    //return false;
    //else if (a>='0' && a<='9')
    //return true;
    if (isLetter(a)==true)
    return false;
    else if (isWhiteSpace(a)==true)
    return false;
    else if (isDigit(a)==true)
    return true;
    else
    return true;
    private boolean hasBeenGuessed(char a,StringBuffer guessed)
    for (int i=0;i<guessed.length();i++)
    if ( Character.toUpperCase(guessed.charAt(i)) == Character.toUpperCase(a))
    return true;
    return false;
    My first 2 questions are here:
    a - Why does isLetter not work, it says cannot resolve symbol - method isLetter(char)... Im guessing even isDigit and isWhiteSpace wont work, so why? If i cant use them ill have to use the commented code, its kind of unprofessional..
    b- Isnt there any way i can compare chars ignoring cases besides converting both to one case, like im doing now?
    Heres the new HangmanGUI class i made, it doesnt necessarily have to be a different class in the final outcome, but i would prefer it if it can.. Ive made what i can figure out.. Ive commented about what i need to do.
    Keep in mind i cant use Applets, only Frame/JFrame
    import java.awt.*;
    import javax.swing.*;
    public class HangmanGUI extends JFrame implements ActionListener
        Button newGame = new Button("New Game");
        Button entGuess = new Button("Submit Guess");
        Button giveUp = new Button("Give Up");
        TextField input = new TextField("",1);
        Label hangman = new Label("HANGMAN");
        JPanel play = new JPanel();
        JPanel hang = new Jpanel();
        GridLayout playLayout = new GridLayout(2,4);
        public HangmanGUI()
            play.setLayout(playLayout);
            play.add(hangman+"\n");
            play.add(newGame);
            play.add(giveUp);
            play.add(input);
            play.add(entGuess);
            hang.add(hangman);
            getContentPane().add(play);
            getContentPane().add(hang);
        public void ActionPerformed(ActionEvent act)
            Object src = act.getSource();
            if (src==newGame)
            main(); //Calling main to restart program - will that work?
            //if (src==entGuess)
            //Need to submit the guess, while input is not empty to Hangman class
            //if (src==giveUp)
            //Need to go into the losing part of Hangman class
    }As you can see i need help with:
    a - How to complete the other ifs
    b - How to really use the data of my Hangman class in this class and combine the GUI and backend to make a nice GUI Hangman app
    c - btw, right now if i try to compile HangmanGUI it highlights the implements ActionListener line and says cannot resolve symbol - class ActionListener..
    Any help would be greatly appreciated

    Thanks for the explanation pete...
    Anyways, i started implementing my code within abillconsl's code, and im trying to assign a label to a char array using .toString(); but instead of whats in the char array i get [C@<numbers and digits> ..
    Whats wrong?
    [code]
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.Random;
    public class HangEmHighGUI extends JFrame implements ActionListener
    private Button newGame,
    entGuess,
    giveUp;
    private TextField input;
    private Label hangman,
    movie;
    private JPanel play,
    hang;
    private GridLayout playLayout;
    private FlowLayout labelLayout;
    private Container container; // To avoid extra meth calls
    String movies[]={"THE/BOURNE/ULTIMATUM","TRANSFORMERS","RUSH HOUR 3","THE INSIDE MAN","THE SIMPSONS MOVIE","THE LORD OF THE RINGS","DIE HARD 4.0"};
    Random rand = new Random();
    char current[]=(movies[rand.nextInt(movies.length)]).toCharArray(); //Convert a random string from movies array into a char array
    char actual[]=new char[current.length]; //Store current state of guessed movie
    public HangEmHighGUI()
    setUp();
    container = this.getContentPane();
    play = new JPanel();
    hang = new JPanel();
    playLayout = new GridLayout(1, 3, 5, 5); // rows, cols, space, space
    labelLayout = new FlowLayout(FlowLayout.CENTER);
    newGame = new Button("New Game");
    entGuess = new Button("Submit Guess");
    giveUp = new Button("Give Up");
    input = new TextField("",1);
    hangman = new Label("HANGMAN");
    movie = new Label(actual.toString());
    hang.setLayout(labelLayout);
    play.setLayout(playLayout);
    play.add(newGame);
    play.add(giveUp);
    play.add(entGuess);
    hang.add(hangman);
    hang.add(movie);
    container.add(hang,BorderLayout.NORTH);
    container.add(input,BorderLayout.CENTER);
    container.add(play,BorderLayout.SOUTH);
    pack();
    setVisible(true);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    public void actionPerformed(ActionEvent act)
    Object src = act.getSource();
    if (src==newGame)
    main(new String[] {""}); //Calling main to restart program, this does not work without parameters, is there some other way to restart?
    if (src==entGuess)
    if (input.getText()=="")
    setUp();
    //if (src==giveUp)
    //Need to go into the losing part of Hangman class
    public static void main(String args[])
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    new HangEmHighGUI();
    private void setUp()
    for (int i=0;i<actual.length;i++)
    if (isVowel(Character.toUpperCase(current)))
    actual[i]=current[i];
    else if (isSpecialChar(Character.toUpperCase(current[i])))
    actual[i]=current[i];
    else if (Character.isWhitespace(current[i]))
    actual[i]='/';
    else
    actual[i]='_';
    private boolean isVowel(char a)
    if (Character.toUpperCase(a)=='A' || Character.toUpperCase(a)=='E' || Character.toUpperCase(a)=='I' || Character.toUpperCase(a)=='O' || Character.toUpperCase(a)=='U')
    return true;
    else
    return false;
    private boolean isSpecialChar(char a)
    if (Character.isLetter(a))
    return false;
    else if (Character.isDigit(a))
    return true;
    else if (Character.isWhitespace(a))
    return false;
    else
    return true;
    private boolean isCorrect(char guess,int turnsleft,char current[],char actual[])
    int flag=0;
    for (int i=0;i<current.length;i++)
    if ( Character.toUpperCase(current[i])==Character.toUpperCase(guess) && actual[i]!=guess ) //Check if guess is correct, and make sure it has not already been entered
    actual[i]=guess;
    flag=1;
    else if (Character.toUpperCase(current[i])!=Character.toUpperCase(guess) && i==current.length-1 && flag==0)
    return false;
    if (flag!=0)
    return true;
    else
    return false;
    private boolean hasWon(char actual[],char current[])
    char actualspc[]=new char[actual.length];
    for (int i=0;i<actual.length;i++)
    if (actual[i]=='/')
    actualspc[i]=' ';
    else
    actualspc[i]=actual[i];
    for (int i=0;i<actual.length;i++)
    if ((Character.toUpperCase(current[i]))==(Character.toUpperCase(actualspc[i])) && i==actual.length-1)
    return true;
    else if ((Character.toUpperCase(current[i]))==(Character.toUpperCase(actualspc[i])) && i!=actual.length-1)
    continue;
    else
    return false;
    return false;
    private void print(char arr[])
    for (int i=0;i<arr.length;i++)
    System.out.print(Character.toUpperCase(arr[i])+" ");
    private boolean hasBeenGuessed(char a,StringBuffer guessed)
    for (int i=0;i<guessed.length();i++)
    if ( Character.toUpperCase(guessed.charAt(i)) == Character.toUpperCase(a))
    return true;
    return false;
    Note that the majority of the code has been taken from my old hangman class, i havent adapted it to the GUI yet, so ignore all of that stuff.

  • Some very basic problem PLEASE HELP ME :(

    hi,
    im just new to EJB's and WebLogic. i have integrated JBuilderX with BEAweblogic 8.1 and then made simplest ejb.
    started the server.
    server successfuly startedthen made test client and while running test client i got following error...
    "EJBModule.jar": Spaces in the temporary directory path may cause WebLogic APPC utility to produce fatal compile errors.
    "EJBModule.jar": Spaces in the classpath may cause WebLogic APPC utility to produce fatal compile errors.
    "EJBModule.jar": C:\bea\jdk142_04\bin\javaw -classpath "C:\bea\weblogic81\server\lib\weblogic_sp.jar;C:\bea\weblogic81\server\lib\weblogic.jar;C:\bea\weblogic81\server\lib\webservices.jar;C:\Documents and Settings\Administrator\jbproject\ejbsess\EJBModule.jar;" weblogic.appc -keepgenerated -forceGeneration -compiler C:/bea/jdk142_04/bin/javac "C:/Documents and Settings/Administrator/jbproject/ejbsess/EJBModule.jar.jar" -output "C:/Documents and Settings/Administrator/jbproject/ejbsess/EJBModule.jar"
    AND
    "EJBModule.jar": <Nov 3, 2004 10:47:15 PM GMT+05:00> <Warning> <EJB> <BEA-010054> <EJB Deployment: WebLogicSes has a class ejbsess.WebLogicSesBean that is in the classpath. This class should only be located in the ejb-jar file.>
    "EJBModule.jar": <Nov 3, 2004 10:47:16 PM GMT+05:00> <Warning> <EJB> <BEA-010054> <EJB Deployment: WebLogicSes has a class ejbsess.WebLogicSesHome that is in the classpath. This class should only be located in the ejb-jar file.>
    "EJBModule.jar": <Nov 3, 2004 10:47:16 PM GMT+05:00> <Warning> <EJB> <BEA-010054> <EJB Deployment: WebLogicSes has a class ejbsess.WebLogicSes that is in the classpath. This class should only be located in the ejb-jar file.>
    "EJBModule.jar": [J2EE:160127]ERROR: Could not delete previous archive: C:\Documents and Settings\Administrator\jbproject\ejbsess\EJBModule.jar
    PLEASE HELP ME WAT TO DO....
    WAITING...
    :-(

    hi,
    i again made the whole thing with C:\project\weblogicsessproject
    i just simply made session bean and one method getMessage() which simply return String message.
    i compile that code and get following warning..
    "EjbsessModule.jar": Spaces in the temporary directory path may cause WebLogic APPC utility to produce fatal compile errors.
    then i run the server from JBuilder which runs correctly and gives the message to client that...
    <Nov 10, 2004 1:09:41 PM GMT+05:00> <Notice> <WebLogicServer> <BEA-000355> <Thread "ListenThread.Default" listening on port 7001, ip address *.*>
    AND ON RUNNING TEST CLIENT OF JBUILDER I GET NAMING EXCEPTIONS...
    C:\bea\jdk142_04\bin\javaw -classpath "C:\project\weblogicsessproject\classes;C:\bea\weblogic81\server\lib\weblogic_sp.jar;C:\bea\weblogic81\server\lib\weblogic.jar;C:\bea\weblogic81\server\lib\webservices.jar;C:\bea\jdk142_04\jre\lib\charsets.jar;C:\bea\jdk142_04\jre\lib\ext\dnsns.jar;C:\bea\jdk142_04\jre\lib\ext\ldapsec.jar;C:\bea\jdk142_04\jre\lib\ext\localedata.jar;C:\bea\jdk142_04\jre\lib\ext\sunjce_provider.jar;C:\bea\jdk142_04\jre\lib\im\indicim.jar;C:\bea\jdk142_04\jre\lib\im\thaiim.jar;C:\bea\jdk142_04\jre\lib\jce.jar;C:\bea\jdk142_04\jre\lib\jsse.jar;C:\bea\jdk142_04\jre\lib\plugin.jar;C:\bea\jdk142_04\jre\lib\rt.jar;C:\bea\jdk142_04\jre\lib\sunrsasign.jar;C:\bea\jdk142_04\lib\dt.jar;C:\bea\jdk142_04\lib\htmlconverter.jar;C:\bea\jdk142_04\lib\tools.jar" weblogicsessproject.WebLogicSesTestClient1
    -- Initializing bean access.
    javax.naming.NameNotFoundException: Unable to resolve 'WebLogicSes' Resolved [Root exception is javax.naming.NameNotFoundException: Unable to resolve 'WebLogicSes' Resolved ]; remaining name 'WebLogicSes'
         at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
         at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:284)
    -- Failed initializing bean access.
         at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:244)
         at weblogic.jndi.internal.ServerNamingNode_813_WLStub.lookup(Unknown Source)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:369)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:357)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at weblogicsessproject.WebLogicSesTestClient1.initialize(WebLogicSesTestClient1.java:34)
         at weblogicsessproject.WebLogicSesTestClient1.<init>(WebLogicSesTestClient1.java:19)
         at weblogicsessproject.WebLogicSesTestClient1.main(WebLogicSesTestClient1.java:270)
    Caused by: javax.naming.NameNotFoundException: Unable to resolve 'WebLogicSes' Resolved
         at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:897)
         at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:230)
         at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:154)
         at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:188)
         at weblogic.jndi.internal.RootNamingNode_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    IM DOING ALL THAT WITH HELP OF BORLAND WHITE PAPERS...
    please help me
    waiting

  • Help with Applescript: very basic functions

    Hi guys, my first post. I'd very much like to switch from Excel to Numbers but not until I find an Applescript replacement for my stuff.
    I wrote basic Excel Applescript just fine but I'm tearing my hair out just to perform simple scripts in Numbers!!!
    Basically I need to do:
    PART 1: Import External Data
    - I think I got this covered, using a GUI copy script via the "System Events" application
    - but since you guys are the experts: how do I make this process 'invisible'? i.e. each time the script runs, a Safari window appears. I don't want that to happen.
    tell application "Safari"
    activate
    open location "http://www.whatever.htm"
    end tell
    tell application "System Events"
    tell process "Safari"
    keystroke "a" using command down
    keystroke "c" using command down
    end tell
    end tell
    PART 2: Paste It Into Numbers
    - How hard can it be, right? Apparently I have the mental IQ of Gump I need Numbers to:
    - clear data from an existing pre-defined/named table
    - paste the data (from clipboard) onto this table (paste starting on cell A1), using the "Paste and Match Style" function
    - hide certain columns <-- I realize if Numbers paste onto a table with hidden columns, it treats them as non-existent i.e. won't paste the same. Therefore I suppose before the paste script I'd need an unhide script
    ... and that's it!!
    Help please I really hate Excel but can't move on till I figure this out... it's crucial to my livelihood.
    Thank you all in advance!

    There is no paste function in the Numbers AppleScript's dictionary.
    We may mimic it as I did during one year and a half with Numbers '08.
    Go to my iDisk:
    <http://idisk.me.com/koenigyvan-Public?view=web>
    open the folder "For_iWork:iWork '08:for_Numbers:"
    and download one of the items whose name starts with "paste".
    This use of GUI scripting is interesting because it creates automatically rows/columns when required.
    One draw back is the resulting font.
    Yvan KOENIG (from FRANCE samedi 17 janvier 2009 21:12:52)

  • Help with Forte: very simple question, please help!

    I recently downloaded the community version of Forte (Sun One) but can't seem to get any new empty class programs to execute properly. I know something is probably not set up right, which is why I really need a little help to get started. Regardless of the code I try to execute, the output error is always:
    "java.lang.NoClassDefFoundError: (name of program)
    Exception in thread "main" "
    Please let me know what I'm not doing right. I would really appreciate anybody's thoughts on this problem because I would love to get Forte working so I can start learning Java. Thanks for your input!

    I would tell you that Forte is not a tool for the beginner. you should look at something simpler. Forte is a fully integrated development environment. I would look at a simple editor like emacs, available at gnu.org. The commands of this editor are quite difficult to get use to.
    As for setting the class varialbe. It depends on the O/s that you are using. win98/me is different than NT/xp. Need to know one or the other before explaining.
    email me if you have question. email address is in my profile.

  • Need Very Basic Instructions, Please!!

    Please excuse my total ignorance, take pity. I am having trouble with apparently basic Reader usage. I have scoured Help and still have questions. Is there a Reader for Dummies type info. I have missed??

    You can also view the help files which are the manuals for the program.
    It is not Reader for Dummies, since Adobe thinks more of the people who
    use their software. You can really find the information quite helpful.
    Mike

  • Help With A Very Good Question Please???

    Hi, I was wondering if anyone knows if I can use an American Apple TV 160GB in Europe, for example France? I really need to know so if someone can help me that would be fantastic.
    Thanks

    AidenV wrote:
    ... if I can use an American Apple TV 160GB in Europe
    yes, no problem.
    the only issue you may run into is the availability of wireless channels
    in other words, if the network in France is broadcasting on channel 13, your US model TV will not be able to +pick it up+.
    if you connect the TV via ethernet, there will be no problem.
    JGG

  • Help with a very basic select

    Hi, I am embarrassed to say this but I can't figure out why this select isn't working. 
    SELECT single adrnr INTO w_adrnr FROM lfa1
      WHERE lifnr = w_lifnr.
    I know that I have a match in LFA1 where LIFNR = W_LIFNR but the select will not return anything.  Can you tell me what [obvious] mistake I have made?
    Regards,
    Davis

    Davis,
    did you see data at SE11 ? if so then use
    Use Below FM -> pass CONVERSION_EXIT_ALPHA_INPUT
    give input w_lifnr and output is w_lifnr
    SELECT single adrnr INTO w_adrnr FROM lfa1
      WHERE lifnr = w_lifnr.
    now see the results
    Thanks
    Seshu

  • *Basic* Java help needed...

    I feel like a complete novice for posting this kinda stuff, but i figured somebody would take 5 minutes and help me out. My final in my programming class depends on 2 programs, one of which is giving me some actual trouble.
    What I have to do is create a java applet that allows a user to input their weight, select a planet, and then have their weight converted to what their weight would be on the selected planet. However, if the ouput is higher than 60 pounds, I need a picture of the michelin man to appear and the theme from star wars to play. If it is below 60, A multicolored asterisk should be displayed with applause.
    I will post what code I have already made. Please note: ITS VERY VERY BASIC. I may have overcomplicated some things, and there is always more than one way to do something (in my experience). Also, I kinda just converted a temperature conversion applet, so there may be some extra stuff I don't need.
    Please help.
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    public class tempsapp2 extends Applet implements ActionListener
    Label prompt1;
    TextField input1;
    Label prompt2;
    TextField input2;
    int number1, number2;
    int mercury, venus, earth, mars, jupiter, saturn, neptune, uranus, pluto, result;
    public void init()
    prompt1 = new Label ("Enter your weight:");
    add (prompt1);
    input1 = new TextField (10);
    add (input1);
    prompt2 = new Label ("Enter the Number of the Planet you would like to have your weight converted to:");
    add (prompt2);
    input2 = new TextField (10);
    add (input2);
    input2.addActionListener(this);
    add (input2);
    public void paint (Graphics g)
    number1 = Integer.parseInt(input1.getText());
    number2 = Integer.parseInt(input2.getText());
    mercury = (number1*3780)/1000;
    venus = (number1*9070)/1000;
    earth = (number1*10)/1000;
    mars = (number1*3770)/1000;
    saturn = (number1*9160)/1000;
    uranus = (number1*8890)/1000;
    neptune = (number1*1125)/1000;
    jupiter =  (number1*2364)/1000;
    pluto = (number1*670)/1000;
    if(number2==1)
    g.drawString("Your weight on Mercury would be "+mercury+" lbs",100,150);
    else if(number2==2)
    g.drawString("Your weight on Venus would be "+venus+" lbs",100,150);
    else if(number2==3)
    g.drawString("Your weight on Earth would be "+earth+" lbs",100,150);
    else if(number2==4)
    g.drawString("Your weight on Mars would be "+mars+" lbs",100,150);
    else if(number2==5)
    g.drawString("Your weight on Jupiter would be "+jupiter+" lbs",100,150);
    else if(number2==6)
    g.drawString("Your weight on Saturn would be "+saturn+" lbs",100,150);
    else if(number2==7)
    g.drawString("Your weight on Uranus would be "+uranus+" lbs",100,150);
    else if(number2==8)
    g.drawString("Your weight on Neptune would be "+neptune+" lbs",100,150);
    else if(number2==9)
    g.drawString("Your weight on Pluto would be "+pluto+" lbs",100,150);
    public void actionPerformed(ActionEvent evt)
      number1 = Integer.parseInt(input1.getText());
      number2 = Integer.parseInt(input2.getText());
      repaint();
    }

    I am guessing that you are wondering where to go from here. If so http://java.sun.com/products/plugin/1.5.0/demos/applets/Animator/Animator.java may prove helpful.
    Also I would recommend using arrays of planet names and weight multipliers. It could make your code a lot less cumbersome.

  • Can someone help me with a very basic guide to animated gif with elements 11?

    Hi
    I bought Adobe elements 11 and have been trying to do a very basic animated gif with it.I came acroos some instructions about layering,etc but still cannot get it to work. All I want to do is add two of my school photos together so that one suddenly vanishes and the one appears.I am planning to put this on my blog.
    The animation I want is the day time picture of teh school magically vanish and the night time picture appear.Can it be done with elements11(I wouldn't mind if someone can even do it for me so that I could deconstruct it later!).I have attached the two photos.Please remember ,my knowledge of phtoshop is abysmal and very very basic.My apologies for that.hence I might be need to be told like a 10-year old!
    Please help as I need this fast! Karen.

    It’s not possible to fade between gif images but you could sandwich two layers with a black fill layer between them as I have done in this example.
    Then use the menu:
    File >> Save For Web
    Choose gif as the file type, select animate, and set your timing in seconds with continuous loop if required.
    Then Save.
    PS the images are different sizes so I had to re-size the daylight image to make it the same as the night image.
    Click to view

  • Help with Project Management setup from very basics...

    hi all!
    i am new to e-business suite and now i have installed vision demo database successfully on a Quad Core with 320 GB hard and 4 GB ram...now i need help to setup Project Management (PM) module for a hypothetical construction company with the required functionalities (just limited functionalities and Not complete functionalities as in EBS).i need help in setting up Project Management module from the very basics...so can you help me out in this...thanks in anticipation

    Hi,
    Please post only once (do not post same thread across multiple forums).
    help with Financials setup from very basics...
    Re: help with Financials setup from very basics...
    Regards,
    Hussein

  • MacBook Pro suddenly very slow! PLEASE HELP!

    Hi!
    this is my ever post and im not much of an expert so please excuse if im slow or say sth stupid
    so i have a macbook pro 2011 with an i7 which should be pretty fast. and it was until 5-6 months ago, where it just became terribly slow, i re-installed the OSX, but it didnt help.
    my battery has also died completely last month, which i will have to change, and i will add an extra 4 GB RAM i think, but i doubt thats the only issue.
    applications are ridiculuosly slow, i get the beachball of death all the time, please help.
    i runa an EthreCheck, here is the result if it helps:
    Thank you very much in advance!
    EtreCheck version: 2.1.5 (108)
    Report generated 5 January 2015 16:16:31 CET
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.7 GHz Intel Core i7 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 0:51:52
    Disk Information: ℹ️
      TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) / : 498.88 GB (142.50 GB free)
      Encrypted AES-XTS Unlocked
      Core Storage: disk0s2 499.25 GB Online
      OPTIARC DVD RW AD-5970H 
    USB Information: ℹ️
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. FaceTime HD Camera (Built-in)
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Avast/components/fileshield/unsigned
      [loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) [Support]
      /Library/Application Support/Avast/components/proxy/unsigned
      [loaded] com.avast.PacketForwarder (2.0 - SDK 10.9) [Support]
    Launch Agents: ℹ️
      [loaded] com.avast.userinit.plist [Support]
      [loaded] com.google.keystone.agent.plist [Support]
      [invalid?] com.intego.commonservices.statusitem.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
      [loaded] com.trusteer.rapport.rapportd.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [loaded] com.avast.init.plist [Support]
      [loaded] com.avast.uninstall.plist [Support]
      [failed] com.avast.update.plist [Support]
      [not loaded] com.google.keystone.daemon.plist [Support]
      [not loaded] com.microsoft.office.licensing.helper.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
      [not loaded] com.oracle.java.JavaUpdateHelper.plist [Support]
      [not loaded] com.trusteer.rooks.rooksd.plist [Support]
    User Launch Agents: ℹ️
      [invalid?] com.avast.home.userinit.plist [Support]
      [loaded] com.facebook.videochat.[redacted].plist [Support]
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist [Support]
      [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist [Support]
    User Login Items: ℹ️
      iTunesHelper UNKNOWN (missing value)
      Dropbox UNKNOWN (missing value)
    Internet Plug-ins: ℹ️
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
      FlashPlayer-10.6: Version: 15.0.0.246 - SDK 10.6 [Support]
      Default Browser: Version: 600 - SDK 10.10
      Flash Player: Version: 15.0.0.246 - SDK 10.6 Mismatch! Adobe recommends 16.0.0.235
      QuickTime Plugin: Version: 7.7.3
      o1dbrowserplugin: Version: 5.4.2.18903 [Support]
      SharePointBrowserPlugin: Version: 14.4.6 - SDK 10.6 [Support]
      googletalkbrowserplugin: Version: 5.4.2.18903 [Support]
      Silverlight: Version: 5.1.20513.0 - SDK 10.6 [Support]
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
    Safari Extensions: ℹ️
      Searchme [Installed] Adware! [Remove]
      Better Pop Up Blocker [Installed]
      wrc [Installed]
      Slick Savings [Installed] Adware! [Remove]
      Frill [Installed]
      Amazon Shopping Assistant [Installed] Adware! [Remove]
      AdBlock [Installed]
      Adblock Plus [Installed]
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
      Java  [Support]
      Trusteer Endpoint Protection  [Support]
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          14% Mail
          3% Google Chrome
          2% WindowServer
          2% coreaudiod
          1% launchd
    Top Processes by Memory: ℹ️
      120 MB Google Chrome
      107 MB Microsoft Word
      94 MB Google Chrome Helper
      86 MB Mail
      69 MB mds_stores
    Virtual Memory Information: ℹ️
      18 MB Free RAM
      983 MB Active RAM
      1.44 GB Inactive RAM
      1.07 GB Wired RAM
      6.10 GB Page-ins
      72 MB Page-outs
    Diagnostics Information: ℹ️
      Jan 5, 2015, 03:29:00 PM /Library/Logs/DiagnosticReports/NotificationCenter_2015-01-05-152900_[redacted] .cpu_resource.diag [Details]
      Jan 5, 2015, 03:25:19 PM Self test - passed
      Jan 5, 2015, 10:48:18 AM /Library/Logs/DiagnosticReports/systemstats_2015-01-05-104818_[redacted].cpu_re source.diag [Details]
      Jan 5, 2015, 10:26:04 AM /Library/Logs/DiagnosticReports/rpcsvchost_2015-01-05-102604_[redacted].cpu_res ource.diag [Details]
      Jan 5, 2015, 10:20:48 AM /Library/Logs/DiagnosticReports/NotificationCenter_2015-01-05-102048_[redacted] .cpu_resource.diag [Details]
      Jan 4, 2015, 06:55:43 PM /Library/Logs/DiagnosticReports/rpcsvchost_2015-01-04-185543_[redacted].cpu_res ource.diag [Details]
      Jan 4, 2015, 02:44:46 PM /Library/Logs/DiagnosticReports/com.avast.daemon_2015-01-04-144446_[redacted].c pu_resource.diag [Details]
      Jan 4, 2015, 11:46:00 AM /Library/Logs/DiagnosticReports/systemstats_2015-01-04-114600_[redacted].cpu_re source.diag [Details]
      Jan 4, 2015, 11:19:22 AM /Library/Logs/DiagnosticReports/rpcsvchost_2015-01-04-111922_[redacted].cpu_res ource.diag [Details]
      Jan 3, 2015, 06:20:32 PM /Users/[redacted]/Library/Logs/DiagnosticReports/UserKernel_2015-01-03-182032_[ redacted].crash
      Jan 3, 2015, 04:27:19 PM /Users/[redacted]/Library/Logs/DiagnosticReports/LeagueofLegends_2015-01-03-162 719_[redacted].crash
      Jan 3, 2015, 02:12:22 AM /Users/[redacted]/Library/Logs/DiagnosticReports/LolClient_2015-01-03-021222_[r edacted].crash
      Jan 3, 2015, 12:02:38 AM /Users/[redacted]/Library/Logs/DiagnosticReports/UserKernel_2015-01-03-000238_[ redacted].crash
      Jan 3, 2015, 12:02:37 AM /Users/[redacted]/Library/Logs/DiagnosticReports/LeagueofLegends_2015-01-03-000 237_[redacted].crash
      Jan 2, 2015, 09:38:20 PM /Users/[redacted]/Library/Logs/DiagnosticReports/LeagueofLegends_2015-01-02-213 820_[redacted].crash
      Jan 2, 2015, 05:44:54 PM /Users/[redacted]/Library/Logs/DiagnosticReports/UserKernel_2015-01-02-174454_[ redacted].crash
      Jan 2, 2015, 05:44:48 PM /Users/[redacted]/Library/Logs/DiagnosticReports/LoLPatcher_2015-01-02-174448_[ redacted].crash
      Jan 2, 2015, 05:04:53 PM /Library/Logs/DiagnosticReports/mdworker_2015-01-02-170453_[redacted].cpu_resou rce.diag [Details]
      Jan 2, 2015, 05:04:20 PM /Library/Logs/DiagnosticReports/com.avast.daemon_2015-01-02-170420_[redacted].c pu_resource.diag [Details]

    Rapport software is offered by banks as a security support software.
    Uninstall Trusteer software
    http://www.trusteer.com/support/uninstalling-rapport-mac-os-x
    YouTube video
    http://www.youtube.com/watch?v=Oxz-EW8Gceo
    Remove Avast:
    http://apple-macintoshsupport.blogspot.com/2012/07/how-do-i-uninstall-avast-free -antivirus.html

  • Since upgrading to Yosemite on my iMac, My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad... Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..

    Since upgrading to Yosemite on my iMac: My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad...
    Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..
    Thanks

    29/11/2014 20:17:01.315 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:17:37.013 com.apple.backupd[616]: Finished scan
    29/11/2014 20:17:43.108 com.apple.backupd[616]: Saved event cache at
    /Volumes/Time Machine Backups/Backups.backupdb/Geoff Lambrechts’s iMac
    (2)/2014-11-29-200648.inProgress/9B453663-603F-40B8-AC21-24F05C724E15/.6162AD34- 38F8-30AB-98E0-4A22FB9D311F.eventdb
    29/11/2014 20:17:43.207 com.apple.backupd[616]: Not using file event
    preflight for Macintosh HD
    29/11/2014 20:18:01.561 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:18:16.288 com.apple.xpc.launchd[1]:
    (com.apple.quicklook[715]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.quicklook
    29/11/2014 20:18:23.705 com.apple.SecurityServer[56]: Session 100013 created
    29/11/2014 20:18:32.046 mdworker[718]: code validation failed in the
    process of getting signing information: Error Domain=NSOSStatusErrorDomain
    Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    29/11/2014 20:19:01.662 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:19:45.458 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.ipc
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.notification
    29/11/2014 20:20:01.138 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:01.484 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:13.430 com.apple.backupd[616]: Found 4529 files (1.1 GB)
    needing backup
    29/11/2014 20:21:18.786 com.apple.backupd[616]: 2.82 GB required (including
    padding), 1.24 TB available
    29/11/2014 20:21:31.775 Console[734]: Failed to connect (_consoleX) outlet
    from (NSApplication) to (ConsoleX): missing setter or instance variable
    29/11/2014 20:21:34.230 WindowServer[162]: disable_update_timeout: UI
    updates were forcibly disabled by application "Console" for over 1.00
    seconds. Server has re-enabled them.
    29/11/2014 20:21:36.898 WindowServer[162]: common_reenable_update: UI
    updates were finally reenabled by application "Console" after 3.67 seconds
    (server forcibly re-enabled them after 1.00 seconds)
    29/11/2014 20:21:36.971 coreservicesd[83]: SFLEntryBase::ListHasChanged
    mach_msg returned 10000004d
    29/11/2014 20:22:01.817 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:23:02.170 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:24:02.547 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:02.168 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.233 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.236 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.284 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:03.059 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:12.674 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:26:03.464 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:27:03.841 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    On 29 November 2014 at 19:29, Apple Support Communities Updates <

  • Blank screen in itunes store-please help im not very technical and when i click on my itunes app the screen is blank how can i fix this please?

    Blank screen in itunes store-please help im not very technical and when i click on my itunes app the screen is blank how can i fix this please?

    See if any of the following fix it.
    Try logging out of your account on your phone by tapping on your id in Settings > iTunes & App Store and tap 'Sign Out' on the popup and then log back in.
    If that doesn't fix it then try closing the iTunes store app via the phone's multitasking bar and see if it works properly when you open the app : double-click the home button to open the taskbar and then swipe or drag iTunes from there up and off the top of the screen to close it, and the click the home button to close the taskbar.
    A third thing to try is a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the equivalent of a reboot.

Maybe you are looking for

  • How do I connect to the internet with Airport Expess?

    In Airport Utility I get an orange icon and the Airport Express light is green. In the internet box coming from the globe picture it says Interent connection Disconnected and there is no router address and no DNS server information shown.

  • I can't get rid of KeyBar 1.14 Customized Web Search - I have already disabled and removed it and it's still there!

    I have disabled/removed it from the add-ons, restored firefox as my home page, uninstalled it from my computer and my searches are still being controlled by bing with unwanted ads and it shows up beside the address bar. Embarrassing, but this all sta

  • Km development runtime error

    hi i am creating a simple km application to create a folder using km api when i run the application it is displaying runtime error in the portal any help on this here is the trace . EXCEPTION #1#com.sapportals.portal.prt.component.PortalComponentExce

  • Add new type of component

    I want the user to be able to select which type of component gets added to each new tab in a JTabbedPane for example, if the user opted to have a JTextArea in each new Tab we could use tabbedPane.add("new Tab", new JTextArea()); //But what if the use

  • Opening multiple files in OS X

    Hi there, Sorry if this is a noob question but I couldn't find the answer online! Do anyone happen to know if there is a keyboard shortcut to open multiple files in Dreamweaver on OS X... I click on each with Command held to select multiple files, an