Usage of WCM tags in .jspx files

Hi,
Is it allowed to use wcm tags in simple .jspx files? Is this part of the wcm tags certification such that any issues with this can be raised as an SR in future.
Regards,
Hemant

In general, you should be able to use WCM tags in any JSP* files - that's what the concept of SSXA is all about. See also this post by Bex Huff: http://bexhuff.com/2010/11/web-conference-oneclick-web-content-management
When it comes to raising issues as SR - make sure you understand the licensing model. If you want to use SSXA features, you will need the UCM license for all environments that benefit from SSXA. Of course, you still can publish a SSXA site via Site Studio Publishing Utility to create a pure web site (where the license is not needed).

Similar Messages

  • Not able to load jspx file from the classpath in Integrated OC4J

    Hi,
    I am using integrated OC4J from my jdeveloper to deploy my application as an ear file. It contains one jar file (with ejb deployment desscriptors) and a war file (including Model and Viewcontroller project contents).
    The war file contails a jspx file (say Test.jspx) which contails a link to another jspx file (say Remote.jspx) which resides in its WEB-INF/lib directory.
    When I load Test.jspx and click on the link, it fails to look for the Remote.jspx. It displays a message "OracleJSP error: java.io.FileNotFoundException:" on the web browser.
    From the message written to log file, found that it is actually trying to search for Remote.jspx file in the current context.
    Also tried including the classpath to the jar file containing the Remote.jspx file in orion-web.xml of the web application. using the following:
    <classpath path="file:/xxx/yyy.jar" />
    The issue is still there even after this.
    Can anyone suggest me how to achieve this?
    Thanks,
    Aparna

    this.getCodeBase(), would get RSPL / RLog or whatever you have in your codebase (html parameter of
    the OBJECT/APPLET(:hope not) tag.
    URL u = new URL(this.getCodeBase(), "../something.jpg");
    would get RSPL/something.jpg
    URL u = new URL(this.getCodeBase(), "../VIRA/JPG/00/1.jpg");
    would get RSPL / VIRA / JPG / 00 / 1.jpg
    If you are not sure what your codebase is your can print it out:
    System.out.println(this.getCodeBase().toString());

  • JDeveloper 11g breakpoints do not work in .jspx file.

    Hi, there is an issue with the JDeveloper 11g debugger, running an ADF application with embedded WL server (JSF version - Trinidad).
    It stops at the breakpoints in the .java file, but not in the .jspx files.
    Any suggestions on configurations to check....
    Currently:
    -Generate Debug info is checked,
    -precompile JSP is unchecked
    -server and application are being ran in debug mode
    Spent a lot of time already seeing similar posts but there is no meaningfull answer as to what configurations are responsible for the debugger.
    Please do not waist your time or mine advising to reboot pc or re-install Jdev ;-)
    Thank you

    Hi John,
    Thank you for your prompt response.
    Here is a sample code with the breakpoint.
    (breakpoint here)<tr:outputText value="Date of hire #{bk_editSalesRoleBean.salesRole.person.effective}">
    <f:convertDateTime pattern="#{res['date.format.readOnly.display']}"/>
    </tr:outputText>
    It's a source line type breakpoint and the execution should be halted at it. I wanted to review value in the pattern reference in the convertDateTime tag.
    Thanks,
    Taras

  • Can I use jsp in jspx file

    is it possible to write HTML and JSP in the JSPX file, I know some tricks using jsp and I don't have any idea how to implement them in jspx files

    you can use jsp:include tag.. or <af:declarativcomponent> tag.. with viewId
    <af:declarativeComponent id="dc0" viewId="/includes/myIncludeFragment.jsff" />
    http://prsync.com/oracle/adf-faces-avoid-use-of-ltjspincludegt-tag-32141/

  • .jspx file with CDATA

    In my .jspx file, I have:
              <script type="text/javascript" language="JavaScript">
              // <![CDATA[
    (JavaScript code)
              // ]]>
              </script>However, the CDATA tags get stripped in the markup that gets rendered to the browser. How do I get the CDATA tags to render?

    The cdata must be double escaped:
    <script type="text/javascript">
    //<![CDATA[
    //<![CDATA[
        if(a && !b) alert("foo!");
    //]]>
    //]]& gt;
    </script>Without the space between & and gt;
    -- but it seems the forum can't handle that.

  • Javascript declaration in jspX files

    Hello,
    I have a problem with <script> tag in the jspX file.
    When I include this declaration <script language="JavaScript" type="text/javascript" src="javascript/file.js"></script>  or <script ..../> in the jspx file (playing the role of a JSF page) the result is an uncorrect page. Only some parts are correctly rendered.
    But when I do the same in classic JSP page, everything is correct.
    Thank you for any response.

    I use it this way:
    <?xml version="1.0" encoding="utf-8"?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:c="http://java.sun.com/jsp/jstl/core"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html">
    <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
                doctype-system="http://www.w3.org/TR/html4/loose.dtd"
                doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
    <jsp:directive.page contentType="text/html;charset=utf-8"/>
    <f:loadBundle basename="package.labels" var="labels"/>
    <f:view>
    <html>
    <head>
      <title>PAGE</title>
      <meta http-equiv="content-type" content="text/html; charset=utf-8" />
      <meta http-equiv="Content-Language" content="cs" />
      <link rel="SHORTCUT ICON" href="images/icon.gif"/>
      <link href="style/style.css" rel="stylesheet" type="text/css" />
      <script language="JavaScript" type="text/javascript" src="javascript/script.js"></script>
    </head>
    <body>
    .but it doesn't work in body neither.
    I use JSF 1.2.

  • How can I redirect in a jspx file?

    Hi,
    In a jspx file I want to redirect to other jspx file if a condition is true.
    i have this source code, but it does not work on tomcat.:
    <jsp:useBean id="BeanUsuario" class="bean.BeanUsuario"
    type="bean.BeanUsuario" scope="session"/>
    <jsp:setProperty property="opcion" name="BeanUsuario"
    value="PagWebUsuarios"/>
    <c:if test="${!sessionScope.BeanUsuario.blnOk}">
    <jsp:scriptlet> response.sendRedirect("../faces/Login/login.jspx");</jsp:scriptlet>
    </c:if>
    This is the line: response.sendRedirect("../faces/Login/login.jspx");</jsp:scriptlet>.
    thanks in advance.
    Nelson Villamizar

    Redirect with the jsp:forward tag.
    http://java.sun.com/products/jsp/tags/11/syntaxref11.fm9.html

  • Missing ID3 Tags on Song Files

    I have a obscure problem with iTunes that has me very frustrated. I selected my entire music library, then right click -> get info -> check boxes for artist, genre, album, etc and then hit okay. I thought this would look for missing tag information in songs and fill in the blanks, but instead it erased the tag information for all the songs in my library.
    Luckily, my hard drive was spared. When I open up the C: drive and look at my music folder, nothing has changed. All of the mp3 files are still tagged with the correct information. The only problem is that when I try to access songs from iTunes they appear to have no such tag information.
    I have tried fixing this by deleting everything from iTunes and then adding it all back, but this didn't help. Reinstalling iTunes and a full Windows system restore didn't help either.
    The result of this is that I'm afraid to sync my iPod with my computer until this is all resolved. Any insight into the problem would be greatly appreciated. Thanks.

    Ooops. You just created a lot of work by erasing the tag info.
    I think there are some scripts out there that can fill in ID3 tags based on file names.
    This page is from an apple discussions regular poster:
    http://samsoft.org.uk/iTunes/scripts.asp
    You could try the "TagFromFilename" script.
    For future, itunes does not have the ability to update tag info like Windows Media Player does. I suppose you could see what WMP will do, before trying that script.
    Since I haven't used either one to do this, I can't say how well either works.

  • How do you force itunes comments to ID3 tags in MP3 files?

    I have comments all throughout itunes. The mp3 files do not have those comments in the ID3 info.
    How do you force itunes comments to write out to ID3 tags in MP3 files?
    The folder and files all have write permission.

    Yeah, don't do that, you probably also degrade the sound quality... If you've confirmed it is something odd with multiple tags try this.
    Select a group of mp3 files (You might want to start with a smart playlist so you don't mess with any other format)
    Right-click and use Convert ID3 Tags > None (may need to repeat this step if multiple tags)
    Then right-click and use Convert ID3 Tags > v2.3 (v2.4 support still patchy from various accounts)
    Downside is that it will lose any embedded artwork, but it should preserve all other meta-data, both tag-based and stored within the library itself.
    In fact, if you use my CreateFolderArt script before and after updating the tags it should archive any artwork as a local Folder.jpg image for each album and then reinsert that image on the subsequent run... Check it out on a single album first. If it doesn't work as expected let me know and I'll tweak the script to achieve this end.
    tt2

  • Sql in jspx file

    In my jspx file .....iam using JSTL package for exceuting sql query in jsf page....
    but it could not run here i mentioned my code ..whats is mistakes in my code
    <sql:setDataSource
    driver="sun.jdbc.odbc.JdbcOdbcDriver"
    url="jdbc:odbc:dsn4"
    user="xyz"
    password="zyz"/>
    <sql:query var="employees">
    SELECT * FROM ggggg
    </sql:query>
    <c:forEach var="row" items="#{employees.rows}">
    <af:outputText value="#{row.Currcode}" />
    </c:forEach>
    i tried this one also
    c:forEach var="row" items="${employees.rows}">
    <af:outputText value="${row.Currcode}" />
    </c:forEach>
    but still i getting error
    Thanks in advance
    Message was edited by:
    user611389

    my jspx file .....iam using JSTL package for exceuting sql query in jsf page....
    but it could not run here i mentioned my code ..whats is mistakes in my code
    <sql:setDataSource
    driver="sun.jdbc.odbc.JdbcOdbcDriver"
    url="jdbc:odbc:dsn4"
    user="xyz"
    password="zyz"/>
    <sql:query var="employees">
    SELECT * FROM ggggg
    </sql:query>
    <c:forEach var="row" items="#{employees.rows}">
    <af:outputText value="#{row.Currcode}" />
    </c:forEach>
    i already imported the jstl package in name space ,
    when i run this page in jdeveloerits showing error is
    Error: Expression Language not supported in compile time attribute items

  • How can we get  tag of XML file using SAX

    Hi ,
    I'm parsing one SAX parser , I'have almost done this parsing. i have faced problem for one case, i'e how can we get tag from XML file using SAX parser?
    XML file is
    <DFProperties>
    <AccessType>
    <Get/>
    </AccessType> <Description>
    gdhhd
    </Description>
    <DFFormat>
    <chr/>
    </DFFormat>
    <Scope>
    <Permanent/>
    </Scope>
    <DFTitle>gsgd</DFTitle>
    <DFType>
    <MIME>text/plain</MIME>
    </DFType>
    </DFProperties>
    I want out like GET and Permanent... means this one tag which is present inside of another tag.
    Handler class like
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if(_ACCESSTYPE.equals(localName)){
                   accessTypeElement=ACCESSTYPE;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_ACCESSTYPE.equals(_accessTypeElement)) {
                   String strValue = new String(ch, start, length);
                   System.out.println("Accestype-----------------------------> " + strValue);
                   //System.out.println(" " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_ACCESSTYPE.equals(localName)) {
                   _accessTypeElement = "";
    . please any body help me

    Hi ,
    I have one problem,Please help me.
    1. How can I'll identify where exactly my Node is ended,means how how can we find corresponding nodename? in partcular place
    <Node> .............starttag1
    <NodeName>Test</NodeName>
    <Node>................starttag2
    <nodeName>test1</NodeName>
    </Node>..................endtag2
    <Node>.....................starttag3
    <NodeName><NodeName>
    <Node> .........................starttag4
    <NodeName>test4</NodeName>
    </Node>.......enddtag4
    </Node>...........end tag3
    </Node>............endtag1
    my code is below
    private final String _NODENAME = "NodeName";
    private final String _NODE = "Node";
    private String _nodeElement = "";
         private String _NodeNameElement = "";
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    if(_NODE.equals(localName)){
         System.out.println("start");
         if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_NODENAME.equals(_NodeNameElement)) {
                   String strValue = new String(ch, start, length);
                   String sttt=strValue;
                   System.out.println("NODENAME: ************* " + strValue);
    if(_NODE.equals(_nodeElement)){
                   if (_NODENAME.equals(_NodeNameElement)) {
                        String strValue = new String(ch, start, length);
                        String sttt=strValue;
                        System.out.println("nodevalue********** " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_NODENAME.equals(localName)) {
                   _NodeNameElement = "";
    if(_NODE.equals(localName)){
                   System.out.println("NODENAME: %%%%%%%%%");
    please help me. How can I figure node ending for particular nodename

  • HTML tag input type="file"

    hello!
    i used the html tag <input type="file" name="fp"> to have a browse File in my html Page and succesfully gets the file,path and directory when i used fp.value on my windows but when i Load the Html file in Linux
    i only get the filename (excluding the Path)
    can someone tell how to get through this any solution ?
    nid yur help badly!
    Gud day!
    p.s. i used a javascript to get the pf.value.

    Here is a solution:
    Post your question on a relevant forum. These forums are for Java. Java is not Javascript. Javascript is not Java.

  • ITunes not picking up on tags from AAC files ripped using Toast 9

    I am trying to rip CD's into AAC files using Toast 9. When I import them into iTunes, they have next to no tags - only artist, album, and song title. I don't know if the problem is with iTunes or Toast 9 at this point. Is there a way I can see all the tags on a file outside of iTunes? Has anyone else had this problem? Of the discussion topic, but does anyone know how to make Toast 9 write the tags?

    Good question. I feel that Toast provides a better rip, at least that's what my ears tell me. It's looking more and more like I'll have to use iTunes, despite haiving bought Toast 9 just for ripping. As a guy just switching from PC I'm getting kinda frustrated with a lack of options. I have to say, Easy Media Creator works a lot better and more intuitively than Toast.

  • How can i find the no.of components in a jspx File

    Hi,
    I need to find the no.of InptuText components in a jspx file by using ADF concept whether it is adf javascript/backing bean concept.
    not by looping the components from root to till end of the page.
    Reg,
    Brahma.

    Thanks for u r imm reply, in script i can provide the AdfRichInputText. is there any possibility to findno.of RichInputText by providing AdfRichInputText in javascript.
    reg,
    Brahma

  • [ADF-11.1.2.2] 404 error for shared libraries jspx file.

    Hi,
    I got 2 ADF application
    1. Base Application, in which I have BTF (Base-BTF.xml) with one Jspx file in it.
    2. Main Application, In which there is one BTF (Main-BTF.xml) with jsff pages, and I am calling Base-BTF of Base Application as a dialog.
    When I run the pages from Main Application that has a region to Main-BTF, I am able to see pages of main-app. But when I click on button to call Base-BTF, I get following error. But...
    1. If I create same scenario in base application, and call Base-BTF as a dialog, it works fine. (i.e. only one ADF application is involved)
    2. If I have Base-BTF2 with page fragments (jsff files) in Base Application. And If I call same from Main App BTF, it works fine and I can see base app jsff content (Note I haven't used open as dialog, as it is not applicable here).
    Note that Security is not enabled for both the applications. I am not sure, why the issue of 404 is coming for Jspx file when called from another application.
    Please let me know if I am doing anything wrong.
    javax.servlet.ServletException: ADF_FACES-60101:HTTP Error Status Code: 404."
         at oracle.adfinternal.view.faces.config.rich.XmlHttpServletResponse._logException(XmlHttpServletResponse.java:140)
         at oracle.adfinternal.view.faces.config.rich.XmlHttpServletResponse.sendError(XmlHttpServletResponse.java:106)
         at oracle.adfinternal.view.faces.config.rich.XmlHttpServletResponse.sendError(XmlHttpServletResponse.java:100)
         at javax.servlet.http.HttpServletResponseWrapper.sendError(HttpServletResponseWrapper.java:128)
         at com.sun.faces.application.ViewHandlerResponseWrapper.sendError(ViewHandlerResponseWrapper.java:82)
         at weblogic.servlet.FileServlet.findSource(FileServlet.java:269)
         at weblogic.servlet.FileServlet.doGetHeadPost(FileServlet.java:191)
         at weblogic.servlet.FileServlet.service(FileServlet.java:173)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         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.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:524)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:546)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at oracle.adfinternal.view.faces.config.rich.RecordRequestAttributesDuringDispatch.dispatch(RecordRequestAttributesDuringDispatch.java:44)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:167)
         at com.sun.faces.application.view.JspViewHandlingStrategy.executePageToBuildView(JspViewHandlingStrategy.java:363)
         at com.sun.faces.application.view.JspViewHandlingStrategy.buildView(JspViewHandlingStrategy.java:154)
         at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.buildView(ViewDeclarationLanguageFactoryImpl.java:341)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:987)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:339)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:237)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:509)
         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.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
         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.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         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:139)
         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)

    it's a simple call to base-BTF task flow call from Main-BTF.xml
    call to base-BTF
    <control-flow-case id="__2">
            <from-outcome>viewuserdetail</from-outcome>
            <to-activity-id>Base-UserDetail-BTF</to-activity-id>
          </control-flow-case>and button on main page has action "viewuserdetail".

