Problems starting GUI

Hello all
I am new to Solaris. I'm very excited about Solaris and I'm considering studying for the first Solaris exam. I have about 10 years experience in x86 based operating systems, so thats my base.
MY ISSUE:
I was installing Solaris ontop of a VMware instance, which was going good. At one point I got distracted left the 3rd disk in the drive to complete the install.
I returned to a GUI logon screen and it seem that the installation was complete.
At this point I tried to login, but could not because the screen was frozen. I rebooted thinking it would bring me back to the login screen.
However, I ended up at the command line and I am unable to bring the GUI back up.
Can any one tell me how to bring the GUI back up?

Your problem is due to a lack of proper graphics card driver. I've been fighting with the same issue for a while now.

Similar Messages

  • Problem with GUI in applet

    Hai to all,
    I am having a problem with GUI in applets
    My first class extends a JPanel named A_a
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    both the applets C_c and B_b are in same browser page
    How can i achive that pls help .

    Just to make the code readable...
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    }and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    }and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    }

  • Can't start GUI apps as Root.

    If i am logged as root i can't start GUI apps like:
    Xlib: connection to ":0.0" refused by server
    Xlib: No protocol specified
    kate: cannot connect to X server :0.0
    should i post xorg.conf?

    Kknd wrote:
    Fork wrote:That starts the aplication. But i wanted to fix the problem, not get around it. Is it possible?
    It's not really a problem, but you can copy your .Xauthority to give the same rights.
    It is not a problem, and in fact, using kdesu is probably the safest way to do it. Starting apps as root in X is risky.

  • [KDM] Cannot start gui application with sudo

    Hi,
    After i had upgraded to kde 4.5, there was a new problem. When i want to start any gui program with sudo (e.g. sudo kwrite) i see that error:
    [simas@myhost ~]$ sudo kwrite
    No protocol specified
    kwrite: cannot connect to X server :0.0
    [simas@myhost ~]$
    Starting apps like nano works fine. I also discovered that when i use gdm instead of kdm, and boot to same kde desktop, i can start gui apps with sudo fine. when i use kdm no matter if im in gnome or kde starting gui apps from terminal with sudo just doesnt work.
    Anyone has any ideas? im starting desktop managers with inittab method.
    Last edited by syms (2010-10-11 11:49:24)

    graysky wrote:hmm... with gnome I use gksu so I believe you need the kde version of that... ksudo or kdsu I can't remember.
    well, using kdesu works fine, but i still prefer sudo. in fact everything worked fine in kde 4.4 and gdm.

  • After download and installation of PS PE12 I have problems starting the programm. After selecting video and new project nothing happens, only the colorbar below new project is showing

    New computer.
    After download and installation of PS PE12
    I have problems starting the programm, double clicking on the icon.
    After selecting video and new project nothing happens, only the colorbar below new project is showing, nothing happens.
    (expected was to activate the program and the sarting the PE12)
    PSE12 runs fine
    System:
    WIN8.1 / i7 /16GB RAM

    New computer.
    After download and installation of PS PE12
    I have problems starting the programm, double clicking on the icon.
    After selecting video and new project nothing happens, only the colorbar below new project is showing, nothing happens.
    (expected was to activate the program and the sarting the PE12)
    PSE12 runs fine
    System:
    WIN8.1 / i7 /16GB RAM

  • Tabs only open in a new window. Ctl T opens a new window NOT a new tab help-last update this problem started. How do I set FF back to open tabs in 1 window

    Tabs only open in a new window. Ctl T opens a new window NOT a new tab help-last update this problem started 2 days ago. How do I set FF back to open tabs in 1 window?
    There is no plus sign and going into optins and changing settings has not worked. I have uninstall FF and reinstall-keeping my personalization-and that was no help.
    Right clicking on FF Icon to open a new tab, or going up to FF drop down tab and clicking on new tab both do not work.
    Help everything opens a new window not a new tab. there seems to be no way to reset this or to chose a different optin. I just downloaded new tabs at end addon and it didn't do a thing.

    as a first troubleshooting step - does it work like normally when you open & run firefox in [[Safe Mode|safemode]] by pressing the shift key while you open firefox (all other instances have to be closed before)...

  • Purchased a new Apple TV and the remote double clicks each time I press the button. It worked fine during set up and for the first two days.  I have since moved it and this problem started. Restarted,reset,unplugged,change remotes, no change.Help please.

    Purchased a new Apple TV and the remote double clicks each time I press the button. It worked fine during set up and for the first two days.  I have since moved it and this problem started. Restarted,reset,unplugged,changed remotes, no change. Latest software update. This is really annoying.  iPhone remote app works just fine.  Any suggestions?

    That's one of the weird things.. it recognizes it maybe 10% of the time. And usually, only after I do the two-button reset. Problem is.. since it won't charge above 2%, anytime I try to do a restore or anything like that using iTunes, my device shuts off and I lose whatever progress I'd made.
    So, an update... after reading through a bunch of similar complaints (there are literally 1000's of them so there's NO WAY this isn't somehow ios7 related, thanks a lot APPLE ) I decided to try a restore in recovery mode. After 3 hours and several disconnections... I ended up having to just set it up as a new iPad, as the restore did nothing. Weirdly though... as I was doing the restore in recovery mode.. I noticed I'd gotten up to a 10% charge.. higher than it's been since September, so after setting it up as a new device, I turned it off and plugged it in using the wall charger. 2 hours later and I was up to 38%. Still not great, as my iPad, before ios7 could've fully charged twice in the amount of time it took for me to now get 28% more of a charge. And that's with a fully cleaned out device.. so that really ***** and I'm now more confused than ever.
    But I'm gonna leave it overnight charging and see what I come up with tomorrow. Sadly, when I paid $600 for it in February, I never expected to have to play "wait and see" with it...

  • Problem starting logical host on eGate 5.1.0

    I'm having problem starting logical host for eGate 5.1.0 on Linux platform, and I cant see where is the problem lies. Is there anybody here that can give me some hint or guide?
    Below is the error message from the log.
    [#|2006-08-22T17:57:28.506+0800|WARNING|IS5.1|javax.enterprise.resource.jms|_ThreadID=11; ThreadName=STCMS process monitoring;|STCMS process ended unexpectedly with exit code 1; initiating application server restart|#]
    [#|2006-08-22T17:57:28.567+0800|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=11; ThreadName=STCMS process monitoring;|sending restart notification to server...server|#]
    [#|2006-08-22T17:57:28.721+0800|WARNING|IS5.1|javax.enterprise.system.tools.admin|_ThreadID=12; ThreadName=RMI TCP Connection(1)-127.0.0.1;|core.tmp_folder_deletion_failed|#]
    [#|2006-08-22T17:57:28.722+0800|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=12; ThreadName=RMI TCP Connection(1)-127.0.0.1;|stcms.alert_shutting_down|#]
    [#|2006-08-22T17:57:28.722+0800|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=12; ThreadName=RMI TCP Connection(1)-127.0.0.1;|stcms.broker_shutting_down|#]
    [#|2006-08-22T17:57:31.020+0800|INFO|IS5.1|javax.enterprise.system.container.web|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Creating virtual server server|#]
    [#|2006-08-22T17:57:31.039+0800|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|IS AVK Instrumentation disabled|#]
    [#|2006-08-22T17:57:31.045+0800|INFO|IS5.1|javax.enterprise.system.core.security|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.|#]
    [#|2006-08-22T17:57:31.117+0800|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|[STC JTS Extension] The last agent commit optimization is enabled.|#]
    [#|2006-08-22T17:57:32.315+0800|INFO|IS5.1|com.stc.corba.any.UtilDelegate|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|[STC CORBA Extension]EE/SE Corba Util delegate loaded|#]
    [#|2006-08-22T17:57:33.730+0800|INFO|IS5.1|com.stc.corba.any.UtilDelegate|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|[STC CORBA Extension]Enabling SE Corba support|#]
    [#|2006-08-22T17:57:34.007+0800|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5082: Exception running j2ee services: [java.lang.RuntimeException: java.lang.ExceptionInInitializerError]|#]
    [#|2006-08-22T17:57:34.008+0800|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;stacktrace-id=0;|CORE5091: Error executing J2EE server ...
    java.lang.RuntimeException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:351)
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:754)
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:233)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:222)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: java.lang.RuntimeException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.ServerContextImpl.getMonitoringRegistry(ServerContextImpl.java:374)
         at com.sun.enterprise.iiop.ORBMonitoring.<init>(ORBMonitoring.java:48)
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:236)
         ... 9 more
    Caused by: java.lang.ExceptionInInitializerError
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at com.sun.enterprise.server.ServerContextImpl.getMonitoringRegistry(ServerContextImpl.java:368)
         ... 11 more
    Caused by: java.lang.NullPointerException: No MBeanServer was returned by the MBeanServerFactory
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.getMBeanServer(MonitoringRegistrationHelper.java:83)
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.<init>(MonitoringRegistrationHelper.java:60)
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.<clinit>(MonitoringRegistrationHelper.java:55)
         ... 14 more
    |#]
    [#|2006-08-22T17:57:34.012+0800|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5092: J2EE server reported following error: [java.lang.ExceptionInInitializerError] |#]
    [#|2006-08-22T17:57:34.012+0800|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5093: Error executing J2EE server |#]
    [#|2006-08-22T17:57:34.013+0800|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;stacktrace-id=1;|CORE5071: An error occured during initialization
    com.sun.appserv.server.ServerLifecycleException: com.sun.appserv.server.ServerLifecycleException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:235)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:222)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: com.sun.appserv.server.ServerLifecycleException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:763)
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:233)
         ... 7 more
    Caused by: java.lang.RuntimeException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:351)
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:754)
         ... 8 more
    Caused by: java.lang.RuntimeException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.ServerContextImpl.getMonitoringRegistry(ServerContextImpl.java:374)
         at com.sun.enterprise.iiop.ORBMonitoring.<init>(ORBMonitoring.java:48)
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:236)
         ... 9 more
    Caused by: java.lang.ExceptionInInitializerError
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at com.sun.enterprise.server.ServerContextImpl.getMonitoringRegistry(ServerContextImpl.java:368)
         ... 11 more
    Caused by: java.lang.NullPointerException: No MBeanServer was returned by the MBeanServerFactory
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.getMBeanServer(MonitoringRegistrationHelper.java:83)
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.<init>(MonitoringRegistrationHelper.java:60)
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.<clinit>(MonitoringRegistrationHelper.java:55)
         ... 14 more
    |#]
    [#|2006-08-22T17:57:34.023+0800|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Server Startup failed. Exiting...|#]
    [#|2006-08-22T17:57:34.023+0800|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Server shutdown in progress...|#]
    [#|2006-08-22T17:57:34.024+0800|INFO|IS5.1|javax.enterprise.system.container.web|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|WEB0303: Stopping Tomcat.|#]
    [#|2006-08-22T17:57:34.025+0800|WARNING|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;stacktrace-id=2;|CORE5061: Exception :
    com.sun.appserv.server.ServerLifecycleException: WEB0106: An error occurred while stopping the web container
         at com.sun.enterprise.web.PEWebContainer.stopInstance(PEWebContainer.java:536)
         at com.sun.enterprise.web.PEWebContainerLifecycle.onShutdown(PEWebContainerLifecycle.java:65)
         at com.sun.enterprise.server.ApplicationServer.onShutdown(ApplicationServer.java:400)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:255)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: LifecycleException: WEB0103: This web container has not yet been started
         at com.sun.enterprise.web.WebContainer.stop(WebContainer.java:529)
         at com.sun.enterprise.web.PEWebContainer.stopInstance(PEWebContainer.java:528)
         ... 9 more
    |#]
    Hopefully somebody can help me as I'm stuck with it for few days already. Thank you.

    This is what I got when I try to start the server from the directory logicalhost/is/domains/domain1/bin/
    ./startservAug 23, 2006 7:23:55 PM com.stc.is.util.pinger.HttpOKPinger <init>
    INFO: Setting URL to http://localhost:18000
    Aug 23, 2006 7:23:55 PM com.stc.is.util.pinger.HttpOKPinger isAlive
    INFO: Opening connection to http://localhost:18000
    Aug 23, 2006 7:23:55 PM com.stc.is.util.pinger.HttpOKPinger isAlive
    INFO: Connection to http://localhost:18000 opened successfully.
    Aug 23, 2006 7:23:55 PM com.stc.is.util.pinger.HttpOKPinger isAlive
    SEVERE: Connection refused
    java.net.ConnectException: Connection refused
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
    at sun.net.www.http.HttpClient.New(HttpClient.java:287)
    at sun.net.www.http.HttpClient.New(HttpClient.java:299)
    at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:792)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:744)
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:669)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:913)
    at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:367)
    at com.stc.is.util.pinger.HttpOKPinger.isAlive(Unknown Source)
    at com.stc.is.util.Ping.main(Unknown Source)
    Aug 23, 2006 7:23:55 PM com.stc.is.util.Ping main
    INFO: IS is not alive.
    Startup failed.
    any clue what is it about?

  • Im having major problems syncing my iphone 4 to itunes, this problem started after upgrading to ios 5. I have upgraded my itunes, turned sync by wifi on and off but still nothing. Everytime I try to sync my iphone it just says sync cancelled. Please help!

    Im having major problems syncing my iphone 4 to itunes, this problem started after upgrading to ios 5. I have upgraded my itunes, turned sync by wifi on and off but still nothing. Everytime I try to sync my iphone it just says sync cancelled. Please help.....

    I'm having the same problem ! Each time the sync starts it suddenly stops and says finished syncing

  • My phone battery can only last an hour. Problem started a week ago while I was in Argentina. I am back in the country now, this morning I left the house with a full battery and when I got to work the phone had shut down. Phone is 7 months old. Why?

    Dear Apple Family,
    I have been using an iPhone since I lost interest with Nokia phones. I fell in love with Apple's innovation, design and technology.  However, I am beginning to lose interest wth the product as well.
    I have an iPhone 5, my phone's battery can only last an hour and the phone is 7 month old.  The problem started last week while I was in Argentina. I had a bad holiday due to this, as I could not make use of the technology because my phone was off most of the time and I had nowehere to charge except to go back to the hotel.  I could not even share pictures on Instagram.  Has anyone ever experienced such a problem?  If so, why and how was the problem fixed?  I am starting to engage in a debate that I have been trying to avoid with my friends.  They say that Samsung is striving and I now tend to agree, and if the problem persists I will gladly join the Samsung family. They seem to make reliable phones.  Sadly, I never experienced this problem with iPhone 3GS & iPhone 4S.
    With Gratitude,
    Thapelo

    Hello,
    If you're in a country where there's an apple shop (unfortunately not mine), go check it and ask the employee about it: he's gonna check your Iphone on a "device"
    I've got an iphone 5 and it's working very well with me but I have to admit that its battery lasts (slower) than my Ipad 2.
    Still i can help with some tips that may improve your iohone's battery by an hour in addition (hopefully):
    - close all apps by multitasking....
    - do NOT keep the brightness to the max
    Believe me you're gonna regret changing your phone to a samsung
    Hope i've helped and sorry for my bad english (has english as 3rd language)

  • When I try to transfer songs to my ipod touch or my friends ipod nano in which both have manually managed music, I get error 13019 "Ipod cannot be synced".  This problem started to occur all of a sudden. Any ideas other than the resyncing?

    When I try to transfer songs to my ipod touch or my friends ipod nano, I get error 13019 "Ipod cannot be synced".  Everything was working fine and transferring successfully and then this problem started to occur all of a sudden. My music is managed manually and always has. I looked online for a solution and they all involve resyncing the library and unchecking voice memos. Is there a way to resolve this issue without having to resync my music or reinstall itunes?

    Have you powered off and then back on the router?
    Have you done anything to the router recently like changed a setting?
    Have you tried:
    - Resetting the iPod. Nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Resetting network settings: Settings>GeneralReset>Reset Network SettingsTo me the error sounds like a network/router problem vice aan iPod problem.

  • My wireless keyboard no longer connects with my iMac since changing the batteries. It now shows as not connected, not paired and not configured. A friend recently connected his iPad to the iMac and since then the problem started. Any ideas to resolve this

    My wireless keyboard no longer connects with my iMac since changing the batteries. It now shows as not connected, not paired and not configured. A friend recently connected his iPad to the iMac and since then the problem started. Any ideas to resolve this?

    a friend told me that he wants my os x cd for my macbook pro to upgrade his imac.
    The discs that come with your Mac are "machine specfic" and cannot be used on another Mac.

  • I am having problems with my outlook 2011. While i am able to check and SEND email on all my other devices ( Ipad, iphone, Macbook), I am unable to do so with my iMac. This problem started suddenly and the error message i get is error 5.7.8. Please Help

    I  am having problems with my outlook 2011. While i am able to check and SEND email on all my other devices ( Ipad, iphone, Macbook), I am unablesend any email with my iMac ( i can recieve email) . This problem started suddenly and the error message i get is error 5.7.8. I have read the threads on line and went into settings, even created a new profile, nothing helps...Please advice..is this something to do with my keychain Access?

    As Outlook is not an Apple product, you will find more helpers familiar with Outlook here:
    Office for Mac forums

  • Error code: MobileMe Services has encountered a problem and needs to close - I get this message everytime i open Outlook and it slows down opening?  This problem started when itunes updated

    Error code: MobileMe Services has encountered a problem and needs to close
    I get this mesage everytime i open Outlook and it slows down opening. This problem started when itunes updated. What do I do to solve this?

    Hi turingtest2 (you pass, BTW):  Thanks for the speedy reply.  MobileMe doesn't appear in the list of programs which can be uninstalled.  I tried the link you suggest: http://support.microsoft.com/mats/Program_Install_and_Uninstall but when I tried to "Run Now", I get the error message:  " Troubleshooting cannot continue because an error has occurred... etc.... [code 80072F8F]"  So googled this error & found a tool called (80072f8f) Repair Tool   -  I'm leery to download yet more stuff from non-microsoft sites -- any recommendations?

  • Problem starting weblogic server

    Can I use third party libraries with the evaluation copy of the weblogic
    server?
    I am having problems starting the weblogic server with third party
    libraries (i.e. oralce's sqlj's translator.zip, runtime.zip and
    classes2.zip). The following exception is thrown when the server is
    initialising:
    Can someone explain what is wrong please?
    Many thanks
    Gilbert Owusu
    15:17:10 GMT 2000:<I> <System Props> weblogic.system.home = C:\weblog
    ic
    Mon Jun 19 15:17:10 GMT 2000:<I> <WebLogicServer> Loaded License :
    C:/weblogic/l
    icense/WebLogicLicense.xml
    Mon Jun 19 15:17:10 GMT 2000:<I> <WebLogicServer> Server loading from
    weblogic.c
    lass.path. EJB redeployment enabled.
    java.lang.Exception: Problem with X509 certificate: fingerprint =
    5ebfaa56b17289
    3f050b19ae79d80547, not before = Fri Apr 28 22:03:47 GMT 2000, not after
    = Sun M
    ay 28 22:03:47 GMT 2000, holder = C=US SP=California L=San Francisco
    O=BEA WebLo
    gic CN=weblogic.beasys.com [email protected] , issuer = C=US
    SP=Califor
    nia L=San Francisco O=WebLogic OU=Security CN=Demo Certificate Authority
    Email=s
    [email protected] , key = modulus length=65 exponent length=3,
    java.lang.Exc
    eption: Certificate expired or not yet valid: fingerprint =
    5ebfaa56b172893f050b
    19ae79d80547, not before = Fri Apr 28 22:03:47 GMT 2000, not after = Sun
    May 28
    22:03:47 GMT 2000, holder = C=US SP=California L=San Francisco O=BEA
    WebLogic CN
    =weblogic.beasys.com [email protected] , issuer = C=US
    SP=California L=
    San Francisco O=WebLogic OU=Security CN=Demo Certificate Authority
    Email=securit
    [email protected] , key = modulus length=65 exponent length=3
    at
    weblogic.t3.srvr.SSLListenThread.insertIntoCAChain(SSLListenThread.ja
    va:206)
    at weblogic.t3.srvr.SSLListenThread.<init>(SSLListenThread.java,
    Compile
    d Code)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    at weblogic.NTServiceHelper.run(NTServiceHelper.java:19)
    at java.lang.Thread.run(Thread.java:479)
    Mon Jun 19 15:17:16 GMT 2000:<E> <SSLListenThread> Security
    Configuration Proble
    m with SSL server certificate file (C:\weblogic\myserver\democert.pem),
    java.lan
    g.Exception: Problem with X509 certificate: fingerprint =
    5ebfaa56b172893f050b19
    ae79d80547, not before = Fri Apr 28 22:03:47 GMT 2000, not after = Sun
    May 28 22
    :03:47 GMT 2000, holder = C=US SP=California L=San Francisco O=BEA
    WebLogic CN=w
    eblogic.beasys.com [email protected] , issuer = C=US
    SP=California L=Sa
    n Francisco O=WebLogic OU=Security CN=Demo Certificate Authority
    Email=security@
    weblogic.com , key = modulus length=65 exponent length=3,
    java.lang.Exception:
    Certificate expired or not yet valid: fingerprint =
    5ebfaa56b172893f050b19ae79d8
    0547, not before = Fri Apr 28 22:03:47 GMT 2000, not after = Sun May 28
    22:03:47
    GMT 2000, holder = C=US SP=California L=San Francisco O=BEA WebLogic
    CN=weblogi
    c.beasys.com [email protected] , issuer = C=US SP=California
    L=San Fran
    cisco O=WebLogic OU=Security CN=Demo Certificate Authority
    Email=security@weblog
    ic.com , key = modulus length=65 exponent length=3
    Mon Jun 19 15:17:17 GMT 2000:<I> <Security> Not listening for SSL:
    java.io.IOExc
    eption: Security Configuration Problem with SSL server certificate file
    (C:\webl
    ogic\myserver\democert.pem), java.lang.Exception: Problem with X509
    certificate:
    fingerprint = 5ebfaa56b172893f050b19ae79d80547, not before = Fri Apr 28
    22:03:4
    7 GMT 2000, not after = Sun May 28 22:03:47 GMT 2000, holder = C=US
    SP=Californi
    a L=San Francisco O=BEA WebLogic CN=weblogic.beasys.com
    [email protected]
    om , issuer = C=US SP=California L=San Francisco O=WebLogic OU=Security
    CN=Demo
    Certificate Authority [email protected] , key = modulus
    length=65 exp
    onent length=3, java.lang.Exception: Certificate expired or not yet
    valid: finge
    rprint = 5ebfaa56b172893f050b19ae79d80547, not before = Fri Apr 28
    22:03:47 GMT
    2000, not after = Sun May 28 22:03:47 GMT 2000, holder = C=US
    SP=California L=Sa
    n Francisco O=BEA WebLogic CN=weblogic.beasys.com
    [email protected] , i
    ssuer = C=US SP=California L=San Francisco O=WebLogic OU=Security
    CN=Demo Certif
    icate Authority [email protected] , key = modulus length=65
    exponent
    length=3
    Mon Jun 19 15:17:19 GMT 2000:<I> <WebLogicServer> Invoking main-style
    startup we
    blogic.jdbc.common.internal.JdbcStartup
    weblogic.jdbc.common.internal.JdbcStartu
    p
    Mon Jun 19 15:17:19 GMT 2000:<I> <JMS> Beginning startup process
    Mon Jun 19 15:17:19 GMT 2000:<I> <JMS> Init JMS Security
    Mon Jun 19 15:17:20 GMT 2000:<I> <JMS> Initializing from
    weblogic.properties
    Mon Jun 19 15:17:20 GMT 2000:<I> <JMS> Startup process complete. JMS is
    active
    Mon Jun 19 15:17:20 GMT 2000:<I> <JMS> Bound SessionPoolManager as
    weblogic.jms.
    SessionPoolManager
    Mon Jun 19 15:17:20 GMT 2000:<I> <JMS> Bound ConnectionConsumerManager
    as weblog
    ic.jms.ConnectionConsumerManager
    Mon Jun 19 15:17:21 GMT 2000:<I> <WebLogicServer> Invoking main-style
    startup RM
    I Registry weblogic.rmi.internal.RegistryImpl
    Mon Jun 19 15:17:21 GMT 2000:<I> <RMI> Registry started
    Mon Jun 19 15:17:21 GMT 2000:<I> <EJB> Enterprise JavaBeans initializing
    The WebLogic Server did not start up properly.
    Exception raised: java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException:
    java.lang.NoClassDefFoundError: sql
    j/runtime/ConnectionContext
    at java.lang.ClassLoader.resolveClass0(Native Method)
    at java.lang.ClassLoader.resolveClass(ClassLoader.java:545)
    at
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(Generi
    cClassLoader.java, Compiled Code)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:172)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:146)
    at
    weblogic.ejb.internal.EJBJarLoader.loadClass(EJBJarLoader.java:95)
    at
    weblogic.ejb.internal.EJBHomeImpl.loadClass(EJBHomeImpl.java:617)
    at weblogic.ejb.internal.EJBHomeImpl.setup(EJBHomeImpl.java:533)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.setupBeanHome(EJBDeploymentIm
    pl.java:576)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.deployBeans(EJBDeploymentImpl
    .java, Compiled Code)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.deploy(EJBDeploymentImpl.java
    :335)
    at
    weblogic.ejb.internal.EJBJarDeployment.deploy(EJBJarDeployment.java:2
    31)
    at
    weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java, Comp
    iled Code)
    at
    weblogic.ejb.internal.EJBManagerImpl.deployNew(EJBManagerImpl.java:35
    2)
    at
    weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java:319)
    at
    weblogic.ejb.internal.EJBManagerImpl.deployBeans(EJBManagerImpl.java,
    Compiled Code)
    at
    weblogic.ejb.internal.EJBManagerImpl.<init>(EJBManagerImpl.java:242)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    at weblogic.NTServiceHelper.run(NTServiceHelper.java:19)
    at java.lang.Thread.run(Thread.java:479)
    java.lang.NoClassDefFoundError: sqlj/runtime/ConnectionContext
    at java.lang.ClassLoader.resolveClass0(Native Method)
    at java.lang.ClassLoader.resolveClass(ClassLoader.java:545)
    at
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(Generi
    cClassLoader.java, Compiled Code)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:172)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:146)
    at
    weblogic.ejb.internal.EJBJarLoader.loadClass(EJBJarLoader.java:95)
    at
    weblogic.ejb.internal.EJBHomeImpl.loadClass(EJBHomeImpl.java:617)
    at weblogic.ejb.internal.EJBHomeImpl.setup(EJBHomeImpl.java:533)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.setupBeanHome(EJBDeploymentIm
    pl.java:576)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.deployBeans(EJBDeploymentImpl
    .java, Compiled Code)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.deploy(EJBDeploymentImpl.java
    :335)
    at
    weblogic.ejb.internal.EJBJarDeployment.deploy(EJBJarDeployment.java:2
    31)
    at
    weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java, Comp
    iled Code)
    at
    weblogic.ejb.internal.EJBManagerImpl.deployNew(EJBManagerImpl.java:35
    2)
    at
    weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java:319)
    at
    weblogic.ejb.internal.EJBManagerImpl.deployBeans(EJBManagerImpl.java,
    Compiled Code)
    at
    weblogic.ejb.internal.EJBManagerImpl.<init>(EJBManagerImpl.java:242)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    at weblogic.NTServiceHelper.run(NTServiceHelper.java:19)
    at java.lang.Thread.run(Thread.java:479)
    WebLogic Server terminated with an abnormal condition of 1
    Hit return to continue...>>>>>>>>>

    It appears that you have two different problems:
    1 -- you are using an expired certificate. You should download the
    latest version of the evaluation to get a new certificate.
    2 -- you should check out the documentation on using the
    Weblogic.class.path. That is where you should put all of your user
    classes including those that you get from Oracle.
    Thanks,
    Michael
    G Owusu wrote:
    >
    Can I use third party libraries with the evaluation copy of the weblogic
    server?
    I am having problems starting the weblogic server with third party
    libraries (i.e. oralce's sqlj's translator.zip, runtime.zip and
    classes2.zip). The following exception is thrown when the server is
    initialising:
    Can someone explain what is wrong please?
    Many thanks
    Gilbert Owusu
    15:17:10 GMT 2000:<I> <System Props> weblogic.system.home = C:\weblog
    ic
    Mon Jun 19 15:17:10 GMT 2000:<I> <WebLogicServer> Loaded License :
    C:/weblogic/l
    icense/WebLogicLicense.xml
    Mon Jun 19 15:17:10 GMT 2000:<I> <WebLogicServer> Server loading from
    weblogic.c
    lass.path. EJB redeployment enabled.
    java.lang.Exception: Problem with X509 certificate: fingerprint =
    5ebfaa56b17289
    3f050b19ae79d80547, not before = Fri Apr 28 22:03:47 GMT 2000, not after
    = Sun M
    ay 28 22:03:47 GMT 2000, holder = C=US SP=California L=San Francisco
    O=BEA WebLo
    gic CN=weblogic.beasys.com [email protected] , issuer = C=US
    SP=Califor
    nia L=San Francisco O=WebLogic OU=Security CN=Demo Certificate Authority
    Email=s
    [email protected] , key = modulus length=65 exponent length=3,
    java.lang.Exc
    eption: Certificate expired or not yet valid: fingerprint =
    5ebfaa56b172893f050b
    19ae79d80547, not before = Fri Apr 28 22:03:47 GMT 2000, not after = Sun
    May 28
    22:03:47 GMT 2000, holder = C=US SP=California L=San Francisco O=BEA
    WebLogic CN
    =weblogic.beasys.com [email protected] , issuer = C=US
    SP=California L=
    San Francisco O=WebLogic OU=Security CN=Demo Certificate Authority
    Email=securit
    [email protected] , key = modulus length=65 exponent length=3
    at
    weblogic.t3.srvr.SSLListenThread.insertIntoCAChain(SSLListenThread.ja
    va:206)
    at weblogic.t3.srvr.SSLListenThread.<init>(SSLListenThread.java,
    Compile
    d Code)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    at weblogic.NTServiceHelper.run(NTServiceHelper.java:19)
    at java.lang.Thread.run(Thread.java:479)
    Mon Jun 19 15:17:16 GMT 2000:<E> <SSLListenThread> Security
    Configuration Proble
    m with SSL server certificate file (C:\weblogic\myserver\democert.pem),
    java.lan
    g.Exception: Problem with X509 certificate: fingerprint =
    5ebfaa56b172893f050b19
    ae79d80547, not before = Fri Apr 28 22:03:47 GMT 2000, not after = Sun
    May 28 22
    :03:47 GMT 2000, holder = C=US SP=California L=San Francisco O=BEA
    WebLogic CN=w
    eblogic.beasys.com [email protected] , issuer = C=US
    SP=California L=Sa
    n Francisco O=WebLogic OU=Security CN=Demo Certificate Authority
    Email=security@
    weblogic.com , key = modulus length=65 exponent length=3,
    java.lang.Exception:
    Certificate expired or not yet valid: fingerprint =
    5ebfaa56b172893f050b19ae79d8
    0547, not before = Fri Apr 28 22:03:47 GMT 2000, not after = Sun May 28
    22:03:47
    GMT 2000, holder = C=US SP=California L=San Francisco O=BEA WebLogic
    CN=weblogi
    c.beasys.com [email protected] , issuer = C=US SP=California
    L=San Fran
    cisco O=WebLogic OU=Security CN=Demo Certificate Authority
    Email=security@weblog
    ic.com , key = modulus length=65 exponent length=3
    Mon Jun 19 15:17:17 GMT 2000:<I> <Security> Not listening for SSL:
    java.io.IOExc
    eption: Security Configuration Problem with SSL server certificate file
    (C:\webl
    ogic\myserver\democert.pem), java.lang.Exception: Problem with X509
    certificate:
    fingerprint = 5ebfaa56b172893f050b19ae79d80547, not before = Fri Apr 28
    22:03:4
    7 GMT 2000, not after = Sun May 28 22:03:47 GMT 2000, holder = C=US
    SP=Californi
    a L=San Francisco O=BEA WebLogic CN=weblogic.beasys.com
    [email protected]
    om , issuer = C=US SP=California L=San Francisco O=WebLogic OU=Security
    CN=Demo
    Certificate Authority [email protected] , key = modulus
    length=65 exp
    onent length=3, java.lang.Exception: Certificate expired or not yet
    valid: finge
    rprint = 5ebfaa56b172893f050b19ae79d80547, not before = Fri Apr 28
    22:03:47 GMT
    2000, not after = Sun May 28 22:03:47 GMT 2000, holder = C=US
    SP=California L=Sa
    n Francisco O=BEA WebLogic CN=weblogic.beasys.com
    [email protected] , i
    ssuer = C=US SP=California L=San Francisco O=WebLogic OU=Security
    CN=Demo Certif
    icate Authority [email protected] , key = modulus length=65
    exponent
    length=3
    Mon Jun 19 15:17:19 GMT 2000:<I> <WebLogicServer> Invoking main-style
    startup we
    blogic.jdbc.common.internal.JdbcStartup
    weblogic.jdbc.common.internal.JdbcStartu
    p
    Mon Jun 19 15:17:19 GMT 2000:<I> <JMS> Beginning startup process
    Mon Jun 19 15:17:19 GMT 2000:<I> <JMS> Init JMS Security
    Mon Jun 19 15:17:20 GMT 2000:<I> <JMS> Initializing from
    weblogic.properties
    Mon Jun 19 15:17:20 GMT 2000:<I> <JMS> Startup process complete. JMS is
    active
    Mon Jun 19 15:17:20 GMT 2000:<I> <JMS> Bound SessionPoolManager as
    weblogic.jms.
    SessionPoolManager
    Mon Jun 19 15:17:20 GMT 2000:<I> <JMS> Bound ConnectionConsumerManager
    as weblog
    ic.jms.ConnectionConsumerManager
    Mon Jun 19 15:17:21 GMT 2000:<I> <WebLogicServer> Invoking main-style
    startup RM
    I Registry weblogic.rmi.internal.RegistryImpl
    Mon Jun 19 15:17:21 GMT 2000:<I> <RMI> Registry started
    Mon Jun 19 15:17:21 GMT 2000:<I> <EJB> Enterprise JavaBeans initializing
    The WebLogic Server did not start up properly.
    Exception raised: java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException:
    java.lang.NoClassDefFoundError: sql
    j/runtime/ConnectionContext
    at java.lang.ClassLoader.resolveClass0(Native Method)
    at java.lang.ClassLoader.resolveClass(ClassLoader.java:545)
    at
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(Generi
    cClassLoader.java, Compiled Code)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:172)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:146)
    at
    weblogic.ejb.internal.EJBJarLoader.loadClass(EJBJarLoader.java:95)
    at
    weblogic.ejb.internal.EJBHomeImpl.loadClass(EJBHomeImpl.java:617)
    at weblogic.ejb.internal.EJBHomeImpl.setup(EJBHomeImpl.java:533)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.setupBeanHome(EJBDeploymentIm
    pl.java:576)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.deployBeans(EJBDeploymentImpl
    .java, Compiled Code)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.deploy(EJBDeploymentImpl.java
    :335)
    at
    weblogic.ejb.internal.EJBJarDeployment.deploy(EJBJarDeployment.java:2
    31)
    at
    weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java, Comp
    iled Code)
    at
    weblogic.ejb.internal.EJBManagerImpl.deployNew(EJBManagerImpl.java:35
    2)
    at
    weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java:319)
    at
    weblogic.ejb.internal.EJBManagerImpl.deployBeans(EJBManagerImpl.java,
    Compiled Code)
    at
    weblogic.ejb.internal.EJBManagerImpl.<init>(EJBManagerImpl.java:242)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    at weblogic.NTServiceHelper.run(NTServiceHelper.java:19)
    at java.lang.Thread.run(Thread.java:479)
    java.lang.NoClassDefFoundError: sqlj/runtime/ConnectionContext
    at java.lang.ClassLoader.resolveClass0(Native Method)
    at java.lang.ClassLoader.resolveClass(ClassLoader.java:545)
    at
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(Generi
    cClassLoader.java, Compiled Code)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:172)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:146)
    at
    weblogic.ejb.internal.EJBJarLoader.loadClass(EJBJarLoader.java:95)
    at
    weblogic.ejb.internal.EJBHomeImpl.loadClass(EJBHomeImpl.java:617)
    at weblogic.ejb.internal.EJBHomeImpl.setup(EJBHomeImpl.java:533)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.setupBeanHome(EJBDeploymentIm
    pl.java:576)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.deployBeans(EJBDeploymentImpl
    .java, Compiled Code)
    at
    weblogic.ejb.internal.EJBDeploymentImpl.deploy(EJBDeploymentImpl.java
    :335)
    at
    weblogic.ejb.internal.EJBJarDeployment.deploy(EJBJarDeployment.java:2
    31)
    at
    weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java, Comp
    iled Code)
    at
    weblogic.ejb.internal.EJBManagerImpl.deployNew(EJBManagerImpl.java:35
    2)
    at
    weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java:319)
    at
    weblogic.ejb.internal.EJBManagerImpl.deployBeans(EJBManagerImpl.java,
    Compiled Code)
    at
    weblogic.ejb.internal.EJBManagerImpl.<init>(EJBManagerImpl.java:242)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    at weblogic.NTServiceHelper.run(NTServiceHelper.java:19)
    at java.lang.Thread.run(Thread.java:479)
    WebLogic Server terminated with an abnormal condition of 1
    Hit return to continue...>>>>>>>>>

