1 2 Previous Next 24 Replies Latest reply on Aug 24, 2006 4:28 PM by znbailey Go to original post
      • 15. Re: Frequent
        znbailey

        Also, I am unsure how to access "the jboss server view's event log". The only error log I know is available via "window -> show view -> error log". That is where I found the previous information. If there is a more salient view, please direct me to it.

        • 16. Re: Frequent
          rob.stryker

          The jboss server view's event log is inside the jboss server view, which is found under window -> show view -> other -> server -> jboss server view.

          That view is the main view for the server plugin. A screenshot of the event log and the information I'd like you to either screenshot or summarize is shown below.

          [img]http://oxbeef.net/image/code/jbsv_w_properties_7_18_06.JPG[/img]

          • 17. Re: Frequent
            znbailey

            Rob,

            I have that view open but it I don't have the option to expand anything in the bottom pane like you do. Is this because I don't have anything deployed to the server via JBossIDE? I am doing a manual deployment outside of Eclipse using Ant. Is there an option I am missing somewhere? I have tried double clicking, exploring all the menu options, etc. but still can't seem to get mine to look like yours.

            Here is what mine looks like: [img]http://www.flickr.com/photos/87094692@N00/193384008/[/img]

            • 18. Re: Frequent
              rob.stryker

              I've looked into it and, no, this isn't your problem. It's mine again.

              A simple boolean error. I'm terribly sorry. I basically defaulted all the categories to NOT show the first time, and since I hadn't yet made the preference page that allows you to re-enable categories, you get to sit there and see nothing.

              • 19. Re: Frequent
                znbailey

                 

                "rob.stryker@jboss.com" wrote:
                I've looked into it and, no, this isn't your problem. It's mine again.

                A simple boolean error. I'm terribly sorry. I basically defaulted all the categories to NOT show the first time, and since I hadn't yet made the preference page that allows you to re-enable categories, you get to sit there and see nothing.


                Rob,

                No worries, glad we could get it worked out. It is an alpha build after all ;-).

                • 20. Re: Frequent
                  rob.stryker

                  Yes but this still doesnt help me figure out whats wrong with your server startup ;)

                  I had added all sorts of event logging so that when another server startup / shutdown problem came, you'd have all sorts of information to give me =P

                  Now my silly boolean error has prevented me from actually researching the startup / shutdown issue.

                  Mind if I ask you some other question?

                  You've said you're using jboss3.2.7 but you've named it 4.x TRUNK. Which jboss version are you actually trying to use? =P

                  • 21. Re: Frequent
                    znbailey

                     

                    "rob.stryker@jboss.com" wrote:
                    You've said you're using jboss3.2.7 but you've named it 4.x TRUNK. Which jboss version are you actually trying to use? =P


                    The 4.x TRUNK refers to the version of the product that I work on being deployed, not the version of JBoss. If you look back a couple of messages you will see I posted the following:

                    11:47:57,734 INFO [Server] JBoss (MX MicroKernel) [3.2.7 (build: CVSTag=JBoss_3_2_7 date=200501280217)] Started in 56s:922ms


                    Hope that answers your question :-)

                    • 22. Re: Frequent
                      znbailey

                      I have been starting the server in debug mode all day and I am happy to report that the server has not once cut out on me which is quite nice - there is still the small issue of it always reporting "starting..." even once it has started, though, but this is much more liveable.

                      • 23. Re: Frequent

                        Hello Guys,

                        I read your responses and I find myself in a similar situation as you bailey.
                        I installed the latest JBossIDE, the Alpha1a version, into Eclipse 3.2. I am attempting to launch JBoss 3.2.4 with a manual deployment (outside of the IDE) using ANT.

                        My problem is two teired.

                        1st. JBoss does not completely start when launched in Eclipse and I think it has to do with a NullPointerException being thrown on one the startup threads (timerThread): in the Timer.run() method...<see below>
                        for some reason, a NullPointerException is generated in the "sychronized(queue)" call. The class documentation says this run() method is called repeatedly and that any subsequent calls after the first one has no effect on the queue object. I think the second call to this method's "synchronized(queue)" with the same queue object that was previously nulled out (queue.clear()) generates the exception. try doing a synchronized on an object who's value is null.

                        public void run() {
                        try {
                        mainLoop();
                        } finally {
                        // Somone killed this Thread, behave as if Timer cancelled
                        synchronized(queue) {
                        newTasksMayBeScheduled = false;
                        queue.clear(); // Eliminate obsolete references
                        }
                        }
                        }


                        2nd, after launching JBoss within eclipse, I am able to access the web console and the JMX console via an external browser...(http://localhost:8080/)... BUT when I try to execute my client app to connect to JBoss, I get this funky error

                        "java.rmi.ConnectException: Connection refused to host:"

                        when my client App attempts a JNDI name lookup...I know my app works fine because it works when I manually start JBoss outside of Eclipse.

                        I guess for some reason, I cannot connect to the JNDI services when launching JBoss via the JBoss-IDE in eclipse.....ANY IDEAS?

                        • 24. Re: Frequent
                          znbailey

                           

                          "znbailey" wrote:
                          I have been starting the server in debug mode all day and I am happy to report that the server has not once cut out on me which is quite nice - there is still the small issue of it always reporting "starting..." even once it has started, though, but this is much more liveable.


                          Just wanted to resolve this topic - I upgraded to Beta1 and this seems to have done the trick - the JBoss Server View now reports the server as starting and started at the correct places.

                          Thanks for all your hard work, JBIDE team!

                          1 2 Previous Next