Bug: JDev 9052 Build (1618)

Start by placing an invalid attribute within one the your tags.
1. Right click within a UIX file.
2. Click Validate XML
3. Click on the error.
It takes you to the top of the page. I expected to go to the line with the error on it.

Typo:
<textInput sytle="handIconGroup" ... />
should read
<textInput styleClass="handIconGroup" ... />

Similar Messages

  • Bug: JDev 9052 Build (1618) html:img ... /

    The XSS <style selector=...> is not honored in conjunction with the <html:img> tag.
    1. Create an xss style:
    <style selector=".handIconGroup">
    <property name="cursor">hand</property>
    <includeStyle name="DarkAccentBackground"/>
    </style>
    2. Create a UIX page and add the following widgets:
    a. <html:img style="handIconGroup" ... />
    b. <textInput sytle=handIconGroup" ... />
    4. Run the page, and hover over both widgets.
    I expected the cursor to turn into a "hand" when hovered over both widgets. The <html:img ... /> tag dose not respect the handIconGroup style.

    Typo:
    <textInput sytle="handIconGroup" ... />
    should read
    <textInput styleClass="handIconGroup" ... />

  • Password protected JDev10g 9052 build 1618

    I downloaded the jdev9052.zip file from otn yesterday since I like to keep up to date on my development tools.
    When I unpacked it today, I was presented with the message that several files were password protected. What's up with that?
    The files are:
    * javaw.exe
    * hpi.dll
    * ioser12.dll
    * java.dll
    * net.dll
    * jvm.dll
    * verify.dll
    * zip.dll
    Can somebody PLEASE direct me to a passphrase I can use to unpack these files.
    And might I add; If this is a stunt from Oracle to increase the purchase level of it's products, it might be usefull to provide information on this before people start downloading what they think is a fully operational product.

    One impact of extracting on top of an old version of the product is that any extensions you had for the old version will continue to be loaded in the new version. Because the extension API has changed, these may fail at runtime in unexpected ways. Basically, files don't get deleted that have been removed in the new release.
    This of course brings up the old debate about whether JDev should have an installer... with an installer, you wouldn't have to worry about this (it would be the job of the installer to worry about it).
    That said, a lot of people really like the simple zip-and-go approach JDev takes to installation. Just always zip-and-go somewhere fresh... that's the tested and supported configuration, and we've had a few reports of problems when customers have extracted atop old releases.
    Thanks,
    Brian

  • Error: java.lang.NoClassDefFoundError in Jdeveloper 9.0.5.2.(Build 1618)

    Error: java.lang.NoClassDefFoundError org.apache.struts.taglib.BaseHandlerTag
    Hi,
    We are using Jdeveloper10g version 9.0.5.2(Build 1618) as our IDE. We have a struts based controller architecture in our project. So we frequently use struts tags in our jsp pages. The application is working fine but sometimes when i do some changes in one of or a number of the jsp files in Jdeveloper , after recompiling i get the above error in number of jsps though i haven't touched those jsps at all.
    I found a work around for this problem by just shutting down the Jdeveloper and again starting it.
    It gives such kind of errors for only stuts based tag containing jsps.
    Do anybody has any solution for this persistent problem.
    My whole team is facing this problem.
    With Warm Regards,
    Datta.

    No anyone knows?

  • Migrating application from Jdev 9052 to Jdev1012

    Hi,
    I've an application fully developed under Jdev9052, I've migrate it under Jdev1012 but don't run correctly like in the other develop environment. Is possible to have documentation about the difference between both environment? is possible that the new JDev don't support entirely the properties of old version?
    I'm attempt to remain in the old JDev but I'm afraid that in the future this will not supported by Oracle
    thanks
    Francesca Brucciani

    Hi,
    my application was developed in Jdev9052 but migrating it in Jdev1012 I’ve meet problems.
    reading the document “http://www.oracle.com/technology/products/jdev/htdocs/10.1.2.0.0/readme.html“ migration section, I noted that the problems in my applications are because of the new ADF iterator bindings.
    Implementing the AddCriteria function (see bc4j properties) in the Search, adding more than one criteria row, I’ve meet this problem:
    In my jsp, during the search fase, if I want to add a criteria row, I need to replicate the attribute fields for my View Object, then I need to name the fields for example with “row_index_nameField”, so that when I add a criteria row I have to increase the index (ex: the first row will have all the fields with name will be row_1_nameFieldA, row_1_nameFieldB…, the second row will have all the fields wich name will be row_2_nameFieldA, row_2_nameFieldB).
    For this reason my jsp will have this code:
    <c:set var="indexRow" value="1" />
    <c:forEach items=" ${bindings.ViewObject1.rangeSet} " var="Row">
    <tr>
    <th> <c:out value="${bindings. ViewObject1.labels['FieldCode']}"/> </th>
    <td> <input type="text" name="row_<c:out value='${indexRow}' />_FieldCode" value='<c:out value="${Row['FieldCode']}"/>' /></td>
    </tr>
    <tr>
    <th> <c:out value="${bindings. ViewObject1.labels[FieldDesc]}"/> </th>
    <td> <input type="text" name="row_<c:out value='${indexRow}' />_FiledDesc" value='<c:out value="${Row[FieldDesc]}"/>' /></td>
    </tr>
    <c:set var=" indexRow" value="${indexRow + 1}" />
    </c:forEach>
    and my java class is:
    (searching the rows by “String stmtHTMLAttr = "row" + i + "_" + attrDefs[indAttr].getName();”)
    public void onAddCriteria(DataActionContext ctx){
    HttpServletRequest request = ctx.getHttpServletRequest();
    DCIteratorBinding iterBind = ctx.getBindingContainer().findIteratorBinding(this.iteratorName);
    ViewCriteria vc = iterBind.getViewCriteria();
    int countVCRow = vc.size();
    if (countVCRow > 0)vc.clear();
    int indexRow = 0;
    if (countVCRow > 0){
    for (int i = 0; i < countVCRow; i++) {
    Row vcRow = vc.createViewCriteriaRow();
    boolean isPresentCondition = false;
    AttributeDef[] attrDefs = iterBind.getAttributeDefs();
    for (int indAttr = 0; indAttr < attrDefs.length; indAttr++) {
    String stmtHTMLAttr = "row" + i + "_" + attrDefs[indAttr].getName();
    if (request.getParameter(stmtHTMLAttr)!= null){
    String valParam = request.getParameter(stmtHTMLAttr).trim();
    if (!"".equals(valParam)){
    vcRow.setAttribute(attrDefs[indAttr].getName(), valParam);
    isPresentCondition = true;
    if (isPresentCondition){vc.add(vcRow);}
    Row vcRow = vc.createViewCriteriaRow();
    vc.add(vcRow);
    iterBind.getViewObject().applyViewCriteria(vc);
    public void onSubmit(DataActionContext ctx) {
    DCIteratorBinding iterB = ctx.getBindingContainer().findIteratorBinding(iteratorName);
    HttpServletRequest request = ctx.getHttpServletRequest();
    ViewCriteria vc = iterB.getViewCriteria();
    int countVCRow = vc.size();
    if (countVCRow > 0)vc.clear();
    int indexRow = 0;
    if (countVCRow > 0){     
    for (int i = 0; i < countVCRow; i++) {
    Row vcRow = vc.createViewCriteriaRow();
    boolean isPresentCondition = false;
    AttributeDef[] attrDefs = iterB.getAttributeDefs();
    for (int indAttr = 0; indAttr < attrDefs.length; indAttr++) {
    String stmtHTMLAttr = "row" + i + "_" + attrDefs[indAttr].getName();
    if (request.getParameter(stmtHTMLAttr)!= null){
    String valParam = request.getParameter(stmtHTMLAttr).trim();
    if (!"".equals(valParam)){
    vcRow.setAttribute(attrDefs[indAttr].getName(), valParam);
    isPresentCondition = true;
    if (!((!isPresentCondition)&&(countVCRow>1))) {vc.add(vcRow);}
    iterB.getViewObject().applyViewCriteria(vc);
    iterB.executeQuery();
    this application works correctly in Jdev 9052.
    problems meet in jdev1012:
    -During the Search phase:
    1. the first time the fields are empty (work ok in both version of Jdev)
    2. the next searches, in Jdev 9052 the fields contained the previous search criteria inserted (work ok), in Jdev 1012 contained the value of the first row of the rowset found in the previuos search(work ko).
    -When add a criteria row, the first row have the value of the first row of the rowset found in the previous serach and don’t add a new empty row to add the new criteria condition
    - closing the windows and reopen it, during the search phase the foreach of the jsp results empty, because the rangeSet is null!
    how can I change my application for to run it in JDev 1012?
    thanks
    Francesca Brucciani

  • Jdev-drop5 build 29- webservice wizard (WSDL to JAVA)

    Hello folks,
    We have have encountered a situation with Jdeveloper – webservices wizard.
    This happens when we try to generate the java classes from the wsdl and schemas
    To generate the javaTypes from the xsd we use the JDEV wizard.
    Here’s what we see:
    EquipmentType.java is supposed to be generated by the wizard from EquipmentType.xsd (schema) when it processes the
    wsdl, which has an operation with parameters pertaining to EquipmentType
    1. With JDEV TP4, it works fine. The java types are generated with no issues.
    2. Om using JDEV – Drop5 (Build 26 and Build 29)
    The java types are not generated and the wizard errors of saying that ‘EquipmentType.java’
    does not exist, when actually it is supposed to generate this file.
    Please help.
    thanks
    -Prashant

    Prashant,
    As you are obviously an oracle employee using oracle internal builds, it seems you should ask this in an internal forum.
    None of us in the "wild" have access to drop5 - at any rate, check Frank's reply on the other place you crossposted this to.
    John

  • Jdeveloper(9.0.5.2 build 1618 )connect standalone OC4J server error

    Using Jdeveloper(Version: 9.0.5.2 build 1618 )connect to standalone OC4J server(Version:pdk_oc4j_extended 9.0.4.0.0 download from OTN) , test success , but connect occur following errors :
    java.lang.NullPointerException     at
    oracle.jdevimpl.cm.dt.ConnectionController$ConnectionExpander.selectConnection(ConnectionController.java:547)
    at
    oracle.jdevimpl.cm.dt.ConnectionController$ConnectionExpander.access$1000071(ConnectionController.java:514)
    at
    oracle.jdevimpl.cm.dt.ConnectionController.runNewConnectionDialog(ConnectionController.java:508)     
    at oracle.jdevimpl.cm.dt.ConnectionController.runNewConnectionDialog(ConnectionController.java:484)     
    at oracle.jdevimpl.cm.dt.NewAppServerConnectionWizard.invoke(NewAppServerConnectionWizard.java:71)     
    at oracle.ide.WizardManager.invokeWizard(WizardManager.java:484)     at
    oracle.ide.WizardManager$1.run(WizardManager.java:538)     at
    java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)     at
    java.awt.EventQueue.dispatchEvent(EventQueue.java:454)     at
    java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)     at
    java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)     at
    java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)     at
    java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)     at
    java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

    No anyone knows?

  • JDev 10g build 1811 Bug

    I follow viewlet whitch provided from oracle ADF.
    But I cann't make Business Components Diagram with this Error. My OS is Window XP and I use JDev full version.
    java.lang.NoClassDefFoundError: oracle.bm.uml.metamodel.MMModelElement
         at oracle.bm.addinUtil.ModelWizard.buildAndTestUrl(ModelWizard.java:272)
         at oracle.bm.addinUtil.ModelWizard.invoke(ModelWizard.java:458)
         at oracle.ide.WizardManager.invokeWizard(WizardManager.java:484)
         at oracle.ide.WizardManager$1.run(WizardManager.java:538)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

    Hi Larry,
    Thanks a lot for bringing to our notice. I will test it and report it to appropriate team, so that it gets fixed.
    Regards,
    Vijay Venkataraman

  • BUG: Jdev 11.1.1.0.0 -- DB table data export column order is not preserved

    Hello,
    I've ran into a problem with Jdeveloper 11g, public release, Build JDEVADF_MAIN.BOXER_GENERIC_081002.2127.5156. Oracle IDE version is 11.1.1.0.31.51.56
    When I connect to Oracle database, get the table list, right click on the table and select 'Export Data'->csv. The dialog box opens with three tabs: Format, Columns, Where. The column order displayed in both tabs Columns and Where is alphabetic. Because alphabetic ordering re-arranges columns from their initial ordering in the table, this screws up the export because columns are not in their intended order. This same problem occurs when I try to export data from views to generate a CSV file with a particular column order for our vendor. Since Jdev scrambles the column order I have to rely on SQLdeveloper to generate CSV exports, since SQLdeveloper has the same functionality but it preserves the column order.
    It would be nice if Jdeveloper preserved the column order on export.
    Thanks!

    Update:
    This bug is now also present in the SQL Developer 1.5.3.
    I've posted a bug report on the appropriate forum: BUG: SQL Developer 1.5.3 CSV export column order broken

  • Error while runtime customization for task flows in jdev drop6 build 11

    Hi,
    I am using jdev drop 6 build 11. I am trying to build a webcenter application in which I want to drag and drop task flows at runtime. I am able to add the ADF components at runtime. I am also able to expose the task flow at runtime on the UI after creating my own catalog. But if I try to add the task flow by dragging it, it gives an unhandled exception and it shows that no metadata found for metadata object for the task flow. And after this error I am not able to add the ADF components as well. It gives the same error. This is the error I get:
    oracle.adf.controller.ControllerException: ADFC-06002: Unhandled exception.
         at oracle.adfinternal.controller.util.Utils.createAndLogControllerException(Utils.java:193)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.handleException(ControlFlowEngine.java:588)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.invokeTaskFlow(ControlFlowEngine.java:181)
         at oracle.adfinternal.controller.state.ChildViewPortContextImpl.invokeTaskFlow(ChildViewPortContextImpl.java:63)
         at oracle.adfinternal.controller.state.ControllerState.createChildViewPort(ControllerState.java:1236)
         at oracle.adfinternal.controller.ControllerContextImpl.createChildViewPort(ControllerContextImpl.java:69)
         at oracle.adf.controller.internal.binding.DCTaskFlowBinding.createRegionViewPortContext(DCTaskFlowBinding.java:255)
         at oracle.adf.controller.internal.binding.DCTaskFlowBinding.getViewPort(DCTaskFlowBinding.java:198)
         at oracle.adf.controller.internal.binding.TaskFlowRegionModel.doProcessBeginRegion(TaskFlowRegionModel.java:127)
         at oracle.adf.controller.internal.binding.TaskFlowRegionModel.processBeginRegion(TaskFlowRegionModel.java:87)
         at oracle.adf.view.rich.component.fragment.UIXRegion$RegionContextChange.doChangeImpl(UIXRegion.java:1006)
         at oracle.adf.view.rich.context.DoableContextChange.doChange(DoableContextChange.java:91)
         at oracle.adf.view.rich.component.fragment.UIXRegion._beginInterruptibleRegion(UIXRegion.java:707)
         at oracle.adf.view.rich.component.fragment.UIXRegion.processRegion(UIXRegion.java:454)
         at oracle.adfinternal.view.faces.taglib.region.RegionTag.doStartTag(RegionTag.java:120)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:50)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspIterationTagNode.executeHandler(OracleJspIterationTagNode.java:45)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspNode.execute(OracleJspNode.java:76)
         at oracle.jsp.runtimev2.ShortCutServlet._jspService(ShortCutServlet.java:77)
         at com.orionserver[Oracle Containers for J2EE 11g (11.1.1.0.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:758)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:441)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:706)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:627)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:116)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.security.jazn.oc4j.JAZNFilter$3.run(JAZNFilter.java:432)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:309)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:450)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:600)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:351)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:257)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:174)
         at oracle.oc4j.security.OC4JPrivilegedAction.run(OC4JPrivilegedAction.java:41)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.oc4j.security.OC4JSecurity.internalDoPrivileged(OC4JSecurity.java:374)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:389)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.OC4JRequestDispatcher.executeAction(OC4JRequestDispatcher.java:161)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:178)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:415)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:267)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:475)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:143)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:188)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:652)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:243)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:203)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:185)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:278)
         at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:87)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:278)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:238)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:195)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:138)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:116)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.security.jazn.oc4j.JAZNFilter$3.run(JAZNFilter.java:432)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:309)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:450)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:600)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:351)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.doDispatchRequest(HttpRequestHandler.java:977)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:878)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:676)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:644)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:436)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:185)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:153)
         at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:276)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: oracle.adf.controller.ControllerException: ADFC-02001: ADF Controller cannot find '/WEB-INF/one_task-flow-definition.xml'.
         at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourceProvider.getMetadataObjects(MdsMetadataResourceProvider.java:448)
         at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourceProvider.loadUnmutalbeMetadataResources(MdsMetadataResourceProvider.java:358)
         at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourceProvider.getResources(MdsMetadataResourceProvider.java:170)
         at oracle.adf.controller.internal.metadata.MetadataService.getTaskFlowDefinition(MetadataService.java:214)
         at oracle.adfinternal.controller.activity.TaskFlowCallActivityLogic.findTaskFlowDefinition(TaskFlowCallActivityLogic.java:928)
         at oracle.adfinternal.controller.activity.TaskFlowCallActivityLogic.invokeTaskFlow(TaskFlowCallActivityLogic.java:180)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.invokeTaskFlow(ControlFlowEngine.java:161)
         ... 107 more
    Caused by: oracle.mds.core.MetadataNotFoundException: MDS-00013: no metadata found for metadata object "/WEB-INF/one_task-flow-definition.xml"
         at oracle.mds.core.MetadataObject.getBaseMOFromCache(MetadataObject.java:1567)
         at oracle.mds.core.MetadataObject.getBaseMO(MetadataObject.java:898)
         at oracle.mds.core.MDSSession.getBaseMO(MDSSession.java:2361)
         at oracle.mds.core.MDSSession.getMetadataObject(MDSSession.java:1025)
         at oracle.mds.core.MOResolver.getMetadataObjects(MOResolver.java:185)
         at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourceProvider.getMetadataObjects(MdsMetadataResourceProvider.java:402)
         ... 113 more
    Any information on this?
    Thanks for the help in advance.

    This isn't really the appropriate forum for ADF questions. You should have better luck with the JDev forum:
    JDeveloper and ADF

  • Bug jdev 10.1.3 production: sequences showing up as tables

    Hello,
    A bug I have found: when I generate a script to create database objects (tables & sequences) and choose in the wizard to execute against the DB connection, the sequences are showing up under the "tables" folder in the connection browser (Oracle DB). After I disconnect and re-browse, they are in the correct "sequences" folder.
    Regards,
    John

    Hi John,
    Could you provide more detailed steps to reproduce?
    Thanks,
    Lisa
    JDev QA

  • ##BUG## Jdev/ADF/UIX/SCM

    I'm developing an UIX application with jdev 9.0.5.1, adf and SCM to versioning. And i've been lost half day to catch an problem, that i think, was a scm bug.
    Explaining :
    I've create a uix page and, drag and drop a VO from data control to create input form. Then i put an commit button, in same way. I look to page struture on tab UIModel and there is commit, i look to structur on my UIModel.xml and there is. So i think that all ok. But when i run and try to save changes the messagebox show java.lang.nullPointerException, and on log nothing appear. Only an strange message "Warning: using introspection to lookup return value from :Commit.". Then when i try to see xml source from uimodel, there is no commit dccontrol. I've to do manual check out from uimodel.xml and to all again. I think that scm must do it by his self.

    In case you have access to Metalink, could you please check Note 300714.1 and see if it relates to your case ?

  • Error #1037 Bug Report, Flash Builder 4.6

    I tried reporting this bug through the proper channels, but the link on the page at https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform for filing Flash Builder bugs is not working.  The page it links to is "taking too long to respond".
    I'm using Flash Builder 4.6, and I'm getting error #1037.  According to the documentation at http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/runtimeErrors.html, this isn't something that should be happening, and when the programmer doesn't believe the swf has been corrupted, Adobe has requested that they report it.  Even though I feel something like this always justifies the word "corrupted", I don't believe it's been corrupted in this strict of a sense; I'm just building the swf in Flash Builder.  The project itself is fairly simple and doesn't have any out-of-the way configurations.
    Take the following line of code in the start class:
    m_com.onBWDone = rnd.handleBWDoneResults;
    the following code in m_com's class:
    private var m_fOnBWDone:Function;
    public function set onBWDone(pValue:Function):void
        m_fOnBWDone = pValue;
    and the following code in rnd's class:
    public function handleBWDoneResults(... pRest):void
    The line of code in the starting class is what's throwing the error.  If I comment that line of code out, the error goes away.  If I simply make m_fOnBWDone a public variable, delete the setter, and set the variable's value directly in the starting class, that works too.  But if I try to make it private and then use a trivial public property to set it like that, the error is raised.
    @Adobe Please fix this.  Thanks.

    The docs say it could be a few things, just one of which is the corrupt portion.
    You shouldn't have a method and property with the same name either. In any get/set situation for a private value your private value is typically prefaced just to avoid the collision with the public get/set. For the same reason, colliding, methods and properties should be unique and I am also confused as to how it compiled (although FB just warns you there's an issue and still allows you to proceed).
    What you're doing there appears to be highly dynamic, so I really can't say what kind of method names you're assigning with pValue. Nor can the compiler until you send 2 different functions with the same name there and it errors on you. Only you know what functions are being assigned in there, or what you do with it after that.

  • BUG-JDev 11G 5407-Project level resource bundle usage messes the page

    When you define a resource bundle on the project properties and if you are using templates the page is not properly rendered in the design view but it runs fine.
    What happens is , JDev adds a JSTL set tag just before the *<af:pageTemplate>* tag and this confuses the designer. To workaround I defined the bundle variable in faces-config, it worked fine for the existing texts but when you add a new text to the page JDev keeps adding this set tag at the beginning of the page and you need delete it each time.
    It looks like a bug to me ..
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:dvt="http://xmlns.oracle.com/dss/adf/faces"
              xmlns:mcc="http://com.micros.adf.controls"
              xmlns:c="http://java.sun.com/jsp/jstl/core">
    <c:set var="abcdmainBundle"
             value="#{adfBundle['com.abcd.view.zzzz.messages.AbcdMain']}"/>
      <af:pageTemplate viewId="/tmpl/abcdMainFgTmpl.jspx" id="pt1">
        <f:facet name="main">
     

    Hi,
    we have the same issue and therefore do not use the feature of the property inspector.
    Instead we open the *.properties file in jdev and edit it manually.
    There is bug 7537379 around this c:set tag which MAY BE fixed in the next release (11.1.1.2.0) but I don't know if this bug also covers exactly your problem.
    regards
    Peter

  • Date Bug in Report Builder

    Hi guys,
    Problem / Bug
    i have a very simple layout report on scott.emp table. i passes two parameters throught parameter form.
    i have assigned the data type as well as the initial value.
    Report paremeter form takes and on message shows a date which has not been mentioned / assigned any where. like (01/02/3021).
    after parameter form having few conditions like if dates are blank then parameter P1 Gets first condition else it gets the second one.
    but report builder runs the first condition each time what ever you do with it.
    mean this is joke with a developer.
    i have re-installed the developer6 no of times and also used tips from fellows to get the right results.
    anyway i will appreciate if some body could resolve this problem.
    Regards,
    Kamal

    Just a couple of things you could look at:
    1) Is P1 null. In PL/SQL, equality comparisons against any null value will always return FALSE. You need to directly compare against null - "if (:p1 is not null)/if (:p1 is null)"
    2) P1's format mask. If the input format mask is something like: 'YYYY' then the date will show up as '01-JUL-YYYY' regardless of the date you gave it (or subsequently set it to in the PL/SQL).

