11.1.1.1.0  debugger stops a pojo but not in ApplicationModuleImpl.java

Hi,
I have an adflibrary.jar that is used in a consuming project. While debugging my consuming project, I am trying to set a breakpoint in a method of my service class (extends ApplicationModuleImpl) that is part of this adf library. I have specified source for this adf library to include (Edit Library Definition->Source Path) related source.
The weird thing is that the debugger does not stop at the breakpoint of this app module impl. However if i used any other kind of pojo, i am able to stop debugger.
I tried clean/make all/restart of jdev etc. to make sure these were not the issues.
Any help will be appreciated.
I am using JDev 11.1.1.1.0
Thanks,

Hi,
I have an adflibrary.jar that is used in a consuming project. While debugging my consuming project, I am trying to set a breakpoint in a method of my service class (extends ApplicationModuleImpl) that is part of this adf library. I have specified source for this adf library to include (Edit Library Definition->Source Path) related source.
The weird thing is that the debugger does not stop at the breakpoint of this app module impl. However if i used any other kind of pojo, i am able to stop debugger.
I tried clean/make all/restart of jdev etc. to make sure these were not the issues.
Any help will be appreciated.
I am using JDev 11.1.1.1.0
Thanks,

Similar Messages

  • Constant Error; Adobe Flash Player 11.4 r402 has stopped working. But NOT running Trusteer Rapport.

    I am experiancing this unbelieveably annoying and constant Flash error;  Adobe Flash Player 11.4 r402 has stopped working.
    But NOT running Trusteer Rapport, I never have, and it's not even installed on my computer.  So what's causing this?

    There were a couple AntiVirus/AntiMalware products that keep coming up, but I haven't validated that in the lab and don't want to call anyone out publicly without reporting the issue to them first.

