Console hanging when press a button

I just installed the trial version of weblogic 5.1 on redhat linux 7 with
sun jdk1.3
After making the changes described in the installation guide I can run the
server and connect to it with the console.
The console is able to navigate around the server and see stuff like what
ejb's are deployed but any time I press a button that has an ellipses (eg
"Shutdown Server..." or "New Deployment...") the console hangs.
This does not happen when I press other buttons (eg "Disconnect" or "Garbage
Collect").
I could not see this problem in the newsgroup or on the web site, so if
anybody can tell me how to solve it I would be very grateful.
Thanks,
Barry.

Hi --
Sounds like a GUI (swing?) problem of some kind. Consider using the
Admin Servlets to see the same information. The console isn't really
a necessary part of Administering the server.
Also, the console is gone in 6.0... it's replaced with a web-based
configuration tool -- much better.
Cheers,
-jg
Barry Dunne wrote:
>
I just installed the trial version of weblogic 5.1 on redhat linux 7 with
sun jdk1.3
After making the changes described in the installation guide I can run the
server and connect to it with the console.
The console is able to navigate around the server and see stuff like what
ejb's are deployed but any time I press a button that has an ellipses (eg
"Shutdown Server..." or "New Deployment...") the console hangs.
This does not happen when I press other buttons (eg "Disconnect" or "Garbage
Collect").
I could not see this problem in the newsgroup or on the web site, so if
anybody can tell me how to solve it I would be very grateful.
Thanks,
Barry.

Similar Messages

  • HT4211 My i pad hang on with information of icloud back up with informtion of "this ipad hasn't been backed up in three weeks. backups happen when this pad is plugged in, locked and connected to wifi"  and doesn't close when press ok button. I am not able

    My i pad hang on with information of icloud back up with informtion of "this ipad hasn't been backed up in three weeks. backups happen when this pad is plugged in, locked and connected to wifi"  and doesn't close when press ok button and still hangon. I am not able to switched off also. How to remove popoup note and entering into ipad applications.

    Hold down the sleep and home keys for about 20 seconds or so and see if it reboots.

  • My mini ipod appears off and not respond to any commands when pressed the buttons to reset, apple logo appeared and then the apple support site and it shuts down. already tried all the steps, but none worked, and when I plug it into my computer it does no

    My mini ipod appears off and not respond to any commands when pressed the buttons to reset, apple logo appeared and then the apple support site and it shuts down. already tried all the steps, but none worked, and when I plug it into my computer it does not appear in the iTunes bar. what do I do?

    If MacKeeper corrupted the Recovery partition then even I underestimated its potential for damage. Garbage "cleaning" apps will cause misery but I have not found that the Recovery partition to have been affected by using MacKeeper or anything like it. I doubt that it did so, but I have learned not to underestimate the potential for such things to result in system corruption.
    Before concluding your Mac has a hardware failure, try booting OS X Internet Recovery by holding command option r on startup (three fingers). That will force your iMac to bypass the Recovery partition altogether, and convey the ability to create a new one.
    An Internet connection will be required (wired or wireless).
    At the Mac OS X Utilities screen, select Disk Utility. Select your startup volume (usually named "Macintosh HD") and click the Repair Disk button. Describe any errors it reports in red. If Disk Utility reports "The volume Macintosh HD appears to be OK" in green then you can be reasonably (though not completely) assured your hard disk is in good working order.
    Assuming the HD remains usable you can then use Disk Utility to erase it. Reinstall OS X, restore your essential software and other files, and don't reinstall the junk.

  • How to when press the button and can change the value in the table?

    this is my code so far with a table and a button..how can i make it when press the button and the data in table change..
    * SimpleTableDemo.java is a 1.4 application that requires no other files.
    import java.awt.BorderLayout;
    import java.awt.Button;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    public class SimpleTableDemo extends JPanel {
    private boolean DEBUG = false;
    private JPanel button;
    private JButton enter;
    public SimpleTableDemo() {
    super(new BorderLayout());
    //button.setBackground(Color.pink);
    //setForeground(Color.pink);
    String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    Object[][] data = {
    {"Mary", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Knitting", new Integer(2), new Boolean(false)},
    {"Sharon", "Zakhour",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Philip", "Milne",
    "Pool", new Integer(10), new Boolean(false)}
    final JTable table = new JTable(data, columnNames);
    table.setPreferredScrollableViewportSize(new Dimension(500, 70));
    if (DEBUG) {
    table.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    printDebugData(table);
    //Create the scroll pane and add the table to it.
    JScrollPane scrollPane = new JScrollPane(table);
    enter = new JButton("Press me");
    //Add the scroll pane to this panel.
    buildButton();
    add(scrollPane, BorderLayout.NORTH);
    add(button, BorderLayout.CENTER);
    private void buildButton(){
    button = new JPanel();
    button.add(enter);
    private void printDebugData(JTable table) {
    int numRows = table.getRowCount();
    int numCols = table.getColumnCount();
    javax.swing.table.TableModel model = table.getModel();
    System.out.println("Value of data: ");
    for (int i=0; i < numRows; i++) {
    System.out.print(" row " + i + ":");
    for (int j=0; j < numCols; j++) {
    System.out.print(" " + model.getValueAt(i, j));
    System.out.println();
    System.out.println("--------------------------");
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    JFrame frame = new JFrame("SimpleTableDemo");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Create and set up the content pane.
    SimpleTableDemo newContentPane = new SimpleTableDemo();
    newContentPane.setOpaque(true); //content panes must be opaque
    frame.setContentPane(newContentPane);
    //Display the window.
    frame.pack();
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    Cross-post:
    http://forum.java.sun.com/thread.jspa?threadID=676105

  • Malfunctioning printer call to DLBAPRP,DLL FOR DELL PRINTER A940, ERROR 126. This error occurs when pressing properties button. Is there a patch to fix this?

    This error does not occur with any of my other programs employing this printer when pressing properties button. The complete error message I get is as follows:
    '''DELL PRINTER A940 PROPERTIES'''
    Function address 0x0 caused a protection fault (exception code 0xc0000005). The application property sheet page(s) may not function properly.
    |OK|

    Perform the suggestions mentioned in the following articles:
    * [[Firefox prints incorrectly#w_reset-firefox-printer-setting|Reset Firefox Printer Setting]]
    * http://kb.mozillazine.org/Problems_printing_web_pages
    Check and tell if its working.

  • Macbook pro not opening when press power button

    my mac book pro not opening when press power button even battery is full.

    I already tried with the Battery in and without but no luck. I'm sure it's not that kind of problem unfortunally

  • Submiting requests when pressing a button.

    I have a button that when pressed should fire an HTMLDB After Submit process and just after the process has finished, it should trigger a javaScript function to call a pop-up page.I've tried to do that in three different ways:
    1)Using the button optional URL redirect, and as the URL target I send first the request to run the After submit process and then the request to open the pop-up window.
    The problem with that solution is that the pop-up window opens before the
    process is completed, which is an inconvinience for me.
    2)Running the After submit process when pressing the button and running an after processing braching to call the javaScript function. It didn't work as HTMLDB redirect the application to an error page saying that no branch is specified...
    3)Inside the After submit process after a call to a procedure that resolves the logic of the process I've tried to call the pop-up using webtoolkit's tag htp.p as follows:
    htp.init;
    htp.p('<script language = "javascript">');
    htp.p('callMyPopup2("480",'+l_aux+');');
    htp.p('alert("entre");');
    htp.p('</script>');
    But it didn't work neither.
    The HTMLDB version I'm using is 1.5.0.00.33. Is there a way to accomplish that when pressing a button a process is ran and just after its execution is finished call a javascript function that opens a pop-up page?
    Thanks in advance.
    Best Regards.
    Larissa.

    Vikas,
    The question is interesting. I remember trying something similar without success and would be interested in an answer. I could imagine the following situation:
    1. I start a process that runs a procedure which fills in a table with values
    2. after the process is completed a pop-up window opens and runs a report on that table...
    This could be practical since a user that started the procedure doesn't have to wait for it to complete in order to click another button to see the result. This is just one possible example.
    Denes Kubicek

  • Acrobat 9 (CS4) Freezes when pressing 'Print' button

    Hi all,
    I am having a problem with Acrobat Pro 9.0.0 in that when I go to print (with any setting/printer etc) selected, the dialog freezes after pressing the 'Print' button. Therefore I must force-quit to start Acrobat again.
    I have tried trashing the preferences, removing Acrobat 9 altogether & re-installing and nothing seems to be helping.
    I have also tried all sorts of different PDF files both created by myself as well as random PDF's from elsewhere.
    What also seems to happen is that the blue 'Print' button pulses while waiting to be pressed and then when pressed goes blue and stops pulsing and that is where it stays frozen.
    Please let me know if you need any more information or details of the configuration I am using.
    ps. I have Acrobat Professional 8.1.3 also installed which works fine including printing.
    Regards,
    Ross

    Hi Mike,
    I do have some startup items;
    EyeTV Helper
    AdobeResourcesSynchroni
    I Love Stars
    GrowlHelperApp
    NikePlusUtil
    EEvent Manager
    EPSON Scanner Monitor
    I don't have any haxies on anything.
    I made a new user account and tried to replicate the problem but it seems to work fine when logged in as a different user which leads me to think it is a preference in my current user>library
    Ross

  • How to enable the InputField when press the Button

    My sceanrio is by default the InputField is in disable .when ever i press the button it should enable.

    Here is the sample code for HTMLB :
    <hbj:inputField
        id="InputText"
        jsObjectNeeded="true"
        type="string"
        maxlength="30"
        value="Text" >
    <% String text = myContext.getParamIdForComponent(create_group); %>
    <SCRIPT> var jsText = '<%=text%>'; </SCRIPT>
    </hbj:inputField>
    <hbj:button id="Enable_Button"
           text="Enable"
           tooltip="Enable InputField"
           onClick="onEnableClick"
           onClientClick="enableInputField()"
           width="30px" >
    </hbj:button>
    </hbj:page>
    </hbj:content>
    <script language="javascript">
         function enableInputField()
              var funcName = htmlb_formid+"_getHtmlbElementId";
              func = window[funcName];
              var inputfield = eval(jsText);
                                    inputfield.setEnabled();
    </script>
    Refer to the following links for more info...
    http://help.sap.com/saphelp_nw04/helpdata/en/53/9d0e41a346ef6fe10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/43/067941a51a1a09e10000000a155106/content.htm
    Regards,
    Rajiv

  • How to suppress the showing up of the menu when press soft buttons...

    I'm writing a game with fullscreen mode. When I press soft buttons in fullscreen mode, the menu shows up. How can i suppress it when i press the soft buttons for my own executions.
    I have tested a game on Nokia 6600.

    U missed understand my mine.
    I want to suppress the system menu when i press soft buttons in fullscreen mode. I want to execute my own codes when i press soft buttons.
    thanks

  • How to invoke plsql block when press a button

    new to htmldb,
    let's say i have a form with some items , after i press a button, i want to invoke a plsql block, how can i do that?
    Cheers,

    I have only played a bit with this. I had a region with search criteria’s and a region based on a procedure. I created a page button on the first region that branched to the same page. When I press the button the page is refreshed and the procedure is re-executed with what ever search criteria’s the user has keyed in. That is as far as I have come :-)

  • DPM Console hangs when adding servers by Modify Protection Group

    Hi Guys,
    I hope you can help
    I've created several protection groups and need to add a couple more servers to each, but I'm having issues where the DPM console hangs. This is what I'm doing:
    Under Protection:
    Right Click the Protection Group and select: Modify protection group...
    Under "Select Group Members" - expand the server and select it's volume or SQL DB, etc and click Next
    Under "Select Data Protection Method", I click Next
    Now the MMC stops working. There are no error messages, no unresponsive notifications, it just doesn't do anything.
    I can't click Back, Next, Cancel, Help or change any of the other options on this page.
    I left it once and went to bed, when I came back 12 hours later, nothing had changed.
    I have to open task manager and force close the MMC and reopen but I'm unable to add any additional servers. I can create new Protection Groups but would rather avoid this.
    For reference
    OS: Server 2012 R2 64bit
    DPM: 2012 R2 UR4
    The issue occurs using local console over RDP or via the client console on Windows 7
    Does anyone have an idea how I can get around this issue?
    Thanks
    Ryan

    After further playing - It's not isolated to adding servers. I actually can't continue past the "Select Data Protection Method" page even if I don't change anything in terms of the selection lists.
    Anyone else having issues or know what the problem is?

  • Error when pressing the buttons in ALV

    Hi all,
    I have written a report using ALV by using FM REUSE_ALV_GRID_DISPLAY
    layout-coltab_fieldname = 'FARBE'.
    layout-f2code = 'DISPLAY'.
    layout-zebra = 'X'.
    layout-box_fieldname = 'BOX'.
    event_exit-ucomm = '&XP1'.
    event_exit-before = 'X'.
    APPEND event_exit.
    variant-report = repid.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
         EXPORTING
              I_INTERFACE_CHECK  = check_flag      
              I_CALLBACK_PROGRAM = repid
              I_STRUCTURE_NAME    = 'ITAB'
              is_layout             = layout
              it_fieldcat           = fieldcat
              it_excluding          = excluding
              it_special_groups     = gruppen[]
              it_sort               = sorttab[]
              it_filter             = filttab[]
              i_save                = 'X'
              is_variant            = variant
              it_events             = events[]
           TABLES
               T_OUTTAB             = ITAB
           EXCEPTIONS
               program_error        = 1
               OTHERS               = 2.
    The ALV grid is shown successfully after executing the program. But when I press the button like 'Print Preview', 'SpreadSheet' which are provided by the ALV. I got the following error:
    Assignment error: Overwriting a protected field.
    What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLSLVC_FULLSCREEN" had to be terminated because one of the statements could not be executed.
    This is probably due to an error in the ABAP program.
    Any one has idea how to solve it? Thanks!

    Gundam,
    I feel the problem is in line in BOLD.
    excluding[] must be an Internal Table.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_INTERFACE_CHECK = check_flag
    I_CALLBACK_PROGRAM = repid
    I_STRUCTURE_NAME = 'ITAB'
    is_layout = layout
    it_fieldcat = fieldcat
    <b>it_excluding = excluding[ ]</b>
    it_special_groups = gruppen[]
    it_sort = sorttab[]
    it_filter = filttab[]
    i_save = 'X'
    is_variant = variant
    it_events = events[]
    TABLES
    T_OUTTAB = ITAB
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    Please have a check and let me know.
    Thanks
    Kam

  • Error in any ServiceImpl when pressing save button

    In our application after pressing the save button we are getting the following error on screen:
    "com.nbd.demeter.model.service.AbonnementenServiceImpl".
    This error can occur in any screen (any ServiceImpl). We do not get this error every time when the save button is pressed, but it happens more and more.
    This problem blocking normal use of the application.
    The first time this happened was after installing a new EAR-file, but untill now we are not able to determine what causes it.
    Anyone got an idea??

    Can you tell us what the OC4J log says? There must be more logging if you got such an error. Perhaps you should try to enable ADF BC logging by setting -Djbo.debugoutput=true as run parameter (tools - properties - Run/Debug - Edit - Launch Settings - Java Options).
    Regards,
    Evert-Jan de Bruin
    JHeadstart Team

  • Console hanging when doing LDAP query

    Hi,
    I am able to connect to a test LDAP server (that has 10 users) from WLS and am
    able to see the users in Web interface of the Console under Security>realms>myRealm>users.
    This works as desired. No problem.
    But when I try to connect to an LDAP server that has 1900 users the console hangs
    up and eventually times out. The query strings are all fine because I verified
    them using an external LDAP browser.
    I checked in MyTestServer>Monitoring>Performance and it is using only 25% of the
    memory. So it is not a memory issue. Then I set the logging threshold to 'info'
    but there are no special messages.
    Now I am wondering where else should I look for to fix this. It works fine when
    there are small number of users. But when there are large number of users, WebLogic
    just hangs...
    Thanks,
    Dan

    WLS build from BEA comes with SP1. This is what I am using at the moment. So I
    am not sure what SP1 are you referring to!
    The SP1 for Platform is yet to be released though. But this is more of a server
    issue (I think). Also, I looked up in the 'known bugs' section. This is not listed
    in there...
    * Do you know what exactly is causing this problem?
    * Is there a work around?
    -Dan
    "Noah Campbell" <[email protected]> wrote:
    >
    This is a known issue. Supposedly a fix is scheduled for Service Pack
    1.
    "Dan Backman" <[email protected]> wrote:
    BTW, I am using WLS 8.1 (platform) server. I tried with 250 users in
    the LDAP server
    and the WL Admin console still hangs when trying to access MyTestServer>Security>Myrealm>users.
    -Dan
    "Dan Backman" <[email protected]> wrote:
    Hi,
    I am able to connect to a test LDAP server (that has 10 users) fromWLS
    and am
    able to see the users in Web interface of the Console under Security>realms>myRealm>users.
    This works as desired. No problem.
    But when I try to connect to an LDAP server that has 1900 users the
    console hangs
    up and eventually times out. The query strings are all fine becauseI
    verified
    them using an external LDAP browser.
    I checked in MyTestServer>Monitoring>Performance and it is using only
    25% of the
    memory. So it is not a memory issue. Then I set the logging threshold
    to 'info'
    but there are no special messages.
    Now I am wondering where else should I look for to fix this. It works
    fine when
    there are small number of users. But when there are large number ofusers,
    WebLogic
    just hangs...
    Thanks,
    Dan

Maybe you are looking for

  • Crystal Report 10 crashes in Windows 2010 Server Enterprise

    Dear All, I have a web application created on Windows Framework 1.1 with crystal Reports 10. It works fine with Windows 2003 Server Enterprise , Windows XP , Windows 2008 Server Standard Edition but fails surprisingly on WIndows 2008 Enterprise. I co

  • Help please - how can i change a file extension at run time

    hi all i have a question about file created on the run. for instance, if i need to create a file initially with a an extension of '.in'. and there are some processes writing data to it, and after the file is written. i need to change it to some thing

  • Business service and party

    business systems are logical names to technical systems what are business service and party explain with simple example.

  • 9.1 update - and EXS24 can't find my samples anymore

    Everything was great under 9.0.2. I have a "Samples" folder on a drive, with an alias to it in Application Support/Logic/Sampler Instruments. Worked great. Installed 9.1. Now, when trying to load an EXS sample from that library, I get: "EXS24 Instrum

  • Want to debar to end user to create STO if Receiving Plant/WH has Stock

    Dear Friends, My Client Business Process:- STO is generated at Head Office on reference of PR. On basis of STO Mother Warhouse Incharge do GI to Regional Warehouse. My Client requirment is if Minimum Stock at Regional Warehouse is Rs50,000/-(Receivin