Maybe you are looking for

  • Query related to RSA3 transaction

    Hi Guys ,          I have query related to RSA3 transaction screen in that you can see in settings Data Records / Calls = 100 Display Extr. Calls    = 10  by default . can this value can be made to 1000 and 1000 as a default value as soon as screen g

  • Tables selection for out put

    Hi All, I have some problem in line items dispaly . In my report i am selecting data from BSAS and BSIS tables using some radiobuttons. but in my specification mentioned BSID-fields ,line Items as reference fields to be dispalyed. means i am taking d

  • Is the content of a called VI copied to a calling VI?

    Assume that I want to call "A" in "B". A is 1MB in size. If B calls A twice, does B gain extra 1MB compared to when B calls A once? I want to know if B just needs a few bytes to call A onc more time or if the content of A is copied to B each time A i

  • I have a macbook pro retina display and a gaming mouse and i can't play with it

    I have this gaming mouse not an apple mouse and when i try to play with the mouse i don't move but i can walk with the WASD but with the mouse i can't move and i've had trouble for a while and i really want to know how to fix this can anyone help me,

  • Forms runtime window fails to open successfully

    Hi all, I have a user who cannot seem to get her Forms window to open correctly. She logs into Oracle. Selects the responsibility, selects the form she needs to open. The middle window opens and the Forms Runtime window opens. However this Forms wind