Maybe you are looking for

  • How do I add a testimonial comment box to my site ?

    I am currently almost finished building my site, I want to add in my footer a comment box, so the visitors can leave testimonials about my business. I would like the data that they enter to automatically appear in another div and fade in and out. So

  • Possible to fix bad clusters on iPod HD ?

    Hello Everyone, I got a 3G 40 gb ipod ... i recently started having trouble with the ipod , it keeps freezing whenever i upload/download stuff to it .. but it plays mp3s fine ! i restored it a few times , but it wont fix the problem ... i tried forma

  • Error in AS01 E003 SYST: Period 000 is not valid in financial year variant

    Hello SAP Gurus, I am encountering an error when creating an asset for a certain CC. Upon saving, error message 'E003 SYST: Period 000 is not valid in financial year variant' appears which prevents me creating the asset. My FY Variant K4 is already a

  • MBP starts up in Single User Mode by default..

    I restarted the machine because the trackpad was acting up. After file vault reclaimed unused disk space, the computer restarted with a black screen with "localhost :/ root#" in the upper left screen. I know very little unix so please forgive my lack

  • Error when trying to activate the NI Fbus Ver 4

    I have tryed the online activation, fill out all the info then when i hit continue i get an error, i then tried the phone activation line gave all my info and it said technical error, i then stayed on the line and talked to someone who also tryed it