Ld relocation warning for polymorphic class declared __symbolic

The SDN article [Reducing Symbol Scope with Sun Studio C/C++|http://developers.sun.com/solaris/articles/symbol_scope.html|By Giri Mandalika, May, 2005 (revised March 22, 2006) ] says that:
The mixed use of -xldscope=hidden and __symbolic will yield the same effect as __declspec(dllexport) in DLLs on Windows (explained in the later part of the article).
However, the Solaris 10 linker (version 5.10-1.482) issues a relocation warning for polymorphic classes declared with the __symbolic specifier, a common practice in DLLs on Windows. The same happens when using the new Sun C++ 5.9 specifier __declspec(dllexport) when building the .so and dllimport when using it as discussed later in the referenced SDN article.
Is the comment in the article incorrect or is the linker buggy?
$    cat t.cpp \
  && CC -PIC -DEXPORT=__symbolic -xldscope=hidden -c t.cpp \
  && CC -G -o libt.so t.o \
  && CC -DEXPORT=__global -DMAIN -c t.cpp \
  && CC -o t t.o -L. -lt
struct EXPORT B { virtual ~B (); };
#ifdef MAIN
int main () { B b; }
#else
B::~B () { }
#endif
ld: warning: relocation warning: R_SPARC_COPY: file ./libt.so: symbol B::__vtbl: relocation bound to a symbol with STV_PROTECTED visibility

The __global on the declaration is needed in order for the linker to resolve references to the symbol when using it (i.e., in the executable or another .so). Replacing __global with __symbolic on the declaration prevents the executable from linking. Dropping the __global altogether cause the same warning as with __global.
Btw., the same warning is issued for global data (see below). In the Suggestions on establishing an object interface, the article says:
>
2. Define all interface symbols using the __symbolic directive, data objects using the __global directive and reduce all other symbols to local using the -xldscope=hidden compiler option.
>
which is again different from the Windows approach, just like in the case of polymorphic classes. Since virtual tables are essentially global objects, the warning seems consistent and suggests that the article is wrong in claiming that:
>
The mixed use of -xldscope=hidden and __symbolic will yield the same effect as __declspec(dllexport) in DLLs on Windows...
>
$    cat t.cpp \
  && CC -KPIC -DEXPORT=__symbolic -xldscope=hidden -c +w t.cpp\
  && CC -G -o libt.so t.o \
  && CC -DEXPORT=__global -DMAIN -c t.cpp \
  && CC +w -o t t.o -L. -lt
extern EXPORT int* a;
#ifdef MAIN
int main() { a = 0; }
#else
int *a;
#endif
ld: warning: relocation warning: R_SPARC_COPY: file ./libt.so: symbol a: relocation bound to a symbol with STV_PROTECTED visibility

Similar Messages

  • Set all rules in mp or for a class to trigger warning alerts only

    I'm looking for a way to force all rules in class or mp to trigger warnings only. Our enterprise monitoring system picks up a critical from SCOM and pages us. We want to reset everything in the mp's that we are in charge of to warn only then bump them up
    to critical as needed. I was able to do this at the monitor level with the ps below, but I'm not finding a method to do this at the rule level.
    Any help?
    PS for the monitor level:
    $MP
    =
    Get-SCOMManagementPack
    -computername
    managementserver
    |
    Where-Object {$_.displayname
    -like
    "*Override*"}
    $Class
    =
    Get-SCOMClass
    -ComputerName
    managementserver
    |
    Where-Object {$_.displayname
    -like
    "*MP I don't want to generate criticals*"}
    $Monitors
    =
    Get-SCOMMonitor
    -computername
    managementserver
    -Target
    $Class
    foreach
    ($Monitor
    in
    $Monitors) {
    if
    ($Monitor.AlertSettings.AlertSeverity
    -eq
    “Critical”) {
    $MonitorName
    =
    $Monitor.Name
    $OverrideName
    =
    “OV_”
    +
    $MonitorName
    $MonitorOverride
    =
    New-Object
    Microsoft.EnterpriseManagement.Configuration.ManagementPackMonitorPropertyOverride($MP,
    $OverrideName)
    $MonitorOverride
    .Monitor
    =
    $Monitor
    $MonitorOverride
    .Property
    =
    “AlertSeverity”
    $MonitorOverride
    .Value
    =
    “Warning”
    $MonitorOverride
    .Context
    =
    $Class
    $MP
    .AcceptChanges()

    Hi
    Here examples how to do it for rules with PowerShell in bulk
    http://www.systemcentercentral.com/opsmgr-2012-disabling-rules-and-monitors-in-bulk-in-powershell/
    http://www.systemcentercentral.com/create-overrides-in-bulk-powershell-script/
    or in VSAE
    http://blog.tyang.org/2013/06/20/bulk-creating-overrides-in-vsae/
    Cheers,
    Stefan
    Blog: http://blog.scomfaq.ch

  • jsp:useBean error== The value for useBean class is invalid

    Can anybody tell me why am i getting the error for the JavaBean.
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: /SimpleBean.jsp(9,0) The value for the useBean class attribute com.stardeveloper.bean.test.SimpleBean is invalid.
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:148)
         org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1272)
         org.apache.jasper.compiler.Node$UseBean.accept(Node.java:1178)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2361)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2411)
         org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2417)
         org.apache.jasper.compiler.Node$Root.accept(Node.java:495)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2361)
         org.apache.jasper.compiler.Generator.generate(Generator.java:3426)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:216)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:332)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:312)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:299)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:586)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:317)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    note The full stack trace of the root cause is available in the Apache Tomcat/6.0.20 logs.
    Apache Tomcat/6.0.20
    my jsp file is in path c:\tomcat6\webapps\dev\SimpleBean.jsp
    my JavaBean compiled class is in path
    c:\tomcat6\webapps\dev\WEB-INF\classes\com\stardeveloper\bean\test\SimpleBean.class
    and my SimpleBean java class declaration is
    package com.stardeveloper.bean.test;
    public class SimpleBean implements java.io.Serializable
    and my jsp page SimpleBean.jsp pages call to useBean is as follows
    <jsp:useBean id="simple" class="com.stardeveloper.bean.test.SimpleBean">
         <jsp:setProperty name="simple" property="name" value="Sujoy" />
         <jsp:setProperty name="simple" property="age" value="26" />
    </jsp:useBean>
    Please help me anybody.

    First, try restarting Tomcat :-)
    Main 3 reasons for "useBean class is invalid"
    - class must be in a package (ok)
    - class must be public, and have public constructor that takes no arguments (check)
    - class must be compiled, valid and on the classpath. Normally this means the WEB-INF/classes directory.
    From what you have told us, everything seems to check out.
    Try recompiling the .class file to ensure it is valid.
    Does your constructor do anything which might thrown an exception?
    Can you invoke it in scriptlet code without getting an exception?
    <%@ page import="com.stardeveloper.bean.test.SimpleBean" %>
    <% SimpleBean sb = new SimpleBean() %>Trying it in scriptlet code like this might give you a different error message that might help your diagnosis.
    cheers,
    evnafets

  • Dynamic variable in class declaration?

    I've googled this endlessly but I can't find any syntax that helps with this particular question.
    I have (overly simplified):
    for (i=0; i<10; i++) {
         var pieceName:PieceName = new PieceName(); //this obviously isn't right
    I need it to create "pieceName1" and "pieceName2" etc.
    I tried:
    var this["pieceName" + i]:PieceName = new PieceName();
    But that didn't work.
    I tried googling Array Notation but I also couldn't find anything that would help in class declarations.
    What syntax am I looking for?

    You can use something like...
    for (var i=0; i<10; i++) {
         this["pieceName"+String(i)] = new PieceName();
    But further reference to target the object still needs to use the array notation... meaning you cannot target:
       pieceName0._alpha...
    but would have to use...
       this["pieceName0"].alpha...
    Another approach could be to use an array and fill that array with the instances as you create them...
    var pieceNames:Array = new Array()
    for (var i=0; i<10; i++) {
         pieceNames[i] = new PieceName();

  • Metrics "Database Time Spent Waiting (%)" is at ... for event class "Commit

    Hi guys
    I'm getting this warning every 20 minutes from Enterprise Manager 10g: Metrics "Database Time Spent Waiting (%)" is at 67.62891 for event class "Commit". My database is an Oracle 10g 10.2.0.4 (Linux x84_64) with dataguard, one physical and one standby networked at 100Mbit. I have 3 groups of 50M redo log with a low volume of transaction for now. Here are some metrics numbers:
    SQL> select sum(seconds_in_wait),event from v$session_wait group by event;
    SUM(SECONDS_IN_WAIT) EVENT
    121210 SQL*Net message from client
    0 Streams AQ: waiting for messages in the queue
    18 wait for unread message on broadcast channel
    6 LNS ASYNC end of log
    30 jobq slave wait
    37571 rdbms ipc message
    384 smon timer
    35090 pmon timer
    I tune the my listerners for Dataguard using the documentation. I don't know what to tune anymore, is someone has a clue.
    Thanks,
    Chris

    cprieur wrote:
    Metrics "Database Time Spent Waiting (%)" is at 67.62891 for event class "Commit"
    I'am also getting this message at a regular time:
    Metrics "Database Time Spent Waiting (%)" is at 64.09801 for event class "Network"
    The report, I was sent only to indicate the time spent on: SQL*Net message from client
    I believe that these metrics are explained here (near the bottom of the page):
    http://download.oracle.com/docs/cd/B19306_01/em.102/b25986/oracle_database.htm
    There are only two wait events in the Commit class (on 11.1.0.7):
    log file sync
    enq: BB - 2PC across RAC instances
    log file sync waits happen when sessions issue a COMMIT or ROLLBACK. Sessions will wait on this event until LGWR completes its writes to the redo logs (LGWR will likely wait on the event log file parallel wriite while waiting for the write to complete). I believe that your DataGuard configuration may contribute to the long waits experienced by LGWR, and it may be made worse by the network connection.
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28294.pdf
    "Maximum availability - This protection mode provides the highest level of data protection that is possible without compromising the availability of a primary database. Transactions do not commit until all redo data needed to recover those transactions has been written to the online redo log and to at least one standby database."
    So, if Maximum availability is configured, the sessions will have to wait for the redo to be applied to the remote database.
    At the system-wide level you will almost always be able to ignore the SQL*Net message from client wait events. At the session level this wait event has a more significant meaning - the client computer is not actively waiting on a response from the database instance - the client is either sitting idle, or performing client-side processing.
    Sybrand, if he joins this thread, will likely be able to provide a more complete answer regarding DataGuard's contribution to the Commit wait class.
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Unable to locate specified base class 'resources.style1.HelpButtonIcon' for component class

    Hi,
    I have a Flex (4.1.0) project, which has many skinnable custom components. The application allows a user to choose another style which changes these skins via loading a new compiled CSS. These non-default skins are in a separate Flex project.  I've not had a problem with this method until now.
    The custom component I am skinning contains several icons which are defined in the component like this:
    [SkinPart(required="true", type="mx.core.IVisualElement")]
    public var componentIconHelp:IFactory;
    then I use the iconRendererFunction to return the appropriate component part:
    private function iconRendererFunction(item:Object):IFactory
         //truncated method    
         return componentIconHelp;
    Within the skin for "style1", I then have
    <s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009"
         xmlns:s="library://ns.adobe.com/flex/spark"
         xmlns:mx="library://ns.adobe.com/flex/mx"
         xmlns:style1="resources.style1.*">
    <!-- host component -->
    <fx:Metadata>
         [HostComponent("myApp.components.ButtonComponent")]
    </fx:Metadata>
    <fx:Declarations>
         <fx:Component id="componentIconHelp">
              <style1:HelpButtonIcon />
         </fx:Component>
    </Declarations>
    When I try to compile this, I get the "Unable to locate specified base class 'resources.style1.HelpButtonIcon' for component class 'resources.style1.ButtonComponentSkinInnerClass0'" error.
    If I remove the HelpButtonIcon from the <fx:Component> declaration, and just put it in the main body of the skin, it compiles and renders, but I need it to be a component (there's multiple components I have to choose from to display, similar to the ButtonBar skin).
    Any ideas why it's not compiling and what I need to do to achive this?
    Thanks

    Thanks, one step closer (or further away :-)
    I tried adding the airspark.swc to the library path for the project and it made no difference so I added:
    -external-library-path /Applications/Adobe Flash Builder 4/sdks/4.0.0/frameworks/libs/air/airspark.swc
    to the external tools configuration and now get the error:
    command line: Error: unable to open 'Flash'
    The project itself runs fine, it's only the ASDocs that's causing problems.

  • Access Specifiers for a class

    Why we can't declare private or protected for a class as access specifier.
    Can you give me an example on it.

    This is the third time someone asked something like this today:
    http://forum.java.sun.com/thread.jspa?threadID=664848 (where someone references your post on JavaRanch).
    http://forum.java.sun.com/thread.jspa?threadID=664790

  • Can we have more than one contructor for one class?

    I need to provide more than one constructor for one class because I need to have one parameter passed to one constructor and many to another. Is that possible and how it will affects in the instantiation of the object?
    Thanks again
    Jorg3

    One more note about constructors...
    if you define a constructor to take argument(s)
    and don't define the default constructor it is not available.
    Example
    public class myClass
       public static void main(String args[])
          // Ok
          myClass c = new myClass("Hello World");
         // Not Ok
         myClass c2 = new myClass();
       } // main
       public myClass(String name)
          named = name;
       } // myClass
      String named = null;
    } // myClassIf you want to be able to construct the object with the default and parameter constructors, you must declare them all...
    public class myClass
       public static void main(String args[])
          // Ok
          myClass c = new myClass("Hello World");
         // Ok
         myClass c2 = new myClass();
       } // main
       public myClass()
          named = "No Name";
       } // myClass
       public myClass(String name)
          named = name;
       } // myClass
      String named = null;
    } // myClass

  • Waiting (%)     Metrics "Database Time Spent Waiting (%)" is at 69.64818 for event class "Commit"

    Hi,
    Can any one help me on this warning, i got this warning on ORACLE ENTERPRISE MANAGER
    Waits by Wait Class
    Database Time Spent Waiting (%)
    Metrics "Database Time Spent Waiting (%)" is at 69.64818 for event class "Commit"
    Below are our environment details:
    RDBMS: 10.2.0.4
    Oracle E-Business suite: 12.0.6
    OS: Oracle Sun 10
    Please suggest.
    Thank you.

    Please see the following docs.
    How to Disable Alerts for The Database Time Spent Waiting (%) Metric? (Doc ID 1500074.1)
    "Database Time Spent Waiting (%)" at 100 for Event Class "Other" when Database is not Under Load (Doc ID 1526552.1)
    Thanks,
    Hussein

  • Overridding Sufficient for Polymorphism?

    All,
    This is probably an elementary question; however, as I never had a formal CS education, I was wondering what the actual, correct answer is.
    Would overridding a concrete (implemented) method in a superclass within a subclass constitute (or provide) polymorphism? In Java code:
    class FooAncestor {
       public void bar() { };
    class FooDescendant extends FooAncestor {
       public void bar() { super.bar() };
    }Has the 'bar()' method become polymorphic? My understanding is that a combination of inheritance (either interface or class) and the implementation of an abstract method (either interface or abstract class) gives you polymorphism.
    However, is the requirement that the method overridden (or implemented) be abstract a valid requirement to have polymorphism. Or is overridding alone sufficient for polymorphism?
    Thanks!
    - Saish

    > Would overridding a concrete (implemented) method in
    a superclass within a subclass constitute (or
    provide) polymorphism?
    I think yes, it would. Personally, I consider not only the implemented method in the subclass(es) a demonstration of polymorphism, but the implemented method in a superclass, too! Because the principle of polymorphism means that if you execute a method of an object, you are not able to know exactly which behaviour this method will have (the method can have many forms, many behaviours), but you can be sure that the behaviour is always correct, is always what you expect. I think this definition makes sense even considering the method in a superclass.
    Just to clarify more:
    class ParentClass {
      public void method() {
        System.out.println("in ParentClass");
    class ChildClassOne extends ParentClass {
      public void method() {
        System.out.println("in ChildClassOne");
    class ChildClassTwo extends ParentClass {
      public void method() {
        System.out.println("in ChildClassTwo");
    public class TheClass {
      public static void main(String[] args) {
        ParentClass objParent = new ParentClass();
        ParentClass objChildOne = new ChildClassOne();
        ParentClass objChildTwo = new ChildClassTwo();
        ParentClass[] theArray = new ParentClass[3];
        theArray[1] = objParent;
        theArray[2] = objChildOne;
        theArray[3] = objChildTwo;
        for (int i=0; i<theArray.length ; i++) {
          //You know that this array contains
          //ParentClass objects,
          //but you are not able to know
          //exactly which method will be executed.
          //Notice that even the method in the ParentClass
          //is one of the methods that you don�t know.
          //This is the demonstration of polymorphism.
          theArray.method();
    [i]> Has the 'bar()' method become polymorphic?
    Yes, it has.
    > My understanding is that a combination of inheritance
    (either interface or class) and the implementation of
    an abstract method (either interface or abstract
    class) gives you polymorphism.
    My example shows that non-abstract methods implemented in the subclasses can demonstrate polymorphism. And even the implemented method itself in the superclass, can be considered when you want to demonstrate polymorphism. Therefore, this is a clear proof that the method doesn�t need to be abstract.
    > Or is overridding
    alone sufficient for polymorphism?
    Yes, overriding alone is sufficient for that.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • CCMS for MTE Class CCMS_DB_mcmtc

    Hello!
    I would like to set up CCMS for satellite systems with <b>SAP DB</b> (MTE class: CCMS_DB_mcmtc)
    The very interesting elements from this MTE  are:
    - Used Log Space
    - Last successful Complete Data Backup
    - Last Complete Data Backup Return Code
    The problem is, if I save this I get the warning:
    <SID> : MTE class CCMS_DB_mcmtc : No MTEs currently available
    How can this be solved?
    Thank you very much indeed!

    Hi Thom,
    Did you get a solution to your problem? I am having the same problem!
    Please share your solution if you got one.
    Thank you,
    Nic

  • Unable to find associated SLD for specified class(SAP_XIIntegration Directory)

    Hi All,
    We have installed PI 7.4  dual stack on windows platform. All Post Installation activities were completed succesfully. I am able to succesfully execute transactions: SLDCHECK, SXMB_ADM (check) etc.
    All RFC connections are also configured properly. SXI_CACHE working fine.
    But when I tried to create a communication channel it gives me following warning message:
    " Unable to find associated SLD element for specified class (source element: SAP_XIIntegrationDirectory "., CreationClassName,SAP_XIIntegrationDirectory,string, Name, directory.sxi.ict-vxi-65,string)target element class: SAP_XIIntegrationServer).
    Please suggest what needs to be done to solve this issue.
    Thanks
    Pawan

    Hi Pawan,
    SAP note #764176  should be applied. Before you do that, apply note #1117249 Incomplete Registration of PI components in SLD.
    Hopefully this will resolve the error.
    Regards,
    Naveen

  • Message no. B1402- Table KONP for object class COND_A is not defined.

    Hi
    I m using BD52 transaction for message type COND_A and am getting this error for table KONP saying it is not defined for COND_A.
    Can you please let me know which transaction is used to update this information.
    Thanks in advance
    Sana

    In note 309342, for error message no.B1402, following solution is given.
    Solution
    The system issues warning message B1402 " Table KONP for object class COND_A does not exist" for each entry with table KONP and you can ignore this by pressing Enter respectively. Then you can maintain the entries or navigate.
    If the KONP entries bother you since you use Transaction BD52 frequently, you can remove them manually. To do this, you can also use Transaction BD52. The functions are not changed by this deletion. However, the issue of the bothering warning message is suppressed. Table TBD62 is client-dependent that is, you have to make the correction on each active client.
    A related problem exists with table TBD22. During the setup of reductions (that is, new output types which only send a subset of the data of output type COND_A), the corresponding entries in table TBD62 (Transaction BD52) are generated from table TBD22. To avoid the same problem as described above with the new output types, remove the entries of TBD22 with MESTYP COND_Y and CDTABNAME KONP. You can do this with the help of view V_TBD. Transaction SM30, as an output type, select COND_A. Here, remove all entries with segment type EKONP and table name KONP.
    Table TBD22 is client-independent.
    A correction of tables TBD22 and TBD62 by means of an R/3 Support Package is not possible since the tables have delivery classe 'G'. SAP cannot delete entries in the tables.
    thanks
    G. Lakshmipathi

  • HI, I'm having problems initializi​ng object for CNiFgen class.

    Hello, I'm having problems initializing object for CNiFgen class, I declare a pointer *m_pFgen to the CNiFgen class, then m_pFgen = new CNiFgen(m_driver, true, true) and then it gives me an error message Primary Error: (Hex 0xBFFA000C) Invalid attribute.

    Here is how to make a call to initialize a session to niFgen:
    //Create a new session on the device
    _session = new CNiFgen(m_resourcename);
    Also. I'm attaching an example on how to generate standard waveforms with the class interface for Fgen.
    Let me know if you have any other questions,
    Jack Arnold
    Applcation Engineer
    National Instruments
    Attachments:
    niFgen_Function_Generator_Ex.zip ‏5569 KB

  • Documentation for abstract classes (Behavior and Binding) ?

    Hi,
    I am looking at the beautiful sample-app made by Jasper Potts at the www.fxexperience.com. ("Javafx 2.0 Audio Player")
    There some abstract classes are used, for Behavior and Binding.
    It turns out that I have difficulties finding documentation for those classes. The classes are:
    com.sun.javafx.scene.control.behavior.BehaviorBase;
    com.sun.javafx.scene.control.behavior.KeyBinding;
    Could anybody give me hint, pls, where I could find documentation for those classes.
    They are all in the JavaFx-Runtime-Jar-file, together with all the Javafx-classes.
    The Javafx-classes are pretty well documented in the meantime.
    But, allthough in the same "package", the com.sun... classes are still black boxes to me.
    Appreciate a link from somebody who knows, pls.
    Hans

    Hi Hans,
    the classes in the com.sun.* packages are internal classes, in other words they are meant to be black boxes for you. :-)
    A developer should not use these classes, because they can change anytime without warning, even between minor releases. But a developer should also not need to use the internal classes. If Jasper needed them in the demo, it is a clear indicator that something is missing in the public API.
    The classes seem to be part of the UI controls, which were already open-sourced. If you just want to play with the classes, you can study the sources. As a long term solution, I suggest to add a feature request in JIRA for the parts you are missing in the public API (http://javafx-jira.kenai.com).

Maybe you are looking for

  • Apply Template to existing page problems

    I've coinstructed a Dreamweaver Template (dwt) that I want to apply to existing pages in a web site.  I have onle two editable regions defined right now, "doctitle" and "propertyinfo".  When I try to attach my template to a page,  [modify, templates,

  • I am unable to activate my ipad mini

    When I insert my sim in my ipad to start it ...it could not complete configer please sugges what should I do

  • Using iPhoto on External, but photos are mysteriously being loaded internal

    I just recently moved my iPhoto library to my external hard drive. It works fine there. I deleted the library on my MacBook Pro. However, when I upload photos from my camera, it shows both the external hard drive's memory and the laptop's memory bein

  • Kernel Panic every time I put MB to sleep...

    Hello all, I have a consistent kernel panic upon putting my computer to sleep. It doesn't matter if I do it through the Apple menu or by closing the machine. It's consistently telling me that it's the "kernel_task" is related to the panic. This is wh

  • Need  trigger when update one column then record sysdate on another collumn

    Hi Gurus I have a table called RTV_PLAN And it have two columns, FORCE_KEYIN_FLAG VARCHAR(2) FORCE_KEYIN_DATE DATE I want when FORCE_KEYIN_FLAG get a value Then FORCE_KEYIN_DATE record the sysdate Please kindly give some help Many thanks saven