I have a simple player i am using third party libraries. Exactly the same code is working in my Fedora desktop. But when i am using exactly the same code in Archlinux it does not work to do main.replay();

What is causing it?

public static void play(String gsttest)
{
    try {
        gst.play();
        gst.getBus().connect(new Bus.EOS() 
        {
            public void endOfStream(GObject source) 
            {
              //_7-------------_7
               main.replay(); //<< never getting executed in Archlinux 
              //_7------------_7      but Fedora it runs without any problem.                    
            } 
        });  

    } catch (Exception ex) {
    }               
}

My Java where its not working is:

$ java -version
java version "1.6.0_22"
OpenJDK Runtime Environment (IcedTea6 1.10.3) (ArchLinux-6.b22_1.10.3-1-x86_64)
OpenJDK 64-Bit Server VM (build 19.0-b09, mixed mode)

My Java where its working is:


$ java -version
java version "1.6.0_22"
OpenJDK Runtime Environment (IcedTea6 1.10.3) (fedora-59.1.10.3.fc15-i386)
OpenJDK Server VM (build 20.0-b11, mixed mode)
link|improve this question

try java debugger jdb – Sreenath Nannat Oct 18 '11 at 15:29
In what way isn't it working? Is there any exceptions? – Jim Oct 18 '11 at 15:30
No exceptions nothing, its just simply ignoring that main.replay(); But in Fedora it simply works where i can see directly. – YumYumYum Oct 18 '11 at 15:31
2  
You do not see any exceptions because you eat them. Remove the empty catch (Exception ex) block, or do at least ex.printStackTrace() – Matej Oct 18 '11 at 16:08
@Matej: i applied ex.printStackTrace(). It shows nothing at all. – YumYumYum Oct 18 '11 at 16:18
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

Have you tried catching a Throwable?

try{ ...
} catch(Throwable t){ t.printStackTrace(); }

If not, does it print anything?

If you declare that Bus class before hand and use it later in connect, does the behavior change?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.