MyFaces Tobago and Jdev 11g TP2 [BUG??]

Hi I was trying Jdev 11g TP2 and wanted to test the components from MyFaces Tobago, but when I added the Tobago JAR's the design view stop showing the preview of the standard jsf components and show them like unrecognized tags; and I haven't add any tobago component. what am I doing wrong? is it a BUG?
EDIT:
The thing same happens with the MyFaces Tomahawk Components. Is there any problems with MyFaces Compnents?

Hi,
make sure you use JSF 1.2 versions of the component set because JDeveloper 11 uses JSF 1.2. Beside of this chances are likely that this is an issue in teh current JDev 11 build. There is a TP3 planned for December, Can you verify if the issue reproduces then ?
Frank

Similar Messages

  • JDEV 11G TP3 [BUG]: Diagramming / Use Case & Activity  / open save

    I'm not able to open existing use diagram and couldn't save activity diagram after i created them. So UML is not functional in this preview release.
    Is this knowns bugs ?
    Is some workarounds knows ?
    I need these diagrams very soon and would know if i have to create them in a another tools or it is a way to use JDeveloper for them.
    Thank you

    You can find more details in these threads
    http://forums.oracle.com/forums/thread.jspa?threadID=622107
    JDEV 11G TP3 [BUG]: Diagramming / Use Case & Activity  / open save
    I already sent my project files to Shay. I may sent them to you too if needed.
    I suspect the problem may be due by the fact i'm using two workspaces simultanously, both managed with subversion. I already detected in the same configuration that "Select in Navigator" from pl/sql editor doesn't find an edited file (loaded from the offline database navigator) in the offline database navigator because it was searching the same project but in the wrong workspace.

  • JDEV 11G TP4 [BUG]: Offline Database / Copying from another workspace

    see JDEV 11G TP4 [BUG]: Offline Database / Copying project from workspace
    Message was edited by:
    micwic

    I completely reinstall JDev and set it to use subversion ... that resolve the problem and i'm no more in a position to reproduce it.

  • How to install BPEL on WLS and JDEV 11g/WLS

    Can somebody pls point me to a paper "How to install BPEL (Designer, Server, etc.) on WLS" ?!
    I downloaded 80 MB BPEL (Orabpel_10133_WebLogic.zip), unzipped it, but it does not container a "read.me"...
    I like to install the BPEL part for the JDEV - is that the right one ?
    Or do I need to install the whole SOA Suite (incl. BPEL Server) (570 MB) - but this seem to be based on OC4J?
    The core question: which (download) components do I need to install BPEL on WLS to make it run and usable ?
    TIA
    Bernhard

    Here is the readme you may be after
    http://download.oracle.com/docs/cd/E10291_01/doc.1013/e12534/toc.htm
    This is an old release. There is now 10.1.3.4, but I don't believe the stand alone BPEL is supported. You need to install the full SOA Suite. The doc for this is
    http://download.oracle.com/docs/cd/E12524_01/core.1013/e13058/toc.htm
    You need to install the Oracle version first then port it. This is all changing in 11g, hopefully due soon.
    I recommend the latter as it provides more functionality around patching.
    Also SOA Suite or BPEL is on certified against 9.2 not 10.3 so you cannot use it against JDev 11g. Your JDev version must be in sync with your SOA Suite version.
    cheers
    James

  • Securing a 1.5 web service using J2EE security and JDev 11g

    Hello,
    I'm looking for a tutorial or similar that will help me create a secure (1.5 EE with annotations) web service. I'm interested in just the development view at this point - xml file mods, etc.
    I did find a good resource on how to do this in 10.1:
    http://www.oracle.com/technology/products/jdev/101/howtos/securews/index.html
    and am wondering if it has been updated (even beta!) or in another form.
    Thanks

    Steve,
    The WSDLBaseURL property just prepends a string to the WSDL URL property so that you can abstract out the protocol, server and port values separately depending on the target system you wish to hit for the service call.
    Regards,
    Sam

  • Again and again : CLOB,SQLJ and JDEV 2.0 (BUG!!!)

    It's the same message than before but with more informations for
    jdev. Team
    I use this version of ORACLE (Evaluation version):
    Oracle8 Enterprise Edition Release 8.0.5.0.0 - Production
    PL/SQL Release 8.0.5.0.0 - Production
    CORE Version 4.0.5.0.0 - Production
    TNS for 32-bit Windows: Version 8.0.5.0.0 - Production
    NLSRTL Version 3.3.2.0.0 - Production
    I'm beginning to develop this project with JDeveloper 1.1
    (Evaluation version) and now, i continue this project with jdev
    2.0 Beta.
    With Jdev. 1.1 , I can compile "with Warning" and when i launch
    It, It's the Crach. (It's an Datatype message Error)
    With Jdev 2.0 Beta, I cannot compile.
    After reading the ORACLE DOCUMENTATION about using of CLOB in a
    SQLJ file, i try this:
    package Pack_ConnexionOracle;
    import sqlj.runtime.*;
    import sqlj.runtime.ref.*;
    import java.sql.*;
    // Importing the Oracle Jdbc driver package makes the code more
    readable
    import oracle.jdbc.driver.*;
    public class OraCrit
    public OraCrit(String Surl,String Susr,String Spwd)
    try
    DriverManager.registerDriver(new
    oracle.jdbc.driver.OracleDriver());
    DefaultContext.setDefaultContext(new DefaultContext
    (Surl,Susr,Spwd));
    catch(Exception ex)
    ex.printStackTrace();
    public String SQLRecupRequeteSQL(int iNumQuery) throws
    SQLException
    long lLongSQL;
    OracleClob ORARequeteSQL;
    String sRequeteSQL = new String();
    #sql { select requete_sql into :ORARequeteSQL from requete where
    num_query=:iNumQuery };
    #sql lLongSQL={values(dbms_lob.getlength(:ORARequeteSQL)) };
    #sql { call dbms_lob.read
    (:ORARequeteSQL,:lLongSQL,0,:sRequeteSQL) };
    return(sRequeteSQL);
    at the line 61:
    #sql { select requete_sql into :ORARequeteSQL from requete where
    num_query=:iNumQuery };
    I have this compilation error:
    Error:(61) Liste of links Variables INTO...Prohibited: illegal
    expression
    at the line 62:
    #sql lLongSQL={values(dbms_lob.getlength(:ORARequeteSQL)) };
    I have this compilation error:
    Error:(62) The Java type doesn't exist for the host element n 1..
    at the line 63:
    #sql { call dbms_lob.read
    (:ORARequeteSQL,:lLongSQL,0,:sRequeteSQL) };
    Same message than at line 62.
    Is it possible to use a CLOB in SQLJ with JDeveloper 2.0 Beta?
    HELP ME PLEASE,
    Thanks a lot.............
    null

    David,
    I think the problem is that the code you have written is for the
    8.0.5 JDBC driver (the default driver for JDev 1.1). By default,
    JDeveloper 2.0 uses the 8.1.4 JDBC driver and there are some
    syntax/API changes for LOB support between 8.0.5 and 8.1 (namely
    that OracleClob is replaced by oracle.sql.CLOB).
    Also, while you can still use the DBMS_LOB package, there are new
    methods provided in the oracle.sql package that allow more direct
    access to LOBs.
    You have two options:
    1. switch your driver to use JDBC 8.0.5
    2. switch your code to use the new 8.1 JDBC APIs
    1. Switch your driver version:
    a. For the project you are workin on, select Project->Project
    Properties from the menu
    b. Look in the Java Libraries list box. You want to see Oracle
    8.0.5 JDBC listed BEFORE Oracle 8.1.4 JDBC AND Oracle EJB. I
    don't have immediate access to Jdev right now, so I'm not
    positive what the libraries were called.
    If Oracle JDBC 8.0.5 is not listed at all, click the Add button,
    select the Oracle JDBC 8.0.5 library and add it to the list, then
    select it and drag it up so it is above the other two I
    mentioned.
    c. Exit from JDeveloper and edit the jdeveloper.ini file in your
    <JDEV_HOME>/bin directory. Make sure
    ..\jdbc\lib\oci8\classes111.zip appears in the IDE_CLASSPATH
    setting before ..\aurora\lib\classes111.zip (8.1.4 JDBC).
    2. Switch your code to use the new 8.1 JDBC APIs
    a. you will need to import oracle.sql.*
    b. change 'OracleClob' to 'CLOB'
    c. to read from the CLOB locator (you can still use DBMS_LOB, but
    there are new methods as well):
    char stream:
    //Read CLOB data into Reader char stream
    Reader char_stream = the_clob.getCharacterStream();
    char [] char_array = new char[10];
    int chars_read = char_stream.read (char_array, 0, 10);
    //Read CLOB data into Input ASCII character stream
    Inputstream asciiChar_stream = the_clob.getAsciiStream();
    byte[] asciiChar_array = new byte[10];
    int asciiChar_read =
    asciiChar_stream.read(asciiChar_array,0,10);
    The above examples are from the JDBC 8.1.5 User's Guide and
    Reference.
    Here is one from the 8.1.5 SQLJ doc:
    void readFromClob (CLOB clob) throws SQLException
    long clobLen, readLen;
    String chunk;
    clobLen = clob.length();
    for (long i = 0; i< clobLen; i+= readLen) {
    chunk = clob.getSubString(i,10);
    readLen = chunk.length();
    System.out.println("Read " + readLen + " chars: " + chunk);
    -L
    David DUPONT (guest) wrote:
    : It's the same message than before but with more informations
    for
    : jdev. Team
    : I use this version of ORACLE (Evaluation version):
    : Oracle8 Enterprise Edition Release 8.0.5.0.0 - Production
    : PL/SQL Release 8.0.5.0.0 - Production
    : CORE Version 4.0.5.0.0 - Production
    : TNS for 32-bit Windows: Version 8.0.5.0.0 - Production
    : NLSRTL Version 3.3.2.0.0 - Production
    : I'm beginning to develop this project with JDeveloper 1.1
    : (Evaluation version) and now, i continue this project with jdev
    : 2.0 Beta.
    : With Jdev. 1.1 , I can compile "with Warning" and when i
    launch
    : It, It's the Crach. (It's an Datatype message Error)
    : With Jdev 2.0 Beta, I cannot compile.
    : After reading the ORACLE DOCUMENTATION about using of CLOB in a
    : SQLJ file, i try this:
    : package Pack_ConnexionOracle;
    : import sqlj.runtime.*;
    : import sqlj.runtime.ref.*;
    : import java.sql.*;
    : // Importing the Oracle Jdbc driver package makes the code more
    : readable
    : import oracle.jdbc.driver.*;
    : public class OraCrit
    : public OraCrit(String Surl,String Susr,String Spwd)
    : try
    : DriverManager.registerDriver(new
    : oracle.jdbc.driver.OracleDriver());
    : DefaultContext.setDefaultContext(new DefaultContext
    : (Surl,Susr,Spwd));
    : catch(Exception ex)
    : ex.printStackTrace();
    : public String SQLRecupRequeteSQL(int iNumQuery) throws
    : SQLException
    : long lLongSQL;
    : OracleClob ORARequeteSQL;
    : String sRequeteSQL = new String();
    : #sql { select requete_sql into :ORARequeteSQL from requete
    where
    : num_query=:iNumQuery };
    : #sql lLongSQL={values(dbms_lob.getlength(:ORARequeteSQL)) };
    : #sql { call dbms_lob.read
    : (:ORARequeteSQL,:lLongSQL,0,:sRequeteSQL) };
    : return(sRequeteSQL);
    : at the line 61:
    : #sql { select requete_sql into :ORARequeteSQL from requete
    where
    : num_query=:iNumQuery };
    : I have this compilation error:
    : Error:(61) Liste of links Variables INTO...Prohibited: illegal
    : expression
    : at the line 62:
    : #sql lLongSQL={values(dbms_lob.getlength(:ORARequeteSQL)) };
    : I have this compilation error:
    : Error:(62) The Java type doesn't exist for the host element n
    1..
    : at the line 63:
    : #sql { call dbms_lob.read
    : (:ORARequeteSQL,:lLongSQL,0,:sRequeteSQL) };
    : Same message than at line 62.
    : Is it possible to use a CLOB in SQLJ with JDeveloper 2.0 Beta?
    : HELP ME PLEASE,
    : Thanks a lot.............
    null

  • Refactoring and Jdev 11g

    We are using Jdev 10.1.3.3 and we have many refactoring issues.
    Some of them basic problem but sometimes refactoring errors can be very very boring.
    we haven't chance to try jdev 11 about recatoring support.
    We wonder is it realy improved in Jdev 11 (or not) ?
    We want to learn your opinion about that. (especially users' opinion)
    Thanks.

    Hello,
    What kind of issues do you have? Refactoring works well under most circumstances for us, even with files under Subversion control, except for BC4J refactoring that always fails with some really nasty effects.
    Regards,
    ~ Simon

  • JDEV 11G TP3 [BUG]: Documentation / Fusion Developer Guide B31974-01

    page 14-24 Table 14-6
    Default Activity
    Determined as the destination of all incoming control flows cases ....
    Is it true ?
    The default activity may simply be the first selected, the entry point for the new created task flow based on the selection ... the definition seem to be more oriented to define a return value ?
    May be i misunderstand the definition !

    Hi Frank
    I understand what you mean but I still confusing by the text may be something is to be completed like (from different caller task flow) or something like that. I my understanding is correct.
    Just you to know i have seen in different pages double point instead only one.
    text text text.. Text
    instead of
    text text text. Text

  • JDEV 11G TP4 [BUG]: Offline Database / Copying project from workspace

    I have two workspaces.
    In these two workspaces i have a Documentation project containing offline database objects.
    Workspace 1
    +Documentation
    +connection
    +schema
    +objects
    +schema
    +objects
    Workspace 1
    +Documentation
    +connection
    +schema
    +objects
    +schema
    +objects
    I would like to copy the content of one schema from workspace 1 to a project in the workspace 2.
    Both schema have same name.
    Connection is different.
    The active workspace is workspace 2.
    In the wizard i'm able to select the Application (workspace), the project but the connection listed is only the one for workspace 2 (the active one). It normally has to be the ones corresponding to workspace 1 that i selected has the source for the copy.
    The result it that i got the list of objects from Documentation project from workspace 2 instead the desired ones from workspace 1.
    Hope its help

    Loose it again today ... please is it possible to address this problem ... it's really frustrating each time restore the configuration file.

  • Bug in JSF 1.2 RI using in JDev 11g

    Hi,
    We have found a bug in the JSF RI version used by JDev 11g TP2:
    In com.sun.faces.application.ApplicationImpl.createValidator, a MessageFormat is created using an erroneous pattern : created validator of type ''{0''}. This method is called by oracle.adfinternal.view.faces.util.rich.ConverterValidatorRegistrationUtils.addValidatorById. So, when the logging level is set to FINE, this crashes our application.
    FYI, this seems to be corrected in the last version (1.2_06) of the JSF RI.
    We tried replacing the jsf-api.jar and jsf-ri.jar files in lib\java\shared\oracle.jsf\1.2 with that new version but we are getting compilation errors in our JSPs.
    Before we spend time trying to do that, can you please tell me if that sounds like the right thing to do (or if there is another solution). Also, can you please confirm that the subsequent versions of JDev will include a corrected version of the JSF RI.
    Thanks.
    Olivier

    Hi,
    the right place is JDeveloper/jsf-ri for JDeveloper. I'll file a bug
    Frank

  • Problem creating reference heap snapshot with JDev 11g and OAS10g

    Has anyone successfully configured OAS 10g and JDev 11g for reference heap snapshots in the memory profiler?
    I have configured the server in opmn.xml and the client in JDeveloper. I can start the server and connect the JDev profiler and start and stop the use case.
    I do not, however, see any results in JDevelopers References panel, and I get an I/O error when stopping the use case
    "Profiler snapshot I/O error reading input file D:\profile\myfile.opi". This binary file is actually written, however.
    The Java start parameters in opmn.xml are:
    -agentlib:profiler15=port=4627,
    jarpath=D:\jdev\lib\profiler-agent.jar,enable=r,refpath=D:\profile\myfile.opi
    Environment:
    OAS v10.1.2.0.2,
    JDeveloper 11g, Techonology Preview 4 (11.1.1.0.22.49.49),
    JDK 1.5,
    Windows

    Hi,
    Thanks for the input, I'll refer my questions to that group.
    I can add that we have successfully profiled JVM memory usage and garbage collection on OAS10g using JDev 11g. See
    Re: Memory Profiling OPMN changes
    It's only the reference heap snapshot feature that does not seem to work for us in this setup.
    Thanks again,
    Niels Erik

  • Jdev 11g application is running very slow.

    Hi,
    I have deployed the application on Solaris OS, Weblogic 10.3.2 and JDev 11g.
    Application is running very slow, means each page is taking time to launch.
    Server setup is as follows:
    8 cpu's
    6gb of memory
    8gb swap
    15gb /apps
    20gb /logs
    Please let me know if I need to set any parameters at server level to improve the application performance.
    Thanks.

    Oh, yes, of course, your /logs partition should be 22.25 GB instead of 20 ;) (that was a joke before you run off and ask for more space)
    To amplify what Timo said, you've provided actually no information whatsoever that would help anyone even begin to know what is causing the performance problem. Have you looked at the EM screens? Have you turned on logging to see if it's the database perhaps? You need to do much more diagnosis.
    John

  • JDev 11G Release2 Critical Bug, is it?

    Hello, Oracle JDev 11G Colleagues
    I think i hit a bug with Release 2 of JDev 11g
    Here is the scenario for the bug (the bug happens when using a popup only)
    1- Created new simple Fusion ADF Application with JDev 11.1.2.0 without business components.
    2- Created a new jspx page.
    3- I put a button and a popup on the page
    4- Added a showPopupBehavior (operation) on the button and linked it with the popup
    5- Up untill now there are no problems when i click the button the popup is showing.
    6- Now added a dialog, PanelGroupLayout and an input text or an output text inside the PanelGroupLayout.
    7- Added a PopupFetchListener Method on a bean to modify the input text before showing the popup.
    8- Binded the Input or output text to the bean.
    9- Now when i run the application and click the button to show the popup i get (java.lang.NullPointerException) with the code ADF_FACES-60097.
    (it seems like the bean can't see the inputtext which is bounded to it)
    10- FYI, tried exactly the same steps with JDev 11G R1 (11.1.1.4) and it is working with no problems.
    here is the sample application Download
    Error Log:
    <RegistrationConfigurator> <handleError> ADF_FACES-60096:حدث استثناء بالخادم أثناء تصيير جزئي لصفحة PPR, رقم 1
    javax.el.ELException: java.lang.NullPointerException
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodExpression(UIXComponentBase.java:1579)
         at oracle.adf.view.rich.component.rich.RichPopup.broadcast(RichPopup.java:715)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1129)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:397)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:65)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:121)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.lang.NullPointerException
         at view.popupClass.myPopupFetch(popupClass.java:32)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         ... 44 more

    Forget it,, i solved the problem.
    Which i think is a bug,, it was something i haven't even thought to look at, because i never faced such problem.
    The bug is : Here is what i noticed and i think should be, in all Jdeveloper in general in all releases
    the properties of all the UI Components are set to their defaults ,, well guess what only in Jdev R2
    the popup when placed in a page its properties are all set to default except two properties:
    1- ChildCreation - is set to deferred, which is not the default value which is (<default> (immediate)) --- this property is the cause of the error.*
    2- AuotoCancel - s set to disabled, but the default value is (<default> (enabled)) --- this just a note.*
    Now after setting the ChildCreation property to its default (which it always was in all previous releases) i can modify the content of the popup even before displaying it to the user (Just like before ^_^)

  • Minor display bug in JDev 11g "View Annotation" with Subversion

    Hi all,
    A very minor visual display issue with the "View Annotations" feature of JDev 11g when using a Subversion repository. To reproduce, simply follow these steps:
    1). Open up any source file and right-click in the editor; select Versioning -> View Annotation. The annotations will be shown, and if you right-click again, you will see a check-mark next to the "View Annotation" menu item.
    2). Open another source file. Annotations are not shown. Right-click in the editor; you will see that "View Annotation" menu item displays a check-mark (even though annotations are not shown). Select Versioning -> View Annotation. Annotations are now shown, but you will see the check-mark is no longer displayed.
    To summarize my analysis; it appears that "View Annotation" was intended to be a global setting (as indicated by the check-mark), but is actually implemented on a file-by-file basis. Obviously a very minor display bug not affecting functionality, but a bug nonetheless.
    John

    John,
    I filed a bug
    thanks
    Frank

  • Bug in JDev 11g 11.1.1.0.2

    In the context of the JavaBean XML Model "Overview" editor i JDev 11g 11.1.1.0.2:
    When I add a validator and specify an appropriate text resource for the error message, JDev deletes my carefully authored description comment from the property resource bundle.

    Hi, I am using Oracle supplied HR schema, table EMPLOYEES. I created EO on EMPLOYEES table. All the attributes show correctly as Persistent first.
    Under Default Value section, I selected Radio Button "SQL" and entered valid Sql statement, Hit save button. I moved to next attribute, then I see. The previous attribute for which I entered Sql statement as default value, turned to Transient. But this is a Persistent attribute. It is not allowing me to change it back to Persistent.
    Hope the above steps will help to reproduce the bug in your system.

Maybe you are looking for

  • IR Reporting 11.1.2.2 Movement

    Hi All, Currently we are in a process of company takeover and we are working on moving our Brio System from one environment to other. Given below are the process we are following.. Plan-A: 1. Run the LCM Utility and take full backup of the old system

  • Photo Editor APP

    I need a suggestion on a Photo Editor APP, that will allow me to write captions on the photos... Any suggestions?

  • WLC Client Roaming Between APs

    I have a single WLC with AP1231's. I have clients associating to one AP, but they are not always re-associating to an alternate AP as always desired when roaming to an alternate location. Is there a way to adjust how clients associate to an alternate

  • Openoffice and otf fonts

    openoffice is unable to recognize otf fonts. This is a bug in oo.org (upstream) which was first submitted three years ago. However I have seen reports that debian oopenoffice can recognize otf fonts (ubuntu camily can't). Just wondering if anyone man

  • Help or advice

    Doing file handling at the moment, this is what l have dobe so far; import java.io.*; class FileTester { public static void main (String args[] ) { try { FileInputStream fis = new FileInputStream("c:\\temp\\input.txt"); InputStreamReader isr = new In