If you could tell me what antivirus/antimalware products and versions you have installed, that would be helpful.
    So, third party stuff aside, I'd like to know more about the crashes your seeing:
    1.) Please provide links to the Firefox crash reports.  If you have multiples, the first few would be great.
         In Firefox, type about:crashes in the address bar
         If the link starts with "bp...", it's already been submitted -- just right-click on it and copy the link, and paste it into the reply here.
         If not, click it to submit it, and copy the subsequent link.
    2.) In firefox, type about:support
         Just copy and paste the output into the reply.
    3.) In Firefox, type about:plugins
         Please copy and paste the output into the reply
    4.) Please provide the output of the DirectX Diagnostic Utility
         Click Start > type "dxdiag" [enter]
         Click Save All Information
         Copy the output of the file into the reply, or use Adobe SendNow/DropBox/PasteBin to share the file.
    5.) If you can provide an exact URL and step-by-step instructions on repeating the crash (if it's consistent), that would be really helpful.  My goal is to build out a configuration that matches yours as closely as possible, reproduce the problem and then debug it.
    If you're not comfortable sharing that diagnostic information publicly, send me a private message.  Just click my name and use the options on the right.
    Thanks!

  • Aperture has stopped showing some, but not all, keywords on photos

    I imported some new photos today and noticed that Aperture seems to have stopped displaying some, but not all, of my keywords. I'm noticing this on a large number of my existing photos.
    For example, I've selected a photo and the Keywords tab of the Metadata pane lists: Amanda, iPhoto Original, Judy, and Zoo. That appears to be correct. However, the Keywords field in the top of the Metadata pane only shows iPhoto Original, and the only keyword displayed in the grid view is iPhoto Original.
    Switching to a different metadata display does not help, nor does rebuilding the library. Reassigning the keywords seems to help, but that's not really an option for > 7,000 photos.
    Anyone know why this is happening? Can I fix this?
    Dave
    PowerMac Dual G5 2.0   Mac OS X (10.4.7)   Aperture 1.1.2

    After poking around with BBEdit in my Aperture library, I think I see the problem. I chose a photo that Aperture won't display all the keywords and re-added them. I then compared all the files in the library for that photo with the same files in a backup library I had set aside.
    It appears that at some point Aperture got the IPTC keywords out of sync with the actual keywords on the photos. Looking at the Version-1.apversion file (which is actually a .plist file), I can see that both copies have the same keywords on them (called tags in the plist), but the IPTCProperties.keywords summary does not reflect all the tags actually on the photo. Aperture appears to just display the keywords stored in the IPTC keyword summary instead of checking to see what keywords the photo actually has.
    So, the keywords are still there, but the summary that Aperture displays is wrong and a library rebuild doesn't appear to rebuild the keyword summary.
    My options at this point appear to be either re-apply all my keywords or write a tool to fix it for me (I guess being a developer has it's perks). I'll definitely be filing a bug on this...

  • Stop one Sound but not all sounds

    I have music playing in the background of my animation.
    However, once a button is pressed to GoToAndPlay another
    frame, I want the music to stop. I can't use StopAllSounds though
    because when it jumps to that frame, I have other sounds in place.
    What do I do?
    Thanks

    If you are using timeline sounds, then you can use
    stopAllSounds() before you jump to the frame. The key with
    stopAllSounds() is to make sure there is a keyframe in-between the
    call and the new sound.
    In previous attempts, I have called stopAllSounds() then the
    gotoAndPlay() to go to the frame before I want my sounds to start
    (essentially one extra keyframe with nothing but the visuals, and
    the second frame having the new sound). Any sound that starts in a
    keyframe after stopAllSounds() has been called will play.
    So::
    on click:
    stopAllSounds();
    gotoAndPlay(blankFrame);
    on blankFrame:
    just visuals, no audio
    on frame after blankFrame:
    beginning of new audio

  • Debugger stopped on uncompilable source code.

    Dear Friends,
    I got the Error as like
    Debugger stopped on uncompilable source code.
    The code is down!!!
    I could not figure out the reason, why it comes. !!! I read data from a txt file and generate an XML file.
    please any 1 help me to solve this
    Priya
    package java.Associations;
    import java.io.*;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Scanner;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Text;
    import com.sun.org.apache.xml.internal.serialize.OutputFormat;
    import com.sun.org.apache.xml.internal.serialize.XMLSerializer;
    public class XMLCreatorExample {
    //No generics
    List myData;
    Document dom;
    public XMLCreatorExample() {
    //create a list to hold the data
    myData = new ArrayList();
    //initialize the list
    loadData();
    //Get a DOM object
    createDocument();
    public void runExample(){
    System.out.println("Started .. ");
    createDOMTree();
    printToFile();
    System.out.println("Generated file successfully.");
    * Add a list of books to the list
    * In a production system you might populate the list from a DB
    private void loadData(){
    Scanner inputFile = null;
    try {
    inputFile = new Scanner(new File("C:\\coding\\weka\\1.txt"));
    while(inputFile.hasNext()) {
    myData.add(inputFile.next());
    catch(FileNotFoundException fNFE) {
    System.out.println("The file was not found");
    finally {
    inputFile.close();
    //myData.add(new Book("Head First Java", "Kathy Sierra .. etc","Java 1.5"));
    //myData.add(new Book("Head First Design Patterns", "Kathy Sierra .. etc","Java Architect"));
    * Using JAXP in implementation independent manner create a document object
    * using which we create a xml tree in memory
    private void createDocument() {
    //get an instance of factory
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    try {
    //get an instance of builder
    DocumentBuilder db = dbf.newDocumentBuilder();
    //create an instance of DOM
    dom = db.newDocument();
    }catch(ParserConfigurationException pce) {
    //dump it
    System.out.println("Error while trying to instantiate DocumentBuilder " + pce);
    System.exit(1);
    * The real workhorse which creates the XML structure
    private void createDOMTree(){
    //create the root element <Books>
    Element rootEle = dom.createElement("Books");
    dom.appendChild(rootEle);
    //No enhanced for
    Iterator it  = myData.iterator();
    while(it.hasNext()) {
    Book b = (Book)it.next();
    //For each Book object  create <Book> element and attach it to root
    Element bookEle = createBookElement(b);
    rootEle.appendChild(bookEle);
    * Helper method which creates a XML element <Book>
    * @param b The book for which we need to create an xml representation
    * @return XML element snippet representing a book
    private Element createBookElement(Book b){
    Element bookEle = dom.createElement("Book");
    bookEle.setAttribute("Subject", b.getSubject());
    //create author element and author text node and attach it to bookElement
    Element authEle = dom.createElement("Author");
    Text authText = dom.createTextNode(b.getAuthor());
    authEle.appendChild(authText);
    bookEle.appendChild(authEle);
    //create title element and title text node and attach it to bookElement
    Element titleEle = dom.createElement("Title");
    Text titleText = dom.createTextNode(b.getTitle());
    titleEle.appendChild(titleText);
    bookEle.appendChild(titleEle);
    return bookEle;
    * This method uses Xerces specific classes
    * prints the XML document to file.
    private void printToFile(){
    try
    //print
    OutputFormat format = new OutputFormat(dom);
    format.setIndenting(true);
    //to generate output to console use this serializer
    //XMLSerializer serializer = new XMLSerializer(System.out, format);
    //to generate a file output use fileoutputstream instead of system.out
    XMLSerializer serializer = new XMLSerializer(
    new FileOutputStream(new File("C:\\coding\\book.xml")), format);
    serializer.serialize(dom);
    } catch(IOException ie) {
    ie.printStackTrace();
    public static void main(String args[]) {
    //create an instance
    XMLCreatorExample xce = new XMLCreatorExample();
    //run the example
    xce.runExample();/**/
    package java.Associations;
    public class Book {
    private String title;
    private String author;
    private String subject;
    public Book(String subject) {
    this.subject = subject;
    public Book() {
    public Book(String title, String author, String subject) {
    this.title = title;
    this.author = author;
    this.subject = subject;
    public String getAuthor() {
    return author;
    public void setAuthor(String author) {
    this.author = author;
    public String getTitle() {
    return title;
    public void setTitle(String title) {
    this.title = title;
    public String getSubject() {
    return subject;
    public void setSubject(String subject) {
    this.subject = subject;
    public String toString() {
    StringBuffer sb = new StringBuffer();
    sb.append(" { Book Details --");
    sb.append("Title:" + getTitle());
    sb.append(", ");
    sb.append("Author:" + getAuthor());
    sb.append(", ");
    sb.append("Subject:" + getSubject());
    sb.append(". } \n");
    return sb.toString();
    }

    One of your .java files doesn't compile (has compilation errors.). Make sure there are no compilation errors before you attempt to run/debug the program.
    P.S Why are you posting this across multiple forums?

  • Debugger stopped working - FB4

    Hi,
    this morning my debugger stopped working. FB4 stays reponsive after I hit the debug button - it shows a main thread running - but either IE8 or FF5 freeze, showing "not responding" in the title bar. Windows says Flashbuilder.exe is using a constant 10% or so of CPU and lots of disk access. I have tried installing the latest versions of the Flash debugger player (10.3.181.34) but it makes no difference. Just launching the app works perfectly. I'm running Windows 7 Pro 64 bit on a Thinkpad W510 (8gb RAM, two quad-core i7 processors). Has anyone else seen anything like this?
    Thanks
    Martin

    Just found this in the log: one for every time I've tried launching the debugger today. In fact one every 3 milliseconds when I've done that! No wonder the disk light is flashing constantly.... any ideas anyone? Reinstall Flash Builder?
    Thanks
    !ENTRY com.adobe.flexbuilder.debug 4 2 2011-07-01 13:53:04.395
    !MESSAGE Problems occurred when invoking code from plug-in: "com.adobe.flexbuilder.debug".
    !STACK 0
    java.lang.NullPointerException
        at com.adobe.flexbuilder.debug.breakpoints.FlexLineBreakpoint.findSourceFiles(FlexLineBreakp oint.java:412)
        at com.adobe.flexbuilder.debug.breakpoints.FlexLineBreakpoint.instantiate(FlexLineBreakpoint .java:465)
        at com.adobe.flexbuilder.debug.model.FlexDebugTarget.instantiateBreakpoint(FlexDebugTarget.j ava:1012)
        at com.adobe.flexbuilder.debug.model.FlexDebugTarget.access$4(FlexDebugTarget.java:1006)
        at com.adobe.flexbuilder.debug.model.FlexDebugTarget$FdbThread.installDeferredBreakpoints(Fl exDebugTarget.java:637)
        at com.adobe.flexbuilder.debug.model.FlexDebugTarget$FdbThread.advanceStateMachine(FlexDebug Target.java:668)
        at com.adobe.flexbuilder.debug.model.FlexDebugTarget$FdbThread.access$7(FlexDebugTarget.java :642)
        at com.adobe.flexbuilder.debug.model.FlexDebugTarget$FdbThread$1.run(FlexDebugTarget.java:75 2)
        at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
        at com.adobe.flexbuilder.debug.model.FlexDebugTarget$FdbThread.eventLoop(FlexDebugTarget.jav a:732)
        at com.adobe.flexbuilder.debug.model.FlexDebugTarget$FdbThread.run(FlexDebugTarget.java:793)
        at java.lang.Thread.run(Unknown Source)

  • WSAD Debugger - stopping on lines of code that are blank/comments

    Java newbie here...
    Has anyone come across the debugger stopping on non-lines of code such as comments or blank lines? This happens as after I set breakpoints and start stepping through the code.
    Thanks

    The compiled code is not in sync with the source code.

  • Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applica

    Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applications.

    I received no error message. The application was just trying to find applications unsuccessfully.
    I am using MAC OS 10.10.1
    I tried to uninstall the application  but it seems that a kind of deamon is still installed thus providing me to reinstall properly. Do you know where are the elements to remove in order to get my machine just like before ?
    Otherwise I would have to reinstall everything and this would be a pain.
    Thanks for your help.

  • My usb that i have been using on my computer for a while suddenly stopped working, but is still glowing and letting me know that it is connected, but not showing up in disk utility

    my usb that i have been using on my computer for a while suddenly stopped working, but is still glowing and letting me know that it is connected, but not showing up in disk utility

    Either the physical drive or the enclosure electronics has failed. The light you are seeing is powered by the USB connection, the power, electricity, all USB ports put out. That doesn't mean the actual physical hard drive or the USB to SATA bus electronics are working properly. If it doesn't show in Disk Utility then it is DEAD.
    Most of the time it is the enclosures electronics that fail. Removing the physical drive from the enclosure and put it in another enclosure or using a SATA to USB adapter, one that has it's own AC power supply, might allow you to get the files off the drive.

  • How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activ

    How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activated. HELP?  I really need to continue using this product for my home business.It works fine not activated but the threat is that it will stop working in 13 more days if I don't get it activated, and none of the activation methods they list seem to work.

    The new serial number is to the right of your chosen download.

  • I am trying to move a pdf file onto my iPad2, and it says that the device is not connected or has stopped working.  But Windows 7 recognizes the device and I can see my pictures.  Same thing happens when I try to put music onto the iPad.

    I am trying to move a pdf file onto my iPad2, and it says that the device is not connected or has stopped working.  But Windows 7 recognizes the device and I can see my pictures.  Same thing happens when I try to put music onto the iPad.

    When in iTunes on the computer,my our ipadmshould show under devices.
    Click on your ipadmunder devices then go to music at top center of the iTunes window, check what you want to sync for music. You need to set it to a folder if I remember which would have your music in it you want synced.
    Same with PDF files.....there should be an option for data or even PDF files at the top center area of iTunes when the iPad is clicked under devices.
    If your iPad does not show or you cannot click on it under devices which is in the leftane of iTunes, the iPad is not being seen by the computer.
    Try unplugging the USB cord from the laptop then give it a few and see if the computer picks it up.

  • Ever since the most recent firefox update, every time I try to download anything firefox stops responding and will not do anything until I restart it. Can I revert back to a previous version, or is there a fix for it?

    Every time I try to download anything firefox stops responding and will not do anything until I restart it. Can I revert back to a previous version, or is there a fix for it? When I restart firefox, then the download continues and all is well until I try to download something new (which I do quite often).

    You may well find this article of interest and help in sorting out your problems: [[Installing a previous version of Firefox]] The article does contain a link for previous versions, but also points out other troubleshooting advice that may be more appropriate in some instances.
    Another useful article is [[Basic Troubleshooting]]
    I hope you sort out your problems either by downgrading or finding the cause of the problem.

  • Hi, how do i stop my macbook pro not to automatically connect to a wifi connection that is not my preferred network? i want to automatically connect my macbook to my preferred network everytime i turn on my laptop. thank you.

    hi, how do i stop my macbook pro not to automatically connect to a wifi connection that is not my preferred network? i want to automatically connect my macbook to my preferred network everytime i turn on my laptop. thank you.

    System Preferences > Network > WiFi
    To give a network the highest priority, drag the name of the network to the top of the list. This is the network your computer will attempt to join first.
    http://support.apple.com/kb/PH13797

  • Satellite P300: BSOD error STOP: c0000139 {entry point not found}

    I've been having this error for a few weeks on my Toshiba P300.
    When I start my notebook there appears a blue screen with an error for a split of a second:
    STOP: c0000139 {entry point not found}
    The procedure entry point ntoskrnl.ExiAcquireFastMutex could not be located in the dynamic link library Hal.dll.
    Then Windows Vista starts normal.
    I don't get this error when i start the computer from hibernate. What does this error mean??
    I also have problems with my integrated webcam. I get the message: 'locked by another application'. I already reinstalled the software I downloaded from the website, but that didn't help. Does the error have something to do with the webcam that doenst work properly??

    I dont know what the problem can be but you should use system restore tool and rollback OS to earlier time before this error message started.
    About webcam issue please visit http://forums.computers.toshiba-europe.com/forums/thread.jspa?messageID=131308

  • I have an optical mouse that came with my Mac Pro plugged into the USB port on the keyboard. After a year of working normally, the trackball all of a sudden stopped scrolling down. It scrolls up just fine, but not down. Any thoughts?

    I have an optical mouse that came with my Mac Pro, the only thing plugged into the USB port on the keyboard. After a year of working normally, the trackball all of a sudden stopped scrolling down. It scrolls up just fine, but not down. Any thoughts?

    Well
    I tried all of the suggestions, sort of. I did not have alcohol wipes, but I did take alcohol and pour some ona white paper towel and then rolled the mouse touch ball aroound and that finally cleared up the problem.  Just inverting it on paper did not do the reick, it needed some help with the alcohol.  Of course the probelm is the debris that gets inside and it really needs to come out.
    This is a huge problem for RIM devices users too.

Maybe you are looking for