Is C++ compiler 5.11 compatible with C++ compiler 5.8???

Hi ,
Downloaded Sunstudio 12.2. Installed . I want find out if C++ compiler 5.11 is compatible with C++ compiler 5.8.
Using 5.11 compiler, can I link to 5.8-compiled sahred libs?
Edited by: 849112 on Mar 31, 2011 9:39 PM
Edited by: 849112 on Mar 31, 2011 9:39 PM

Binaries created by Studio 5.x compilers are forward compatible. If you build a binary (object file or library) with an older compiler, you can link it into a program built with a newer compiler. The reverse will not always work. That is, newer compilers maintain interfaces used by older compilers, but might code generated by newer compilers can depend on interfaces not available with older compilers.
The compatibility story is described in more detail at the bottom of the Component Matrix page;
http://www.oracle.com/technetwork/server-storage/solarisstudio/training/index-jsp-141991.html

Similar Messages

  • Firefox prompted me to download an incompatible update that its website claims is compatible with my operating system (Mac OS 10.4.11). Why prompt an incompatible download AND claim it is compatible?

    I have an iMac and use OS 10.4.11 & Firefox 3.6.19. Firefox prompted me to download an update (to 7.0.1). I looked up the system requirements on your website, and it stated the update is compatible with OS 10.4.11. But after I downloaded and installed the update, it failed to work on grounds of incompatibility. Hence 2 questions: (1) Why did Firefox prompt me to download an incompatible update? (2) Why did your website claim the update is compatible with my operating system when it is not?

    Sorry, it's because Firefox 4+ are only compiled for the Intel processors.
    There is a separate project for PPC Macs called Ten Four Fox. You might give it a spin when you're tired of 3.6.
    http://www.floodgap.com/software/tenfourfox/

  • ADF from JDeveloper 10.1.2 not compatible with iAS 9.0.1

    Hi,
    We developed an ADF Application with JDeveloper 10.1.2 and we use the ADF interMedia domains (e.g. oracle.ord.im.OrdDocDomain). The application runs fine in JDeveloper, but doesn't run on our iAS 9.0.4.1. We get the following exception:
    java.lang.NoClassDefFoundError: oracle/sql/DatumWithConnection
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:219)
    at oracle.jbo.common.java2.JDK2ClassLoader.loadClassForName(JDK2ClassLoader.java:38)
    at oracle.jbo.common.JBOClass.forName(JBOClass.java:161)
    at oracle.jbo.common.JBOClass.findDataClass(JBOClass.java:203)
    at oracle.jbo.server.AttributeDefImpl.initFromXML(AttributeDefImpl.java:2061)
    at oracle.jbo.server.AttributeDefImpl.loadFromXML(AttributeDefImpl.java:2013)
    at oracle.jbo.server.EntityDefImpl.loadAttribute(EntityDefImpl.java:2815)
    at oracle.jbo.server.EntityDefImpl.loadAttributes(EntityDefImpl.java:2779)
    at oracle.jbo.server.EntityDefImpl.loadFromXML(EntityDefImpl.java:2362)
    at oracle.jbo.server.EntityDefImpl.loadFromXML(EntityDefImpl.java:2106)
    at oracle.jbo.server.MetaObjectManager.loadFromXML(MetaObjectManager.java:514)
    [...rest of stacktrace omitted ...]
    The problem is that the JDBC version of the iAS 9.0.4.1 is missing the class DatumWithConnection that is indirectly referenced by the interMedia classes supplied with JDeveloper 10.1.2.
    In detail, oracle.ord.im.OrdDoc uses oracle.sql.STRUCT. The inheritance hierarchy of STRUCT is different in the JDBC versions on iAS 9.0.4.1 (oracle.sql.Datum <- oracle.sql.STRUCT) and JDeveloper 10.1.2 (oracle.sql.Datum <- oracle.sql.DatumWithConnection <- oracle.sql.STRUCT). The class file of oracle.ord.im.OrdDoc (from 10.1.2. JDeveloper) was apparently compiled the new JDBC driver version since it contains a reference to oracle.sql.DatumWithConnection. And that class cannot be found if run on iAS 9.0.4.1 with its old JDBC version.
    I think this is a very serious problem, since it means that ADF from JDeveloper 10.1.2 is not compatible with iAS 9.0.4.1, in contradiction to the support matrix (http://www.oracle.com/technology/products/jdev/collateral/papers/10g/as_supportmatrix.html).
    Upgrading the JDBC Driver on the iAS seems to be the only clean solution for this problem (we also tried using old versions of the ordim.jar etc. but that always leads to other problems). But simply exchanging the JDBC jar-files on the server breaks the Enterprise Manager on our iAS installation.
    I have two questions:
    1) Is there a recommended workaround for the compatibility issue described above?
    2) Is there a documented and supported way to upgrade the JDBC driver of iAS 9.0.4.1? I searched OTN and MetaLink and haven't found anything about this.
    Kind Regards,
    Kay
    P.S. It is surprising that this problem is rarely mentioned in the OTN forums at all. The only relevant thread is on the JHeadstart Forum:
    JHeadstart Deployment Issue
    P.S.2
    More info on what we tested:
    We have thoroughly checked that the 10.1.2. ADF runtime was correctly deployed on our iAS 9.0.4.1. We installed a OC4J 9.0.4.0.0 standalone on the same linux machine as our iAS 9.0.4.1 and deployed our application on it, getting the same error (java.lang.NoClassDefFoundError: oracle/sql/DatumWithConnection) as on the iAS. Replacing the JDBC drivers of the OC4J standalone with the version that came with JDeveloper 10.1.2 solved the problem.

    I don't think that mixing classes from different jar file is a good idea. Nevertheless, we tested this approach already. Adding the DatumWithConnection.class from the 10.1.0.3.0 JDBC version to the jar file of the original JDBC version (of the iAS 9.0.4.1.0) caused a java.lang.VerifyError to appear.
    The DatumWithConnection class is not simply added in the newer JDBC version. It is inserted into the inheritance hierarchy of oracle.sql.STRUCT and oracle.sql.Datum. Simply providing the new class next to the old JDBC driver will not work.
    To give more information about what's wrong with updating the complete JDBC driver, I justed tested it again. To update the JDBC driver I stopped the server, changed the contents of jdbc/lib, started the server. I tried it with JDBC Version 9.2.0.5 as well as 10.1.0.3.0.
    In both cases, our own application works, i.e. no more NoClassDefFoundError caused by oracle.sql.DatumWithConnection.
    The Enterprise Manager shows strange behaviour, however. Some features work as usual but, for example, when I click on the "Applications" tab for our OC4J instance, we just get the following error shown in the browser:
    An error was encountered while loading page. Failed to initialize configuration management user session.. See base exception for details.
    Root Cause: TDU
    Resolution: See base exception for details.. TDU
    In one of the server logs I found the following stacktrace:
    java.lang.NoSuchFieldError: TDU
         at oracle.net.resolver.NavDescription.navigate(Unknown Source)
         at oracle.net.resolver.NavServiceAlias.navigate(Unknown Source)
         at oracle.net.resolver.AddrResolution.resolveAddrTree(Unknown Source)
         at oracle.net.resolver.AddrResolution.resolveAndExecute(Unknown Source)
         at oracle.net.ns.NSProtocol.establishConnection(Unknown Source)
         at oracle.net.ns.NSProtocol.connect(Unknown Source)
         at oracle.jdbc.ttc7.TTC7Protocol.connect(TTC7Protocol.java:1777)
         at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java:215)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:365)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:547)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:347)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:171)
         at oracle.context.isearch.admin.users.InstanceManager.getSchemaConnection(InstanceManager.java:688)
         at test.admin__status._jspService(_admin__status.java:112)
         at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:349)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:793)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    Kind Regards,
    Kay

  • Workstation 11.1, Tools 9.9.2 build-2496486: Not compatible with GCC 5.1.0 on linux (Arch, Debian, Ubuntu, etc)

    First, there are some compilation problems with the latest linux kernel and Tools 9.9.2's source of vmhgfs: vmhgfs module not compilable for VMware Tools 9.9.0 (Fusion7.1) after Ubuntu Linux kernel update to 3.13.0-46-generic (Febr. 2015) (Shared Folder Feature not working in Ubuntu 14.04 LTS (Guest) on MacOSX Yosemite (Host))?
    In short, you have to patch the source to get it to compile: rasa/vmware-tools-patches · GitHub
    Arch linux is a "rolling" distro, meaning we always have latest - and are usually the first to find problems before it trickles down to Ubuntu, Mint, Debian and other Linux distros. Well, now there is a serious problem that is unresolvable.
    The vmhgfs source is not compatible with linux kernels built with gcc 5.1.0.  It hard locks the VM, requiring a hard reset when the kernel module loads.  It also hard locks during vmware-tools-install.pl torwards the very end when it says, "Guest filesystem driver" enabling.  And on boot, it is vmhgfs that is being loaded when the VM hard locks.
    I was able to get around this earlier when gcc 4.9.2 was in core - i just rebuilt the kernel under 4.9.2: https://bbs.archlinux.org/viewtopic.php?id=196915
    Obviously that isn't a long-term solution.  But now that gcc 5.1.0 has been pushed out to core, that means recompiling the kernel under 4.9.2 is no easy feat since dependencies now depend on gcc 5.1.0.
    @Developers: We have a big problem with VMware Tools vmhgfs and kernels compiled under gcc 5.1.0.  Given it make take years before the Debian distros get the latest and greatest, it's coming.
    Because of this, and the wasted time in me having to support this mess, I may recommend to my company we no longer continue with our Enterprise account of 100 licenses of Workstation and Fusion.  It is obvious in the previous thread vmhgfs module not compilable for VMware Tools 9.9.0 (Fusion7.1) after Ubuntu Linux kernel update to 3.13.0-46-generic (Febr. 2015) (Shared Folder Feature not working in Ubuntu 14.04 LTS (Guest) on MacOSX Yosemite (Host))? that VMware is no hurry to resolve even the simple build errors that the community has resolved last year with patches.  Good thing too, renewal comes up in two months.
    I shiver to think how long it will take VMware to release a fix for gcc 5.1.0.

    Additional info...
    The hard lock is a panic when mounting the /mnt/hgfs partition, which is what is configured in my fstab:
    .host:/
    /mnt/hgfs
    vmhgfs
    defaults
    0 0
    The reason the above is just "./host:/" is for the auto-mounting of shares on the fly, or all shares on boot.  Specifying a share doesn't change anything.
    Even mounting it manually panic's the kernel:
    mount -n -t vmhgfs .host:/<shared_folder> /home/user1/shares
    Again, this all worked fine with a kernel built on 4.9.2, but not 5.1.0.

  • Why does it say that the updated version of Firefox (which I am trying to download) is not compatible with my operating system when I have Mac OS X 10.5.8?

    Why does it say that the updated version of Firefox (which I am trying to download) is not compatible with my operating system when I have Mac OS X 10.5.8? I had an older version of Firefox and it said I needed to update it but that was the message that appeared.

    Sorry, it's because Firefox 4+ are only compiled for the Intel processors.
    There is a separate project for PPC Macs called Ten Four Fox. You might give it a spin when you're tired of 3.6.
    http://www.floodgap.com/software/tenfourfox/

  • Provider is not compatible with this version of Oracle client

    I am trying to access Oracle(10.2) DB from a .NET 2.0 Console Application.(.exe) in a Win 2008.Web code is also on the same Win 2008 system
    The Web application works fine and connects to teh DB , but when I try to run any of the Console applications it gives the error as:
    Provider is not compatible with this version of Oracle client.
    The Oracle.Dataaccess.dll versions which are available in GAC are 1.102.2.20 and 2.102.2.20.
    and the Oracle client installed is 10.2.0.100
    The complete error message is:
    Unhandled Exception: Oracle.DataAccess.Client.OracleException The provider is not compatible with the version of Oracle client
    at Oracle.DataAccess.Client.OracleInit.Initialize()
    at Oracle.DataAccess.Client.OracleParameter..ctor(String parameterName, OracleDbType type, ParameterDirection direction)
    Can any of you help me find a reason for this error.
    Thanks in advance!!

    Hi Greg,
    I found out another reason this error was appearing.I am compiling the Console application in a 32-bit machine on 32-bit Oracle client.
    The pre-compiled DLL and EXE is then exported to a 64-bit Win 2008 machine.
    Also,The code has been compiled with ‘Any CPU’ .
    The Web Application on the same system is working because the "Enable 32-bit Applications" is set to True.
    Are there any DLLs or EXEs created when compiling in the 32-bit machine which is not compatible with the 64-bit machine?
    Please help!!
    Thanks,
    Veena

  • Is Office 2000 compatible with RoboHelp 7?

    We are planning to buy RoboHelp7. But, cannot buy Office
    2007. Is RoboHelp7 compatible with Office 2000 (our exisitng
    version)?
    Thanks in advance,
    Meenakshmi

    Problems -
    Currently, we are using Office 2000 and RH6. Now, we are
    planning to upgrade to RH7. We downloaded the trial version to
    check the compatibitiy. We compiled the exisitng RH6 projects with
    the RH7. It was found that pages with links are not displaying at
    all. We imported them from another project. But, some of then dod
    not work after that. There are also some special characters in the
    texts. We tried with Office 2007 and RH7. The problems were there
    too. Can anyone advice whether this is some bug? We applied the
    vailable patch. But nothing happened.
    Should we go for the upgrade?

  • Printer not compatible with OS X Tiger 10.4? Help!

    Hi there,
    A few months ago I bought a Konica Minolta Magicolour 2400W laser printer (in a panic, was the cheapest available - in order to print my thesis). I have since bought an Apple Mac ibookG4 running OS X Tiger 10.4. Konica Minolta tell me that this printer is not compatible with the Mac and that I can't use it. So, my current situation is that I have a £200 printer that cannot communicate with over £800 worth of new Apple equipment. I am slightly P**d off. I probably should have done my homework but didn't expect a brand new printer not to have drivers compatible with a brand new computer + operating system. Short of selling the **** printer and getting a Mac-compatible one; what can I do? Please help, any suggestions would be most appreciated.
    Zoe, UK
    ibook G4   Mac OS X (10.4.2)  

    Looking at the Konica Minolta web site it lists only Windows support for this model.
    http://printer.konicaminolta.com/support/currentprinters/mc2400wsup.htm#Drivers
    So looks like the advice was right. The Minolta 2430DL and 2450 network models do support Macs so perhaps that is the confusion.
    The only option looking around is to try Foomatic-RIP for Mac OS X and EPS Ghostscript in order to use the open source driver. Checking the Linuxprinting.org web site there is indeed a working driver for your model.
    However it is only a 'Filter' which will need to be compiled to work with the above. Not a straightforward exercise I am afraid. I have found a recent thread which deals with this exact same model and perhaps you could try it yourself if you feel brave, or perhaps contact the guy posting the request and ask if he can send it if he manages to compile a working version.
    The relevant thread is here:
    http://www.linuxprinting.org/pipermail/macosx-list/2005q4/001449.html
    If you want to have a go here is what you need to get started.
    1. So, firstly go to this web site and read the Usage guide:
    http://www.linuxprinting.org/macosx/foomatic/#usage
    You can download the latest version of the required applications on that page too. Follow the instructions carefully.
    Note that it says here that if it is just a 'Filter' then you will likely need to compile it which seems necessary.
    2. Go to this web site and download the m2300w-0.51 driver which also supports the 2400W
    "The m2300w driver is a Linux printer driver for the Konica Minolta magicolor 2300W and 2400W color laser printers. It is intended for being used in conjunction with ghostscript, foomatic and CUPS."
    http://sourceforge.net/projects/m2300w/
    Good luck!
    Simon
    Powermac G4 Dual 1Ghz MDD   Mac OS X (10.4.3)   1.25GB

  • The provider is not compatible with the version of Oracle client... again!

    Please, please, please help me!
    I get the error, "The provider is not compatible with the version of Oracle client", intermittently on my Test Server. Strangely, without restarting the server or IIS, my application suddenly decides that I don't have the right Oracle client. I don't have any such issue on my local machine even though I'm using the same Oracle 11g client from Beta 1.
    I have Oracle 11g (D:\Oracle11g\product\11.1.0) installed. I tried specifying which assembly to use in my web.config:
    <compilation debug="true" defaultLanguage="c#">
    <assemblies>
    <add assembly="Oracle.DataAccess, Version=2.111.5.10, Culture=neutral, PublicKeyToken=89b483f429c47342" />
    </assemblies>
    </compilation>
    I'm not even trying to use a 10g client with the Providers as discussed here: "The provider is not compatible with the version of Oracle client"
    What I don't understand is why this error comes and goes?!?! Has anyone experienced anything like this?

    The server is Win 2003. The local development machine is WinXP.
    ...I was trying to wait to install Beta 2 because of the nasty bugs reported on this forum.
    I'm now seeing that ORACLE_HOME wasn't set on my server because my co-worker removed the path. Somehow it was able to find an Oracle Home on the server, but apparently, it didn't always find the same home causing this error intermittently.
    Now, my question is how can I get my application to use the 11g Client as its Oracle Home, while my co-worker can use 10g Client as his Oracle Home? To be a bit more specific, he needs to use an ODBC client to connect because his application uses Classic ASP.
    Is this possible, or are we going to have to set up separate machines?
    Bee

  • Flex 4.5 iOS app generated but error in itunes: "not compatible" - with 3g?

    Are Flex 4.5 mobile compiled ipa's only compatible with iPhone 3gs and above? is there a way to get them working on a 3g phone?

    Flex 4.5 doesn't officially support iOS.  Make sure you are using Flex 4.5.1 which adds support for iOS and BlackBerry Tablet OS platforms.
    Yes iPhone 3GS is the minimum requirement.

  • Is the JDK (1.2.2) compatible with Windows 2000 Pro?

    Hi Friends!,
    It seems that the JDK - Version: 1.2.2 - is not
    compatible with Windows 2000 Pro. I know
    how to configure the kit in this operating system
    even if I'am not able to understand the reason for which
    I receive the error in the Command Prompt window - the JAVAC
    utility says:
    "Can't read: BigDebt.java - 1 error".
    I have added the following command line from
    the System Control Panel->System->Environment->System Variables:
    C:\jdk1.2.2\bin ( where I have installed the kit ).
    I also have added the CLASSPATH command line there:
    set CLASSPATH=.;C:\jdk1.2.2\lib\tools.jar but the problem persists
    and I'am unable to create the BigDebt.class file.
    To avoid another nervous wreck please send me the instructions
    to configure correctly the JDK (1.2.2) for Windows 2000 Pro.
    Thanks.
    Julian Jerman - from Italy.

    when you runs the java compiler like this
    javac BigDebt.java
    You need to be in the directory of your BigDebt.java file located.
    BTW, it is kind of weird that your java file is saved to System32 directory, there is no benefit doing that.
    --lichu                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • My Macromedia Flash ActiveX Control isn't compatible with Windows 7 / 64bit

    I have downloaded the newest version of Adobe flash, and it installs like normal...and I think it is working fine....but on some sites (even You Tube) and some software programs, I get this message:
    Your version of Macromedia Flash ActiveX Control isn't compatible with this version of Windows.
    I am tired of wasting so much time with this...I read on the net that some people compiled their computer to 86...whatever that means....but no one explained how to do it.
    I have a Flash professional in ADOBE MASTER COLLECTION C6 / but all programs and sites default to the normal Flash player (that constantly gets updated,

    I have a similar problem, Win 7 64-bit, I did a clean install*, downloaded latests (Adobe - Install Adobe Flash Player), and after restarting my computer, Win7 64-bit Action Center popped up: "Your version of Macromedia Flash ActiveX Control isn't compatible with this version of Windows" with no error codes to look up knowledge base. Like seriously, no one from Adobe answered this in 9 months?! And the steps in Common problems | Flash Player sound like I need to purchase support before I file a report?
    Currently, my Firefox plugins only show Shockwave Flash 13 not Adobe Flash. Do I need to install Flash plugin for Firefox? (http://download.macromedia.com/pub/flashplayer/current/support/install_flash_player.exe)
    Thanks!
    * as per How do I do a clean install of Flash Player?:
    1. Add or Remove programs ... Flash ... uninstall,
    2. deleted all files & folders in C:\Windows\system32\Macromed\Flash, C:\Windows\SysWOW64\Macromed\Flash, %appdata%\Adobe\Flash Player, %appdata%\Macromedia\Flash Player),
    3.  verified that the files “FlashPlayerCPLApp.cpl”, "FlashPlayerApp.exe", and "FlashPlayerInstaller.exe" in C:\Windows\system32\ (for 32-bit systems) or C:\Windows\SysWOW64\ (64-bit system) were deleted,
    4. prepared to use Unlocker http://www.emptyloop.com/unlocker/ if any files couldn't be deleted,

  • Is jeveloper 11.1.1.3 compatible with windows 7 ??

    Hi,
    Please let me know if jdeveloper 11.1.1.3 is compatible with windows 7.I have installed jdeveloper 11.1.1.3 on windows 7,sometimes it gives error "as unexpected error occured in jdeveloper" and jdeveloper will close.
    Also,i am not able to compile SOA/BPEL projects.

    Not sure if you were able to resolve the issue you mentioned, but you may want to look at the [JDeveloper known issues|http://www.oracle.com/technetwork/developer-tools/jdev/knownissues-086971.html#Integrated] page which mentions about the Program Files (x86) folder causing this issue. Ah, my love for windoze continues...

  • Latest version of Tiles appears not compatible with JSF 2

    I have been doing java server faces for about a month now. In general, i very much like what I see. However, I found significant problems with Tiles. I have now spend about 8 hours trying to debug it. The book by David Geary and Cay Horstman have a whole section on tiles. However, the latest download of Tiles has changed significantly since the authors wrote the section. I have debugged and debugged to now I get the following in NetBeans:
    SEVERE: Exception sending context initialized event to listener instance of class com.sun.faces.config.ConfigureListener
    java.lang.VerifyError: (class: com/sun/webui/jsf/renderkit/html/AccordionTabDesignTimeRenderer, method: encodeBegin signature: (Ljavax/faces/context/FacesContext;Ljavax/faces/component/UIComponent;)V) Incompatible argument to function
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
    at java.lang.Class.getConstructor0(Class.java:2699)
    at java.lang.Class.newInstance0(Class.java:326)
    at java.lang.Class.newInstance(Class.java:308)
    at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:1028)
    at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:1100)
    My only conclusion is that the latest version of tiles is not compatible with JSF 2.
    Is anyone able to get the latest version of Tiles to work with JSF 2?

    JSF + Tiles is not going anywhere. Most of the JSF components render at runtime whereas Tiles only works at compile-time. Tiles was designed to work with JSP not JSF, even though some people tried to use it for a while until they realize the big limitation.
    Go and try JSF + Facelets. It'll solve many of your problems.
    Tam Tran.
    WebMX developer
    The best australian web site development and content management
    http://webmx.com.au
    Edited by: jtomtran on Nov 18, 2007 7:44 PM

  • CDC compatible with 1.5 JDK ?

    Hello,
    Are there plans to create a CDC version compatible with the desktop J2SE 5.0 (1.5 JDK) ?
    A portion of our code base needs to run on J2ME and J2SE. So, we are stuck with JDK 1.4 for compatibility. This ends up forcing the whole project to 1.4. All the nice new language features in 1.5 are great, but we can't use them!
    Thanks.
    If you have the same dilemma, please add your "me too". Maybe it will help.

    You can use them. Just compile with -target cldc1.0
    (Actually, I should say that I've only used generics like this, but I presume since the option is there that it handles the other new features too. Of course, you won't have the new libraries, so you can't do runtime annotation processing).

Maybe you are looking for

  • Tried every trick on Google- Itunes 64-bit Windows 7 not working

    Here is the error message I am receiving from the diagnostic test: Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601) Hewlett-Packard HP Pavilion dv6 Notebook PC iTunes 10.7.0.21 QuickTime 7.7.2 FairPlay 2.2.19 Apple Application

  • ITunes won't sync to iPhone 3GS, iTunes appears to be wrong version?

    OK this is really weird, my dad updated to iTunes 9.0.3 last night and his iPhone to OS 3.1.3, I confirmed this by checking Installed Updates under Software Updates in System Preferences. Software Update also says that the system is up to date. If I

  • With multiple Office 2013 items opened, Word opens an invisible document

    Using Windows 7 64-bit, 4GB RAM, and Office Plus 2013, fully updated as of 03/31/2015: User has multiple Excel windows open, multiple Outlook windows open and multiple Word windows open (4 word docs/windows) - When the user opens a 5th Word document,

  • Indesign 8.0.2 Patch install problems

    I have Indesign 8.0 installed on a machine that is not allowed to touch any networks. I tried to install the 8.0.2 patch on it today and the installer told me the patch was not applicable. I have gone out to the downloads section to verify that I was

  • Po not displayed

    hi all. i created a po by using the bapi (BAPI_PO_CREATE1). after created there is no mess in bapi error table,  but the po is only in document overview and tables of po. if i use me23n or me22n to display mean it show the error 'this po is doesnot e