No implicit includes support in 10g 10.1.3 preview ?

I am using JDeveloper 10g 10.1.3 preview and trying to use JSP implicit includes.
I get build errors from JDeveloper on the <jsp-config> or <jsp-property-group> rules in web.xml. It seems JDeveloper does not recognize these JSP 2.0 rules in web.xml?
How can we use implicit includes with JDev?

Just tried with the rule
  <jsp-config>
    <jsp-property-group>
      <url-pattern>*.jsp</url-pattern>
      <el-ignored>true</el-ignored>
    </jsp-property-group>
  </jsp-config>And that worked fine - no errors reported.
My doc def is:
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
               http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"
               xmlns="http://java.sun.com/xml/ns/j2ee">If I revert to a 2.3 web.xml
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">Then yes I get an error reported as I'd expect

Similar Messages

  • Button is no longer supported in 10g

    Dear all,
    I have generated a pdf report for attendance. now i want to change its status from PLANNED to RELEASED by clicking on a button
    or something like button which accept click. button is no longer supported in 10g . how could i accompolish this task?
    thanks and regards

    Hello,
    http://www.oracle.com/technology/products/reports/htdocs/faq/faq9i_migration.htm#346
    When I run my existing Oracle Reports Developer 6i report in Oracle9i Reports, all of my buttons have disappeared.
    Since Oracle9i Reports no longer has a GUI viewer, it does not support button functionality. When you migrate your existing reports to Oracle9i Reports, the buttons display as text items. You can replace this functionality with hyperlinks. If you have a hyperlink defined in Reports 6i, the hyperlink is still there in Oracle9i Reports and displayed when executing the Report. If you have custom PL/SQL code defined for the button, program units are created in Oracle9i Reports including this code. Please see the Reports Builder online help for the hyperlink examples.
    regards

  • SAP BW supporting Oracle 10g

    Hello!
    Does anybody know if SAP BW 3.0b currently supports Oracle 10g?
    Moreover, does anybody know of any BW version currently supporting this Oracle 10g version? or by when does SAP plans to support it and which BW version(s) they plan?
    Thank you!
    Regards,
    Mario Vallejo

    Hi Dinesh,
    Sorry but I could't find it...
    I also searched by "Oracle 10g" bot no related link was found.
    Any hints on how to look for it? or more specific URL...
    I really appreciate it!
    Regards,
    Mario

  • Kindly suggest oracle automation testing tools supporting oracle 10g forms

    Hi,
    We would like to automate oracle 10g forms in our company. kindly suggest oracle automation tools supporting oracle 10g forms other than OATS.
    If only OATS tool is available in Oracle, please suggest user guide for OATS.
    Regards,
    Sairam

    Hi Sairam,
    You can find OATS docs in OATS installation package itself. You can find separate pdf files for each OATS product(OpenScript Programmer Preference, OFT, OLT, OTM, Administrator etc).
    Regards,
    Deepu M

  • Export and Import are not supported on 10g databases for users logged

    Hi
    I having the below written error, when i want to export or import my database. I having Standalone system using windows xp.
    Role Error - Export and Import are not supported on 10g databases for users logged in with the SYSDBA role. Logout and login using a different role before trying again.

    Actually i ma new to EM...
    When I want to Import any thing He is asking abt the HOST CREDENTIALS
    I can't undrstatnd wht he is asking????
    Host Credentials
    * Username          
    * Password          
              Save as Preferred Credential
    It Genrate the below error
    Error - ERROR: Wrong password for user

  • Support for 10g database target

    When can we expect OWB10g with support for the Oracle 10g database as a target? Is the only option available to use OWB with a 10g target simply to wait for this release? Patience may be a virture, but it an expensive virture.

    Yes, the upcoming 10g Warehouse Builder release will support the 10g database as a target. Expect Warehouse Builder 10g to release approximately one week after the database 10g for Windows is being released.
    Sorry you have to wait.
    Thanks,
    Mark.

  • Laptop supporting Oracle 10g on RHEL 4 Update 2

    Hi,
    I am struggling to find a laptop supporting Oracle 10g on RHEL4 update 2. Though the Redhat HCL shows some laptops... those are all outdated.
    Now, I do find laptops supporting RHEL 5 workstation version. Is Oracle 10g supported on such desktop version ? Kindly help me find a Laptop for personal purpose.
    I am fine to have it Dual boot with Windows Vista / XP but equally want to ensure that it supports the OS as well. Please help me find one such personal Laptop !!!
    [ PS:  Looking for alternative solution other than VMWARE on windows]

    Hi
    This message should be in the linux section. Linux format wrote a quite good article on the issue 105 http://www.linuxformat.co.uk/modules.php?op=modload&name=NewArchives&issue=105
    You should may be go for a Thinkpad (http://www.thinkwiki.org/wiki/ThinkWiki) / (http://www.linux-laptop.net/ibm.html)
    or a DELL http://www.dell.com/content/topics/global.aspx/alliances/en/linux?c=us&cs=555&l=en&s=biz
    Personally I'm using both a Thinkpad with RedHat 5.2 and an Acer aspire on which linux works very well.
    Hope this help otherwise ask more

  • 6i report buttons not supported in 10g

    Hi,
    We have buttons on our reports and use the srw.message procedure to interact with the user to write the reports to a journal table. Neither of these are supported in 10g so I was wondering what everyone else out there is doing?
    Thanks,
    Lee

    hyperlinks only appear to work for drill down reports - do you have an example or other ideas where you run some sql behind a user clicked control? Thanks!

  • Implicit includes...

    Hello
    I want to set implicit includes for my project. I added these into the web.xml file:
        <jsp-config>
            <jsp-property-group>
                <display-name>template</display-name>
                <url-pattern>/*.jsp</url-pattern>
                <include-prelude>faces/jspf/header.jsp</include-prelude>
            </jsp-property-group>
        </jsp-config>I looked at several examples and applied what I see to my project but it doesn't work...

    Just tried with the rule
      <jsp-config>
        <jsp-property-group>
          <url-pattern>*.jsp</url-pattern>
          <el-ignored>true</el-ignored>
        </jsp-property-group>
      </jsp-config>And that worked fine - no errors reported.
    My doc def is:
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                   xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
                   http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"
                   xmlns="http://java.sun.com/xml/ns/j2ee">If I revert to a 2.3 web.xml
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">Then yes I get an error reported as I'd expect

  • Cisco Nexus 5548UP support SFP-10G-LRM ?

    Hi all, I have a question about Cisco Nexus 5548UP. Is Cisco Nexus 5548UP support SFP-10G-LRM ? Because in CCW, i can't configure the SFP-10G-LRM. There is only SFP-10G-LR, SR, and the others, but there's no LRM. Pelase help me to answer this question. Thanks a lot

    The LRM is s special case transceiver which supports 10 Gbps over older FDDI grade multimode fiber when used with a mode conditioning patch cord. It is not supported on the Nexus 5548UP.
    The SFP-10G-LR is used with single mode fiber for spans up to 10 km in length. It is supported on the 5548UP (and most every platform of Cisco's that takes SFPs).
    Please see the product data sheet here.

  • Is Forms 3.0 supported by 10g oracle database

    Hi,
    My application is currently running on form 3.0 and 7i database. We are upgrading the database into 10g.
    Is forms 3.0 supported by 10g Oracle database?

    No, its not supported or certifed and will probably not work. Some changes in row IDs mean that Forms 3 can only run against older (7) database - not 10g. You will need to upgrade your Forms as well.
    Rgards
    Grant

  • HT1899 Hi There. Is there a version of BootCamp support software for Windows 8 Customer preview?

    Hi There. Is there a version of BootCamp support software for Windows 8 Customer preview as yet?

    8 is now Release Preview, not CP, and there is the final release 90-day trial Enterprise which is all cleaned up and ready to use.
    So at least someone should be going over with this by now. Things I had that did not work right and unsupported with the Previews are working, but some, a few, need updates.
    I don't think most of the issues people have with Mac running 8 are deal breakers or can't be worked around, maybe 2-3 items and heck even 'supported' - if it worked plug and play and no issues... the forum would be dead silent, but it isn't.
    Not going to do it again but I have tried to post a consolidated of trackpad, graphics, audio, BT, and other things that get mentioned.
    8 won't be ready to buy for full two months.

  • After applying the effect supported by the GPU CUDA (MPE) preview stops

    Hello,
    After applying the effect supported by the GPU CUDA (MPE) preview stops.
    This is what is look like:
    In this assay uses Fast Color Correction Effect but as you can see is not real-time.
    What could be the problem?
    My PC config:
    MB: MSI P67a-GD65 (rev.B3)
    CPU: I7-2600K-3,4Ghz
    Radiator: Scythe Ninja 3 Rev.B SCNJ-3100
    RAM: Corsair DDR3 16GB (4x4GB) 1600MHz CL9 CMZ16GX3M4A1600C9
    DISKS:
    DISK 1 SSD:  ADATA SP900 256GB 2.5" SATA3 ASP900S3-256GM-C   (OS)
    DISK 2 HDD: Samsung SpinPoint F3 HD103SJ 1000 GB 7200 RPM 32MB Cache SATA 3.0Gb/s (MEDIA/PROJECT/RENDER)
    RAID0: (CACHE/SWAP)
    Disk 3 HDD: Hitachi Deskstar T7K500 HDT725032VLA360 320 GB 7200 RPM 16MB Cache SATA 3.0Gb/s
    Disk 4 HDD: Samsung SpinPoint T166 HD321KJ 320 GB 7200 RPM 16MB Cache SATA 3.0Gb/s
    Disk 5 USB3.0: Iomega ST950032 500GB 2.5 Portable  USB 3.0 (BACKUP)
    CARD READER CF/MS/MS-PRO/SD/MMC/SM/xD Generic
    BR/DVD/RW Bluray LG BH10LS38
    GPU 1: MSI GeForce CUDA GTX580 TWINFROZR 3GB DDR5 PCI-E 384BIT DVI/mHDMI N580 TF 3GD5 (PCI Express 2.0 16x)
    GPU 2: Gigabyte 9800 GT Silent Cell GV-N98TSL-1GI 1GB (PCI Express 2.0 16x)
    Video: Blackmagic Intensity Pro
    MOUSE: A4Tech Oscar X748 USB
    Keyboard USB
    POWER SUPPLY: OCZ ModXstream PRO 600W OCZ600MXSP-EU
    CASE: SilentiumPC Gladius 800 Pure Black (GD-800)+4 fans
    OS: Windows 64 bit Ultimate

    This is normal.  Premiere Pro didn't add the Don't Stop Playback feature until CS6.

  • OC4J Instance included in Forms 10g R2 NOT Stable

    I am able to deploy a form for testing on WIndows 2003 Server.
    C:\Documents and Settings\Administrator>C:\oracle\product\Ora10gDSR2\jdk\bin\java -Doracle.security.jazn.config=C:\oracle\product\Ora10gDSR2\j2ee\DevSuite\config\jazn.xml -Doracle.home=C:\oracle\product\Ora10gDSR2 -DORACLE_HOME=C:\oracle\product\Ora10gDSR2 -jar C:\oracle\product\Ora10gDSR2\j2ee\home\oc4j.jar -userThreads -config C:\oracle\product\Ora10gDSR2\j2ee\DevSuite\config\server.xml
    06/10/25 00:00:06 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    initialized
    06/10/25 00:03:54 FormsServlet init():
    configFileName: C:\oracle\product\Ora10gDSR2/forms/server/formsweb.cfg
    testMode: false
    06/10/25 00:04:04 ListenerServlet init()
    06/10/25 07:56:50 Forms session <3> aborted: unable to communicate with runtime process.
    I can run the Form initially but not after it has been deployed for about 8 hours. Is it true that OC4J supplied in Forms 10g R2 is only for testing purpose. How could I deploy the form in a more stable environment?

    Yes it is true.
    OC4J included in your iDS 10g is only for test or develop envrionment.
    Its basic function is to make your builder tool ready to test your forms and module as well as your reports.
    Just because iDS 10g its a web tool and it needs a web server to execute. So OC4J emulate the iAS (Internet Application Server) and give you the opportunity to TEST your modules without having a iAS.
    Abdel Miranda
    Panama.

  • WebLogic 8.1 SP4 support for 10g R2

    Hi,
    We are looking to upgrade Oracle Server 8i to the latest version ie. 10g R2. We are running Weblogic 8.1 SP4. On BEA's site the product documentation doesn't specify the 10g R2 support, instead only list support for 9.2.0 and later versions for SP4. Has anyone tried running WL 8.1 SP4 with Oracle 10g R2. We are not looking to upgrade to RAC version of this.
    Thanks.

    This is targeted by coming June.

Maybe you are looking for

  • Import the skeletan database in Brandnew Database.

    Hi Team , I Have an Task In front of me.... I Have Taken full export with rows=n full=y ( skeletan Database), Now I want to Import that in Another brand new Database. Here I have confution.... After import whether I would get all the privileges also

  • Has Anyone NOT Tried LiveType Yet ? Take A Look At This.

    At the beginning of the year I made a 7 minute video demonstrating just a tiny percentage of the numerous effects available with LiveType. It was designed to show PC members of my video club what was available to FCE users. For any of you who have no

  • Microsoft Word 2011 Icon appearing twice

    I just installed Office for Mac 2011 on my new Macbook Pro 15" and in the Launchpad the icon for Word 2011 is shown twice, How do i get rid of one of the icons?  Also i am new to the Mac family so if this is an easy fix excuse my ignorance.

  • Reduce useful life

    Hello !! We would like to increase depreciation   of some asset such that they depreciate very soon. What is the best way to achieve this. One such way is to reduce the useful life of the asset. What are the other steps needed to be done along with t

  • Question related to Grouping

    Dear Members, My Data Looks like : Period Name *** Description ***** Amount Dec-07 ******* TEST123     ******250 Dec-07 ******* TEST456     ******560 Dec-07 ******* TEST456     ******500 Dec-07 ******* TEST789     ******750 Jan-08 ******* SALES     *