Maybe you are looking for

  • Is there a way of getting album art on to itunes for CD's I already own?

    If I buy an album from the music store, it gives me the artwork. However, if I'm just putting a CD onto Itunes, it will find all the track details but not the artwork. Not a big issue, but is there any way to get round this? Compaq - pressario   Wind

  • Simple ADF Train Application Issue, Trains  are  not  showing up on UI

    Hi I am new to ADF,I am Using JDeveloper 11.1.2.3.0 I have created a bounded taskflow train-flow.xml , with train flow, and three jsff pages sequentially start.jsff,adress.jsff,payment.jsff. I have used a template Train-Template.jsf for those three j

  • BIG problem - Logic crash

    Now I'm really tired about Apple-Logic!! I have worked with Apple and Logic since V 2.5 and never experienced so much problems. I'm talking about my brand new rig. A G5 2x2,7 GHz, 6Gb of RAM ( 6x1Gb high quality, same type and brand), LaCie Firewire

  • Graphics tab in REBDBU: Internal error when implementing extension

    Hello, Seek your kind help please. I have entered in the building master data using REBDBE. We have a tab called Graphics. The pictures etc of the building are uploaded using a software called Korasoft. When i am clicking on the Graphics tab, it is e

  • Use of JIKES

    I know that this isn't strictly a weblogic issue, but I also get the impression that a lot of the people who use this newsgroup also speed up their development process by using the Jikes compiler. Anyway...although using my current classpath I can co