Is Jdeveloper so full of bugs?

Somebody knows why this application gives the exception below?
package pippo;
import oracle.dacf.dataset.*;
import javax.infobus.RowsetAccess;
import javax.infobus.ImmediateAccess;
import javax.infobus.DbAccess;
public class Application1 {
SessionInfo sessionInfo1 = new SessionInfo();
public Application1() {
try { jbInit();
sessionInfo1.publishSession();
q();
} catch (Exception e) {
e.printStackTrace();
private void q()throws Exception {
DbAccess dba=sessionInfo1.getDbAccess();
RowsetAccess rsa = (RowsetAccess)dba.executeRetrieval
"select count(*) as \"aaa\" from dual",
"infobus:/oracle/sessionInfo1/aaa",
null);
ImmediateAccess v=(ImmediateAccess)rsa.getColumnItem
("aaa");
dba.validate();
public static void main(String[] args) {
new Application1();
private void jbInit() throws Exception {
sessionInfo1.setModuleInfo(new ModuleDescriptor
("pippo.pippo",
SessionInfo.PACKAGE , "pippo", SessionInfo.DEFAULT_MODULENAME));
sessionInfo1.setConnectionName("sviConnection2");
sessionInfo1.setName("sessionInfo1");
oracle.jbo.rt.AttributeNotFoundException: JBO-01105: Unknown
attribute
_propaaa.
java.lang.Object java.util.Stack.peek()
java.lang.Object java.util.Stack.pop()
sun.misc.URLClassPath$Loader
sun.misc.URLClassPath.getLoader(int)
sun.misc.Resource
sun.misc.URLClassPath.getResource(java.lang.String, boolean)
java.net.URL
java.net.URLClassLoader.findResource(java.lang.String)
java.net.URL java.lang.ClassLoader.getResource
(java.lang.String)
java.io.InputStream
java.lang.ClassLoader.getResourceAsStream(java.lang.String)
java.lang.Object java.util.ResourceBundle$1.run()
java.lang.Object
java.security.AccessController.doPrivileged
(java.security.PrivilegedActio
n)
java.util.ResourceBundle
java.util.ResourceBundle.findBundle(java.lang.String,
java.lang.StringBuffer, java.lang.ClassLoader, boolean)
java.util.ResourceBundle
java.util.ResourceBundle.getBundle(java.lang.String,
java.util.Locale,
java.lang.ClassLoader)
java.util.ResourceBundle
java.util.ResourceBundle.getBundle(java.lang.String,
java.util.Locale)
java.lang.String
oracle.jbo.common.util.StringManager.getLocalizedString
(java.lang.String,
java.lang.String, java.lang.String, java.util.Locale,
java.lang.Object[],
boolean)
java.lang.String
oracle.jbo.common.util.StringManager.getLocalizedString
(java.lang.String,
java.lang.String, java.lang.String, java.util.Locale,
java.lang.Object[])
java.lang.String
oracle.jbo.common.util.JboExHelperLocalized.getErrorMsg
(java.util.Locale,
java.lang.Object[])
java.lang.String
oracle.jbo.common.util.JboExceptionHelper.getLocalizedMessage
(java.util.L
ocale)
java.lang.String
oracle.jbo.common.util.JboExHelperLocalized.getLocalizedMessage
(java.util
.Locale)
java.lang.String
oracle.jbo.common.util.JboExceptionHelper.getMessage()
java.lang.String
oracle.jbo.common.util.JboException.getMessage()
java.lang.String java.lang.Throwable.getLocalizedMessage
java.lang.String java.lang.Throwable.toString()
java.lang.String java.lang.String.valueOf
(java.lang.Object)
void java.io.PrintStream.print(java.lang.Object)
void java.io.PrintStream.println(java.lang.Object)
void java.lang.Throwable.printStackTrace()
Exception in thread main
null

Discover something:
If I chose 1.1.7 as target in project properties it works fine!
What's going on...
Thanks,
A.Malanca.
JDeveloper Team (guest) wrote:
: Hi
: I tried to replicate the problem by using your code, but it
just
: works fine for me.
: regards
: A.Malanca (guest) wrote:
: : Somebody knows why this application gives the exception
below?
: : package pippo;
: : import oracle.dacf.dataset.*;
: : import javax.infobus.RowsetAccess;
: : import javax.infobus.ImmediateAccess;
: : import javax.infobus.DbAccess;
: : public class Application1 {
: : SessionInfo sessionInfo1 = new SessionInfo();
: : public Application1() {
: : try { jbInit();
: : sessionInfo1.publishSession();
: : q();
: : } catch (Exception e) {
: : e.printStackTrace();
: : private void q()throws Exception {
: : DbAccess dba=sessionInfo1.getDbAccess();
: : RowsetAccess rsa = (RowsetAccess)dba.executeRetrieval
: : "select count(*) as \"aaa\" from dual",
: : "infobus:/oracle/sessionInfo1/aaa",
: : null);
: : ImmediateAccess v=(ImmediateAccess)rsa.getColumnItem
: : ("aaa");
: : dba.validate();
: : public static void main(String[] args) {
: : new Application1();
: : private void jbInit() throws Exception {
: : sessionInfo1.setModuleInfo(new ModuleDescriptor
: : ("pippo.pippo",
: : SessionInfo.PACKAGE , "pippo",
: SessionInfo.DEFAULT_MODULENAME));
: : sessionInfo1.setConnectionName("sviConnection2");
: : sessionInfo1.setName("sessionInfo1");
: : oracle.jbo.rt.AttributeNotFoundException: JBO-01105: Unknown
: : attribute
: : _propaaa.
: : java.lang.Object java.util.Stack.peek()
: : java.lang.Object java.util.Stack.pop()
: : sun.misc.URLClassPath$Loader
: : sun.misc.URLClassPath.getLoader(int)
: : sun.misc.Resource
: : sun.misc.URLClassPath.getResource(java.lang.String, boolean)
: : java.net.URL
: : java.net.URLClassLoader.findResource(java.lang.String)
: : java.net.URL java.lang.ClassLoader.getResource
: : (java.lang.String)
: : java.io.InputStream
: : java.lang.ClassLoader.getResourceAsStream(java.lang.String)
: : java.lang.Object java.util.ResourceBundle$1.run()
: : java.lang.Object
: : java.security.AccessController.doPrivileged
: : (java.security.PrivilegedActio
: : n)
: : java.util.ResourceBundle
: : java.util.ResourceBundle.findBundle(java.lang.String,
: : java.lang.StringBuffer, java.lang.ClassLoader, boolean)
: : java.util.ResourceBundle
: : java.util.ResourceBundle.getBundle(java.lang.String,
: : java.util.Locale,
: : java.lang.ClassLoader)
: : java.util.ResourceBundle
: : java.util.ResourceBundle.getBundle(java.lang.String,
: : java.util.Locale)
: : java.lang.String
: : oracle.jbo.common.util.StringManager.getLocalizedString
: : (java.lang.String,
: : java.lang.String, java.lang.String, java.util.Locale,
: : java.lang.Object[],
: : boolean)
: : java.lang.String
: : oracle.jbo.common.util.StringManager.getLocalizedString
: : (java.lang.String,
: : java.lang.String, java.lang.String, java.util.Locale,
: : java.lang.Object[])
: : java.lang.String
: : oracle.jbo.common.util.JboExHelperLocalized.getErrorMsg
: : (java.util.Locale,
: : java.lang.Object[])
: : java.lang.String
: : oracle.jbo.common.util.JboExceptionHelper.getLocalizedMessage
: : (java.util.L
: : ocale)
: : java.lang.String
oracle.jbo.common.util.JboExHelperLocalized.getLocalizedMessage
: : (java.util
: : .Locale)
: : java.lang.String
: : oracle.jbo.common.util.JboExceptionHelper.getMessage()
: : java.lang.String
: : oracle.jbo.common.util.JboException.getMessage()
: : java.lang.String java.lang.Throwable.getLocalizedMessage
: : java.lang.String java.lang.Throwable.toString()
: : java.lang.String java.lang.String.valueOf
: : (java.lang.Object)
: : void java.io.PrintStream.print(java.lang.Object)
: : void java.io.PrintStream.println(java.lang.Object)
: : void java.lang.Throwable.printStackTrace()
: : Exception in thread main
null

Similar Messages

  • AIR 3 Android runtime full of bugs?

    I have a Flex SDK 4.5.1 Flex mobile app and i have not compiled it yet using the new SDK. So it's stil being compiled with the current 4.5.1 sdk release.
    I took the air Runtime.apk from the sdk, manually installed it on my phone just to see how my current APK runs with the new Air 3 beta runtime...and it's full of bugs.
    It starts out fine, but i've noticed after im on a view when I activate and view the raw camera inside the view, the screen sort of flickers, goes black for a second, then comes back.
    Then, after this happens it seems like the back button no longer functions properly. Rather than doing a pop view, it seems to quit the application. This only happens after the camera is accessed.
    I've also noticed randomly sometimes the view will no longer auto rotate properly, and some things don't scale properly.
    I've also noticed the Sideways camera bug is still not resolved. This is extremely important and really needs to gets fixed. You can see the bug report I submitted a LONG time ago right here http://bugs.adobe.com/jira/browse/SDK-30317 Please this has to be fixed.
    To solve the random bugs, is it possible once i compile the app with the new sdk it wil work fine? Just seems like it should be able to run fine on the new runtime, what about the devs that don't update their apps right away?

    This is all on a Nexus One 2.3.4 and a Xoom 3.1
    Is anyone else out there with a flex mobile project? That features using the camera. Or maybe someone that can confirm the camea is sideways, causing flickers, and back button is sometimes exiting the app, rather than popView

  • [svn:fx-trunk] 12816: VideoPlayer full screen bug fix

    Revision: 12816
    Revision: 12816
    Author:   [email protected]
    Date:     2009-12-10 16:19:26 -0800 (Thu, 10 Dec 2009)
    Log Message:
    VideoPlayer full screen bug fix
    SDK-24308 - Full-screen VideoPlayer running as AIR application on dual monitor setup has white background
    If we are running on the AIR Player, then use the Screen bounds API instead.
    QE notes: None
    Doc notes: None
    Bugs: SDK-24308
    Reviewer: Ryan
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24308
        http://bugs.adobe.com/jira/browse/SDK-24308
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as

  • Maverick is full of bugs.

    Hi all.
    Maverick is full of bugs, recommended you wait some months before upgrade. Specially if you are an Photographer.
    *Colorcontrol
    *Scanners
    *Printers
    *Calibrating Screen
    *Tethered Photographing
    *Running Old Photostudio Software
    Hope for a soon update, had to buy an used imac to get my work done, running Mountain Lion.
    So at the moment Maverick really ***** big time.
    Is there a way to downgrade..?
    Hope this info help others.
    Kind Regards
    Hofby Denmark

    Hi all.
    Maverick is full of bugs, recommended you wait some months before upgrade. Specially if you are an Photographer.
    *Colorcontrol
    *Scanners
    *Printers
    *Calibrating Screen
    *Tethered Photographing
    *Running Old Photostudio Software
    Hope for a soon update, had to buy an used imac to get my work done, running Mountain Lion.
    So at the moment Maverick really ***** big time.
    Is there a way to downgrade..?
    Hope this info help others.
    Kind Regards
    Hofby Denmark

  • My Z1 is full of bugs

    I believe my Z1 is full of bugs (I have Android 4.2.2). Every few days I have to re-start it all over to restore it's proper functions. Sometimes the keyboard doesn't work, sometimes gets frozen when connected to my Smart Watch (from Sony!), sometimes the music stops when other applications are in use, etc. What happen with you SONY?! 

    Meanwhyle their is already a firmware update.
    ∆○×□ PSP1004 (Phat 1st gen.) 5.00 M33-6 (+1.50) + 32GB Pro-Duo.
    ∆○×□ PS4 1.7X + 500GB hdd + Dualshock4 + PS4 Camera,
    Xperia-Z1 Android 4.4.X + 32GB microSD + Philips SHB9100

  • IPhone 6 Plus full of bugs

    Why are so many bugs with iphone 6 plus? IOS 8 is so bad and full of bugs! Screen rotation issues, dropping calls, horrible signal, internet slow and wifi signal problems! This is one of the worst phones i ever had on life. I changed from android to iphone because it is supposed to be better but im so disapointed that i will return my phone before 30 days trial! So i can go back to galaxy... Unless apple fix every single bug in IOS 8.0.2....... So disappointed

    I suggest you try to restore as new before jumping in to install 8.1 in the hopes that that might solve the problem. That will "flush" the system and instal a "clean" copy of iOS 8.0.2. Sometimes problems are due to corrupted software and that problem is only solved by a clean restore. You can then synch your content (digital music, movies, apps) back to your phone.
    If, by chance, the system software is corrupted, installing 8.1 might  not solve the problem, but make the situation worse. So I suggest you try the step approach to rule out any problems now before you instal 8.1. If after you restore as new and the problems persist, then install 8.1. If that does not help, then as I have said before, it could be a hardware problem.

  • Good potential but full of bugs

    The Smart Web Printing 4.60 is a neat little thing but it is full of bugs.  I have read some of the postings and ran into many of the same problems.  I finally got the hang of it.  The trouble is - sometimes things work and sometimes they don't even though I do the same thing.  I think there is something wrong with the program.  Sometimes I can't even sign in even though my user name and password are correct.  Sometimes I can't print - try 3 or 4 times and then it prints.  Sometimes I get the "Clip, Print" menu and sometimes I don't.  I try again 4 or 5 times and it comes up.  It would be a neat thing if you can print just part of a website, but the trouble and time it takes isn't worth it.  Maybe the bugs will be worked out and it will be worth it.  Until then, I may just go back to printing the whole page. 

    A couple of updated items.  There was a very easy way of deleting the sticky notes, but the trash can ran off the screen based on the side of the display settings that I had, so initially I was not aware of this.  It also did install the air application on the XP64, but sent error codes stating that it didn't.  It seems to work fine with that minor exception.

  • Nokia N86 Email Messaging Full of Bugs When Next U...

    I just bought a New Nokia N86 and I am very sad for this phone!
    I use a lot the mails, both for office (exhange) than private (gmail)
    I noticed the following bugs:
    1) No HTML option only after I can read in HTML but it keep a lot of time to download also a little immage
    2) No possibility to write in html, i cannot include picture inside a message, i cannot change colors or fonts or bolds or insert any emoticons
    3) The memory of the phone is full (out of memory) after one days, because that stupid program download the messages in "C" (not E not memory card) but never cancell from memory, also i said to update for 3 days. so i think I have to rester the phone every day!
    4) The phone is slow, very slow, very very slow, also it freeze when I open the gmail with nokia messaging of the mobile phone
    But the nokia tester after you do a new release try to instal all programs on the phone a some other new and some mail account?
    Your tester try to read and write mails?
    The N86 of your testers crash after 2 days or is perfect?
    If is perfect that's mean you use a different phone from the one sold in shops. Or your tester sleep all day instead to test the phone!
    I'm so stupid to buy NOkia phones! (I bought my 10th nokia phone and every year the phones become slower and full of bugs.
    instead to improve the programs (like e-mail) the program are more and more slower and useless
    I think that all Nokia managers use a Blackberry for office mails, and iPhone for private e-mails and music and video

    After doing exactly the same settings suddenly the stupid thing works! Only difference was that I didn't accept the certificate and exited out of mail before the dumb thing tried to connect without having the full and correct settings in place. This really isn't easy to use! It is really very poor to have an email setup that trashes the username and password settings and switches on security when a user has expressely selected 'none' so it *will never work* when a user tries to connect for the first time.
    I also think that depending on exactly how you start the email settings wizard will depend exactly on what result you get. I didn't use the 'add mailbox' icon in the previous times - I used the menu  option. I'd recommend setting up via that icon rather than the menu as it seems to be a tiny bit better at making sure the settings can actually work.
    But the wretched thing still doesn't seem to be able to send mail however!

  • Mail App with Maverick full of bugs

    Hi there.
    I bought a new macbook pro a few weeks ago. I used the time machine to save all my files on the old macbook and exported them to the new model.
    but now mail is full of bugs. my intiligent folders are not working anymore and the search function doesn´t work either. all of them worked finde on my old macbook early 2011.
    any ideas how to solve this?

    Have you applied the latest Mail update from Apple?
    Mail Update for Mavericks
    OT

  • Ios 7 full of bugs n glitches

    Ios 7 is awesome.!! Love it's features .! But it is full of bugs n glitches..all of my friends have been experiencing this problem..can't expect such minute bugs n glitches from apple..!! It's too slow..
    It hangs a lot
    So many apps close down on their own
    Phone restarts during a call
    Scrolling through multitasking apps or landscape view in music is too slow n glitchy

    Hi Sam,
    Send your feedback to Apple:
    http://www.apple.com/feedback/
    We are not Apple here. We are just users like you.
    Cheers,
    GB

  • Why jdeveloper is so slow,and full of bugs?

    i've wasted a lot of time in jedeveloper.
    sometimes it can not debug,sometimes it can not run, sometimes it just hang. and it is always sloooow.
    if i force kill integrated weblogic, i have to remove the whole domain directory and recreate it again, otherwise i cannot start weblogic anymore.
    i use adf,i have no other choise. why oracle not just throw away jdeveloper,then adopt eclipse or netbean?

    I have to disagree with you. I have about one and a half year developing with JDeveloper and ADF and these are some of the things that happened to me:
    -JDeveloper takes a lot of memory, even I am using a pc with Intel Core i3 with 4GB of Ram and 64 bits of S.O. So i have to restarted my machine about 2 times a day.
    -JDeveloper most of the times is silly. We have our proyect with svn and sometimes our checkout with JDeveloper brings problems, for example it can't find a reference of a Object(Entity,ViewObject,PageDef...etc).
    -JDeveloper doesn't find some BusinessComponents references, so I have to close JDeveloper and open again or close the proyect and open again.This is frustrating!!.
    -The pages delay on loading with a simple taskFlow. I mean pressing on a commandLink that get you to another page, and sometimes problems with javascript happens .
    -The more frustating thing that happened to me is that all the bc4.xcf went away as magical!!!. I have to recreated one by one.
    -The page is blank when i go to designer tab.

  • Screen Mirroring does not work, full of bugs.

    Hi,
    I've had a Sony Z1 for well over six months now and have got a Sony Bravia TV that supports mircast screen mirroring. When I purchased the Z1 it was on android 4.2 and the screen mirroring worked a treat, it was lag free, always responsive etc.
    But when I upgraded to 4.3, the mirroring was buggy as **bleep**, the device always disconnected, when it did connect after several attempts it would lag, black out, then disconnect again. I've tried fiddling with wifi settings as well as wifi direct etc. but no joy and I left it as that.
    When I knew 4.4 kitkat was coming to the z1 I waited as I would assume the issue would be fixed, but I upgraded to 4.4 (build: 14.3.A.0.757) today and is still full of these disconnecting and unresponsive bugs. I'm not sure what the problem is, I mirrored a samsung s4 mini and works absolutely fine (4.2) and I can mirror my sony xperia tablet z (4.3) with no issues either. I know a relative who also owns the z1 and has exactly the same issue, what also seems to happen now and then, is that half way through a mirrored session, the wifi would disable and will switch to the mobile network, then after some time, back to wifi again; yet this never happened on 4.2?
    Is there a fix or a way to solve these issues? It's rather annoying having such a great feature that doesn't want to work on a flagship. 
    Thanks.

    I had some issues with Miracast on my Z1 but with 4.2 and 4.3 firmware. It was loosing connection or kept saying that I don't have HDCP. I was connecting using Netgear Push2TV.
    On 4.4  (.757) it works quite stable. On Z1C with 4.3 I wasn't able to miracast at all.
    The same goes with screen mirroring to Z2 tablet. Works fine from Z1 to Z2 (both KitKat, altough one touch pairing is a disaster and not working at all), but you can forget about it using Z1C and Android 4.3.
    Best regards,
    Sergio PL
    Xperia Z1 / Nexus 7 (2012)

  • Full-Screen bug with Safari

    I hope this is already a known issue.
    I use Safari on Mac OS X. In my flex application, I have
    problem with full-screen mode. When I get back to normal mode from
    full-screen mode, and then resize or maximize safari window, the
    screen displays abnormally. Most of components disappears, and
    sometimes all of them. The same problem occurs with other video
    players, including the one in youtube. I haven't tested it with
    other browsers yet. I hope this problem is fixed in future release.
    Thanks,

    Chaos,
    Can you please file a bug in the bugbase (
    http://bugs.adobe.com/flex)
    and somebody can have a look at it. Also, be sure to mention which
    version of OS X, Safari, and the Flash Player you're using. And if
    you have any source code showing the problem, that definitely
    helps.
    I did a quick test and i was unable to repro the issue using
    the latest Flex 3 SDK on XP/IE7, XP/Firefox, OSX/Safari and
    OSX/Firefox (WIN 9,0,60,163 and MAC 9,0,60,161).
    Peter

  • Full Screen bug on OSX 10.4.11

    I have tried taking advantage of the new full screen feature
    that selects a rectangle of stage but with no success.
    have a look at
    http://monkeywitch.com/bug/project.html
    and click the small fullscreen button on the player's bottom right
    - the swf goes into full screen mode but has some black rectangle
    casted on it.. very strange.
    i used the fullscreen code from the article on
    here
    and all the regular JS code that come from a publish from
    within Flash.
    the behavior that I see is on:
    Flash Player 9,0,115,0
    Firefox 2.0.0.11
    Mac OSX 10.4.11
    Dual 2 GHZ PPC G5
    2.5 GB RAM
    with graphics card:
    NVIDIA GeForce 6600LE:
    Chipset Model: GeForce 6600LE
    Type: Display
    Bus: PCI
    Slot: SLOT-1
    VRAM (Total): 128 MB
    Vendor: nVIDIA (0x10de)
    Device ID: 0x0142
    Revision ID: 0x00a4
    ROM Revision: 2149
    Displays:
    L1910B:
    Resolution: 1280 x 1024 @ 60 Hz
    Depth: 32-bit Color
    Core Image: Supported
    Main Display: Yes
    Mirror: Off
    Online: Yes
    Quartz Extreme: Supported
    Thanks,
    Amit
    ps. I saw a post at
    here
    that was more or less the same issue but on Vista.

    2Q,
    Please open a support case on this one (
    http://www.adobe.com/support/flash)
    As a Flash developer you have access to either phone or
    webcase support. In this case I might recommend going to the phone.
    Be prepared to provide a sample FLA and also give the agent the
    link to this forum thread. If for some reason the first support
    tier doesn't give you any satisfaction then post the case number
    here and also ask to be escalated. (I'd love to look at this myself
    but I'm just out of resources, sorry).

  • Adding a page to Reading List causes full screen "bug"

    When I attempt to add a page to the Reading List in Safari 5.1.1 running in full screen, it appears to "bug out."  The window slides to the Finder and causes the dock and menu bar to slide on top of the still full screen Safari window.  When I pull up Mission Control, the Safari desktop is sitting empty with the Safari window on the desktop.
    Thanks in advance for any assistance you can provide.

    This is still an issue in Safari 5.1.2.  Is anyone else experiencing this?

Maybe you are looking for