JSP Code completion DOES NOT WORK in JDev 9.0.3.1

Does anyone know when the next release of JDev will be? We are seriously considering dropping the use of JDev due to the bugs it has. In particular, the code completion for JSP authoring simply FAILS! This is a very very VERY nasty bug, and we are pleading!!!
Thanks,
-Sean

Works for me.
What OS/JDK etc are you using?

Similar Messages

  • Code completion does not work with table alias

    Hi all,
    When i use SQL developer to create a simple query like below i alias my tables so i can oversee it better.
    select
    * from  PRODUCTS p
    inner join PRODUCT_TYPES pt on PRODUCT_TYPES.PRODUCT_TYPE_ID = p.But when i give the driving table a alias like p and i try to do a join like you see in the code SQL developer will not show the columns from table PRODUCTS.
    What do i wrong or is this a bug?
    Thanks in advance,
    Daniel

    Hi,
    Sue, there are lots of code completion don't work either.
    Some of them are :
    1. The code completion seems not working if we put double-quote ("") to enclosed the object name.
    SELECT t. -- CTRL+Space the code completion won't work here
    FROM   MYSCHEMA."MYTABLE" t   2. The code completion also not working if we state some characters of the column name, although it still works for the uncomplete object name
    i.e the name of the column is : MYFIELD
    SELECT t.MY  -- CTRL+Space, the code completion won't work here
    FROM   MYSCHEMA.MYTABLE t   3. Sometimes, I can see two code completion lists when I use CTRL + Space
    Usually, it happens on the first connection's SQL Worksheet, the second and so forth are fine.
    SELECT t.     -- CTRL+Space, shows two lists which I can choose both of them
    FROM    MyTable t4. Code completion also not working when we try to access object from other schema. tbeech post it on
    Re: Code Assist -- Table Alias
    Are those code completion bugs are also logged?
    Regards,
    Buntoro

  • TS1292 How do I redeem a card with a code that does not work?  The support store takes me in circles?

    Help and support sends you in circles and does not help redeem a card with a code that does not work.

    Well, they have a website, but here is a link to their information about unlocking iPhones.
    http://www.att.com/esupport/article.jsp?sid=KB414532&cv=820#fbid=6d7EKuCF_dr
    You may not qualify for an unlock though.

  • Code completion particular not working

    Hello,
    in my program there are serveral internal classes. Each class has its own include file. Code completion seems not working for internal classes in other include files.
    example:
    lcl_class1 in includec01   (first included)
         class-methods static1_1
         methods method1_1
    lcl_class2 in includec02   (second included)
         class-methods static1_1
         methods method1_1
    problem:
    While development in lcl_class2 there are no code completion for lcl_class1.
    No code completation for lcl_class1=>static1_1
    but if you declarate "data lo_myclass type ref to lcl_class1." code completion is working fine for public member methods and attributes in the same file.
    In Functiongroups all working fine.
    Best Regards
    Markus Bauernschmitt
    Und da hier eh die meisten deutschsprachig sind und mein Englisch grausam ist, nachfolgend die Erklärung nochmal auf deutsch.... ;-)
    In meinen Programmen findet die Codevervollständigung keine interne Klassen aus vorangegangenen include Dateien. Dadurch werden weder die Klassen selbst noch die statischen Methoden angezeigt. Gebe ich eine statische Methode ein und möchte die Hilfe anzeigen (F2) erscheint die Fehlermeldung "Codeinformationen sind nicht verfügbar".
    Dieses Problem tritt nicht auf, falls die Deklaration einer Variablen in der gleichen Include Datei erfolgt.
    Deklaration einer Variablen in der aktuellen Include Datei -> Dokumentation der öffentlichen (nicht statische) Methoden und Attribute funktioniert
    Zugriff auf öffentliche (statische oder nicht statische) Methoden und Attribute von globalen Variablen (deklariert in einer anderen Datei) funktioniert dagegen nicht.
    Es sind nur anscheinend nur Programme betroffen. Bei Funktionsgruppen (getestet am Beispiel "ldemo_cr_car_rental_screen") trat der Fehler nicht auf.

    Hi Dominik,
    thank you for your answer. The internal classes are already simple and lightweight. In my understanding of OO I keep classes private as possible and so I create this specific "one program helper classes" in the smallest reasonable scope.
    However, this is a architektur decission. But the pivotal question is: Why working this kind of code completion in function groups but not in programs.
    Some additional information.
    - Code completion working in "START-OF-SELECTION."
    - In Functiongroup includes (Testcase lcl_class1 show as public type and lcl_class2 show as local public class.
    Best regards
    Markus

  • Steve Muenchs file upload sample (No. 69) does not work with JDev 10.1.3.1

    Hi,
    I installed and started Steves sample about uploading and storing OrdImage types (http://otn.oracle.com/products/jdev/tips/muench/jsfordimage/JSFOrdImageExample.zip).
    When I try to upload a file I get an exception:
    java.io.EOFException: Per-request disk space limits exceeded.
         at oracle.adfinternal.view.faces.webapp.UploadedFileImpl.loadFile(UploadedFileImpl.java:187)
         at oracle.adfinternal.view.faces.webapp.UploadedFileProcessorImpl.processFile(UploadedFileProcessorImpl.java:96)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doUploadFile(AdfFacesFilterImpl.java:247)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:163)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:106)I have found other postings concerning uploading a file with JDev10.1.3.1 (af:inputFile bug JDev10131 production ignores Per-request disk space limit
    Is it a bug with JDev 10.1.3.1? Any workaround available?
    I'm using JDev 10.1.3.1 on WinXP.
    Thanks,
    Markus

    I managed to correct this problem.
    The situation is the following:
    A CRUD page (Example: userList.jsp and userForm.jsp).
    The first page there is a af:table with tableSelectOne and a Edit button. (theres also other components, like af:menuBar and af:form, html, body and head)
    On submit, the backing bean(requestScope) gets the selected object (table.getSelectedRowData()), copy the values to the form fields and send (redirect=false) to the form page.
    When i try to update, the fileupload does not work and ignores the valueChangeListener. All the other fields are updated correctly.
    The form page is used to do Inserts and the upload works correctly.
    The problem is, when you redirect (redirect=false) from userList.jsp (usesFileUpload="false")
    to the other page, that uses the upload, the form page does not get the enctype="multipart/form-data"
    To solve it, put usesUpload="true" in both page , and you will get enctype="multipart/form-data", and upload to work.
    Changing components, the af:menuBar has a similar problem.
    I got a menubar with 2 goMenuItem.
    On each page the corresponding goMenuItem has selected="true".
    On redirect, from list page to form page, the selected goMenuItem is the one on the ListaPage, and not the form page! It only changes if I click on the tab I want!

  • JSP PageType does not work in JDev 10.1.3 or 10.1.3.1

    Am attempting to create tags for use with JSP pages using the SimpleTagSupport class (am using JDev 10.1.3). Can create the desired class and it shows up in its tld file. However, when attempt to register the tag into the Component Pallet using the following directions, as per JDev Help,
    Adding Pages and JSP Tags to the Component Palette
    You can add pages to the Component Palette in JDeveloper to include the tags from a custom JSP tag library you created or one you have imported. You can create a new page for each tag library you want to include on the Palette; if the tag library is large, you may want to include several new pages on which to organize the additional tags.
    Tip: Follow the steps in Registering a Custom Tag Library in JDeveloper to register the library if you do not want to add the library and tags to the Palette.
    To add pages and JSP tags to the Component Palette:
    1.     Choose Tools Configure Palette to open the Configure Component Palette dialog.
    2.     Click Add under the Pages list to open the New Palette Page dialog.
    3.     Enter a Page Name and select JSP as the Page Type, then click OK.
    The only available Page Types are the following
    css
    java
    oxd_usc
    snippet
    JSP is NOT an available option?
    I am having the same issue with JDv 10.1.3.1. If I use JDev 10.1.2 - Adding Pages and JSP Tags to the Component Palette - there is no problem and the JSP Page Type does show up.
    How does the one create a JSP tag in JDev 10.1.3 using SimpleTagSupport?????
    Thanks - Ken

    Steff - the tutorial was really quite helpful - for a variety of reasons.
    However, even though it gave enough information to circumvent the JDev problem, it does not fix the problem of JDev in not being able to display JSP as a Page Type.
    Would really like to find out how to use the JSP Page Type which seems to be broken? I do not like telling a customer - well JDev has a problem with specifying a JSP Page Type and even though the Help says you can do it - you really cann't.
    Again - THANKS for the great reference - Casey

  • Dvt:exportPivotTableData Does not work in JDev 12.1.2

    Hi All,
    I've been trying to get the export data from a Pivot Table to work using the dvt:exportPivotTableData tag. It does not. in my application I get a 404 error in a Google Chrome browser and an error dialog in IE10 when I press the button in the following source code snippet:
    [code]
    <af:button text="Export Pivot" id="b1">
         <dvt:exportPivotTableData filename="FeatureScores.xls" type="excelHTML"
              title="Feature Support Scores" exportedId="pt2"/>
    </af:button>
    <dvt:pivotTable id="pt2" value="#{bindings.ProductFeatureScoreROView1.pivotTableModel}"
                                                    var="cellData" varStatus="cellStatus" splitMode="enabled"
                                                    summary="#{viewcontrollerBundle.VENDOR_FEATURE_SCORES}" sizing="auto"
                                                    statusBarRendered="true" styleClass="AFStretchWidth">
    </dvt:pivotTable>
    [/code]
    I downloaded the ADF Rich Component WAR File (Version 12.1.1, or whatever the latest version is) and installed it in the JDev IDE to test the example sample. However, the dvt:exportPivotTableData doesn't work in the sample demo either. I don't get an error message from the sample, the page just refreshes and no data is exported.
    Any ideas?
    Best regards,
    Nigel

    Thank you, that solves the problem.
    Best regards,
    Nigel

  • Code completion(insight) not working in SQL Developer Version 2.1.1.64

    I recently downloaded SQL developer Version 2.1.1.64. However the code completion feature is not working automatically. I have checked the Automatically complete code in SQL worsheet checkbox under Tools->Preferences-> Code Editor-> Completion Insight.
    Strangely, I get the code completion pop up window when I explicitly press the completion insight shortcut(Ctrl + Space).
    Please help.
    Thanks and Regards.

    Hi, I am getting the following logs :
    Code completion time = 1015
    *...?aux tok2?, parse time = 63
    InsightableOracleDatabase.fetch() time = 360
    Code completion time = 844
    Finished parsing = 0
    *...?aux tok2?, parse time = 62
    InsightableOracleDatabase.fetch() time = 344
    Code completion time = 812
    Finished parsing = 0
    *...?aux tok2?, parse time = 63
    InsightableOracleDatabase.fetch() time = 359
    Code completion time = 891
    Finished parsing = 0
    Thanks

  • SQL Developer 2.1.1.64 - code template does not work in Windows Vista

    I have been trying to import a code template in SQL Developer 2.1.1.64 / Windows Vista using the following steps:
    1. Import template (xml) file using "Preferences > Database > SQL Formatter > Import..." option. Pressed "OK" button.
    2. Clicked on "Preferences > Database > SQL Formatter > Oracle Formatting".
    I expected to see the new profile under "Profile" drop-down-list-box, but it does not appear there.
    I tried putting the template (xml) file under various locations, including:
    (a) C:\Users\<user_name>\
    (b) C:\Users\<user_name>\AppData\Roaming\SQL Developer\
    Please let me know any suggestions that you may have.
    Thanks in advance.

    I got it to work. In step 1 that I mentioned, "OK" button should not be pressed; go to step 2 without pressing "OK" button.

  • Move jsp code into servlet, not work!!

    Hi:
    I am new in servlet and java, I can use jdom to read xml file
    into a jsp file, but whan I move jsp code into servlet, they are not work
    have any ideals?
    Thank!

    Hi:
    my.jsp
    <%@ page contentType="text/html"%>
    <%@ page import="java.io.File,
    java.util.*,
    org.jdom.*,
    org.jdom.input.SAXBuilder,
    org.jdom.output.*" %>
    <%
    String Records = "c:/XMl/Quotes.xml";
    SAXBuilder builder = new SAXBuilder("org.apache.xerces.parsers.SAXParser");
    Document l_doc = builder.build(new File(Records));
    my servlet
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.jdom.*;
    import org.jdom.input.*;
    import org.jdom.input.SAXBuilder;
    import org.jdom.output.*;
    public class XmlJdom extends HttpServlet
    String Records = "c:/xml/Quotes.xml";
    SAXBuilder builder = null;
    Element Author = null;
    Element Text = null;
    Element Date = null;
    * Initializes the servlet.
    public void init(ServletConfig config) throws ServletException
    super.init(config); //pass ServletConfig to parent
    try
    // JDOM can build JDOM trees from a variety of input sources. One
    // of those input sources is a SAX parser.
    SAXBuilder builder = new SAXBuilder("org.apache.xerces.parsers.SAXParser");
    catch ( org.jdom.JDOMEXception e)
    public void doGet(
    HttpServletRequest request,
    HttpServletResponse response)
         throws IOException, ServletException
         PrintWriter out = null;
         out = response.getWriter();
         try{                
         Document l_doc = builder.build(new File(Records));
    Element root = l_doc.getRootElement();
    //get a list of all recode in my XML document
    String l_pages = root.getChild("quote");
    String Iterator e = l_pages.iterator();
    while ( e.hasNext())
    Element l_quote= (Element) e.next();
         Element l_Author = l_quote.getChild("Date").getChild("Text");
    XMLOutputter l_format = new XMLOutputter();
    String ls_result = l_format.outputString(l_doc);
    out.println(ls_result);
    catch( org.jdom.JDOMException e )
         finally
              if( out != null)
                   out.close();
    Please tell me, what is wrong!!!
    Element root = l_doc.getRootElement();
    /* get a list of all the links in our XML document */
    List l_pages = root.getChildren("quote");
    Iterator Myloop = l_pages.iterator();
    while ( Myloop.hasNext())
    Element l_quote= (Element) Myloop.next();
         Element l_Author = l_quote.getChild("Date").getChild("Text");
    XMLOutputter l_format = new XMLOutputter();
    String ls_result = l_format.outputString(l_doc);
    ls_result = l_format.outputString(l_doc);
    %>
    <html><head><title></title></head>
         <body>
              <pre>
              <%=ls_result%>
              </pre>
         </body>
    </html>

  • JSP import directive does not work

    We are using WebLogic 5.1. We have a problem with our
              JSPs. The jsp compiler could not find the Connection class
              until we said java.sql.Connection.
              We had a valid import statement! We had
              <%@ page import="java.sql.*" %> and this page worked
              perfectly under Resin.
              Does Weblogic not implement the JSP spec correctly?
              Please help-- urgent!
              Thanks,
              Brian Williams
              

    Try to put flush="true" behind the page attribute, maybe it'll work now.
              for example: <jsp:include page="<%= inludeName%>" flush="true">
              Greetz
              Tom
              "rl" <[email protected]> schreef in bericht
              news:[email protected]..
              > Hello,
              > I'm new to weblogic.
              >
              > I got an jsp page wich shuold open another .
              >
              > I use the following command:
              >
              > <jsp:include page="<%= inludeName %>"/>
              >
              > This don't work.
              >
              > What can I do , that this will work?
              >
              > MfG,R.Lenz
              >
              >
              

  • ClassSpy ESDK sample does not work in JDev 11g. Works fine in 10g.

    I downloaded and unzipped JDev 11g.
    downloaded the ESDK samples via check updates.
    Installed samples and deployed them.
    When I UI debug classSpy sample , selecting jdev/bin/jdev.conf as a default run target , I get the following error.
    java.lang.IllegalStateException: Unable to create an InitialContext.
    The complete log of the UI debug window is as below.
    D:\Official\JDEV11G\jdk\bin\javaw.exe -client -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=2174 -Dhttp.proxyHost=emeacache.uk.oracle.com -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=null -Dhttps.proxyHost=emeacache.uk.oracle.com -Dhttps.proxyPort=80 -Dhttps.nonProxyHosts=null -Xmx512M -Xverify:none -XX:JavaPriority10_To_OSPriority=10 -XX:JavaPriority9_To_OSPriority=9 -XX:MaxPermSize=160M -Xbootclasspath/p:../lib/lwawt.jar -Dide.config_pathname=D:\Official\JDEV11G\jdev\bin\jdev.conf -Djava.class.path=..\..\ide\lib\ide-boot.jar;D:\Official\JDEV11G\jdev\lib\jdev-remote.jar -Dlaunched.from.jdev=true oracle.jdevimpl.runner.uidebug.debuggee.Debuggee -silent oracle.ide.boot.Launcher
    Listening for transport dt_socket at address: 2174
    Debugger connected to local process.
    Processing 276 classes that have already been prepared...
    Finished processing prepared classes.
    Exception breakpoint occurred at line 145 of EventDispatchThread.java.
    java.lang.IllegalStateException: Unable to create an InitialContext.

    As this is a preview release, not all extension have been updated to support 11g.
    Regards,
    Ric

  • Code formatter does not work like in Luna

    I am using this code formatter: https://github.com/libgdx/libgdx/blob/master/eclipse-formatter.xml
    It seems to be broken in Mars. It's not that you can't import it, but it behaves differently from Luna. The major aspect that I have noticed is that while in Luna the following code looks like this:
    removeButton.addListener(new ClickListener() {
    @Override
    public void clicked (InputEvent event, float x, float y) {
    editor.remove();
    in Mars it looks like this:
    removeButton.addListener(new ClickListener() {
    @Override
    public void clicked (InputEvent event, float x, float y) {
    editor.remove();
    Although this might seem minor just looking at it like this, the difference ruins commits because of how many places this change occurs. I haven't been able to find the setting to change it back, in Mars, to the way it works in Luna. Just for extra clarification, I am importing the exact same formatter to Luna and Mars, getting those respective results.

    I'm not allowed to use links, so please visit stackoverflow and open /questions/31073603/eclipse-4-5-java-formatter-changed
    A workaround is described.

  • Auto complete does not work when entering a URL

    firefox 3.10.6 on Fedora Linux fc13 x86_64. Show all history shows the history of visited web sites. "Remember History" is on. The auto complete was working. I did try unchecking view the bookmark toolbar, but not sure if that caused the loss of auto complete.

    I tried that and it doesn't work. I have Mac OX v 10.6.4 . Anyone have a clue? It's very frustrating. thanks.

  • ClassSpy extension SDK sample does not work with JDev 11g

    I downloaded and unzipped JDev 11g.
    downloaded the ESDK samples via check updates.
    Installed samples and deployed them.
    When I UI debug classSpy sample , selecting jdev/bin/jdev.conf as a default run target , I get the following error.
    java.lang.IllegalStateException: Unable to create an InitialContext.
    The complete log of the UI debug window is as below.
    D:\Official\JDEV11G\jdk\bin\javaw.exe -client -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=2174 -Dhttp.proxyHost=emeacache.uk.oracle.com -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=null -Dhttps.proxyHost=emeacache.uk.oracle.com -Dhttps.proxyPort=80 -Dhttps.nonProxyHosts=null -Xmx512M -Xverify:none -XX:JavaPriority10_To_OSPriority=10 -XX:JavaPriority9_To_OSPriority=9 -XX:MaxPermSize=160M -Xbootclasspath/p:../lib/lwawt.jar -Dide.config_pathname=D:\Official\JDEV11G\jdev\bin\jdev.conf -Djava.class.path=..\..\ide\lib\ide-boot.jar;D:\Official\JDEV11G\jdev\lib\jdev-remote.jar -Dlaunched.from.jdev=true oracle.jdevimpl.runner.uidebug.debuggee.Debuggee -silent oracle.ide.boot.Launcher
    Listening for transport dt_socket at address: 2174
    Debugger connected to local process.
    Processing 276 classes that have already been prepared...
    Finished processing prepared classes.
    Exception breakpoint occurred at line 145 of EventDispatchThread.java.
    java.lang.IllegalStateException: Unable to create an InitialContext.

    You better try JDeveloper and OC4J 11g Technology Preview
    Timo

Maybe you are looking for

  • Issue running a report from SAP Business One

    I have an issue running a particular report from SAP Business One. I am using Crystal Reports Add-On, all of the reports are working fine except one. When accessing the last page of the report or any page from inside the report the followiong error a

  • Best Way to Get Indexed in Google

    What is the best technique for indexing a new site in google? I have been using social bookmarking with good success, but I was wondering what everyone else is doing.

  • Help: I need Windows 8.1 32-bit Driver for my Officejet 4215

    I need driver for my Officejet 4215. I downloaded the HP Printer Install Wizard for Windows - hppiw.exe from http://support.hp.com/us-en/drivers/selfservice/HP-Officejet-4215-All-in-One-Printer-series/351105/model/351107?sku=Q5601A&ssfFlag=true#Z7_30

  • Bode magnitude graph cursor not following plot

    Hi, I was wondering if anyone would be able to shed some light on a problem that I am having regarding an XY graph cursor. I have developed a simple VI to determine the characteristics of a low pass filter using a sine wave ramped in frequency and su

  • Mobile site accordian closes but bottom tab is open when site reopens

    the mobile site accordian closes but when reopened, the bottom tab is open. because previously i had the "can overlap" checked but it was permanently pushing down items below, i was advised to uncheck that feature. this solved that problem but i wond