Potential error with published JavaFX applet?

Hi there
This is a "strange" request. I have recently published a JavaFX app on-line and broadcast a link to it via my blog. Before doing so I successfully tested it on my machines at home (OS X and Win XP) and at work (Win XP and OS X). However I have had a complaint, via the comments, that it does not work? I have emailed the commenter requesting further info regarding OS etc, but am yet to hear anything.
Could you try this link and tell me if it does NOT work, along with OS, Browser, JVM version and error message? It is signed so you will be prompted to trust the source, I had to sign it because I am interfacing with the Twitter API.
Blog post: http://itssmee.wordpress.com/2010/05/25/javafx-1-3-twitter4j-twitter-api-basic-javafx-twitter-client-and-tweet-cloud-generator/
Applet url: http://bikefacts.co.uk/javafx/TweetCloud/index.html
I am very confused as to why it works for me (in two locations) but not for this other person (you can see the comments on the posting).
Thank you.

Ah, some hours ago, I couldn't even get the page. Now it works (from another computer).
WinXP Pro SP3, Java 1.6.0_20
I had to accept twice the security dialog. You mention it in your blog, but it is worth repeating here that one must have a Twitter account to use your applet.
I am uneasy to give my password to an applet, BTW, even if I trust you... :-)
Even on my slow computer, it was quite reactive (perhaps _jesuino has the same issue than me some time ago).
The cloud is nice, but we should be able to zoom, the small words are unreadable.

Similar Messages

  • Help with publish an applet on the web

    I have a few java programs I would like to share with family and friends. I recently learned to convert my applications to Applets, now I am looking to post these on my blog. I know how to embed the applet into an html, and did successfully in my PC. However, when trying to do the same online, I run into problems:
    -Cannot find a server where to upload the applet. Google doesn't seem to do it, and I tried some others without luck.
    -I upload the .class files of my applet to box.net, and copy the URL. In the html of my blog, I use the <applet code = "someURL", but the applet fails since it is unable to find any other class.
    I know that applets are common throughout the web, and that it should be within the reach of an individual programmer like myself (with no budget). If someone who has published an applet could give a short summary of the process, I would much appreciate.
    Specifically, I am looking for:
    Which file hosting service did you use?
    Did you upload as a jar file, or the .class files individually as I did?
    Did you have to pay for the service?
    Thank you

    >
    I have a few java programs I would like to share with family and friends. >Perhaps launching the programs using [Java Web Start|http://java.sun.com/javase/technologies/desktop/javawebstart/index.jsp] (JWS) will fulfil the requirement. A launch using JWS is generally simpler than embedding an applet in HTML. (Note that JWS can launch both (J)Frame and (J)Applet based apps., though a frame works/looks slightly better).
    JWS can launch apps., from a link in a web page..
    As an aside. If you do not intend to use JWS please state that, and explain why.  This is much easier to explain for JWS launch.
    >
    ..I recently learned to convert my applications to Applets, now I am looking to post these on my blog. I know how to embed the applet into an html, and did successfully in my PC. However, when trying to do the same online, I run into problems:
    -Cannot find a server where to upload the applet. Google doesn't seem to do it, and I tried some others without luck.>Google can certainly host JWS apps., check out some of the examples [by Dr John Matthews|http://sites.google.com/site/drjohnbmatthews/], one example of note is the [alpha-composite demo|http://sites.google.com/site/drjohnbmatthews/composite].
    OTOH, I do not know if his site is 'free' or 'paid'. Perhaps Google's free sites limit what you can upload.
    >
    -I upload the .class files of my applet to box.net, and copy the URL. In the html of my blog, I use the <applet code = "someURL", but the applet fails since it is unable to find any other class. >..hmm. Very insufficient detail there. What speaks volumes instead is if you link to the broken applet page.
    But I will comment this. The code attribute should not be any URL. It should be the 'fully qualified class name'. If the applet is trying to get classes from another site, it would do that by specifying a codebase.
    >
    I know that applets are common throughout the web, and that it should be within the reach of an individual programmer like myself (with no budget). If someone who has published an applet could give a short summary of the process, I would much appreciate.>If you can find a place to host the applet itself, but want the HTML elsewhere, try this experiment..
    I have a demo applet at my site, explained/linked in [http://pscode.org/test/docload/|http://pscode.org/test/docload/]. It uses the applet at [http://pscode.org/test/docload/docload.jar|http://pscode.org/test/docload/docload.jar]. The test is to try and load that applet at your site.
    So try this in your HTML.
    <APPLET
      CODE="org.pscode.eg.docload.DocumentLoader"
      ARCHIVE="docload.jar"
      CODEBASE="http://pscode.org/test/docload/"
      WIDTH="600"
      HEIGHT="500"
      ALT="<P>This applet requires Java to be enabled!  Check the browser options or see your SysAdmin.">
    <P>This page requires Java!  Get it free from <A HREF='http://www.java.com/'>www.java.com</A>.</P>
    </APPLET>(That is actually the copy/pasted applet element from the applet page at my site, but with the codebase changed.)
    >
    Did you upload as a jar file, or the .class files individually as I did?>Rarely I use loose class files with applets, but it can be a hassle if they are in packages. It might be that cross-site access requires archives, but JWS certainly requires archives.

  • Help with Deploy javaFx applet to the web, please

    I am new to JavaFx. I have a difficult time to deploy it to the web as an applet. Java console indicates that my jnlp file is not available. Here is what I have done:
    1. In the javaFx project (netbeans project), I put together a small application following the tutorial (app). Run as standard desktop app, it works fine. Run as applet, everything is ok except no images.
    2. In another web project (also netbeans project), I add the javaFx project generated app.jar to the web-inf/lib folder, modify the index.jsp to include a javaFx project generated app.html file and put it at the root of the web application. I also put the favaFx project generated app_browser.jnlp file in the same folder as index.jsp and app.html. Later on also in the web-inf/lib with app.jar. No matter where i put this app.jnlp file, I only see the spinning java logo. Java console states that jnlp is not available.
    this is in my index.jsp: <jsp:include page="app.html" />
    this is in my app.html:
    <h1>app</h1>
    <script src="http://dl.javafx.com/1.2/dtfx.js"></script>
    <script>
    javafx(
    archive: "app.jar",
    code: "com.app.Main",
    name: "app",
    width: 950,
    height: 600
    </script>
    this is in my app.jnlp
    <jnlp spec="1.0+" codebase="http://localhost:8080/app" href="app_browser.jnlp">>
    <information>
    <title>App</title>
    <vendor>Me</vendor>
    <homepage href="http://localhost:8080/app"/>
    <description>My App</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
    <jar href="WEB-INF/lib/app.jar" main="true"/>
    <jar href="WEB-INF/lib/commons-lang.jar"/>
    <jar href="WEB-INF/lib/commons-io.jar"/>
    </resources>
    <applet-desc name="app" main-class="com.sun.javafx.runtime.adapter.Applet" width="950" height="600">
    <param name="MainJavaFXScript" value="com.app.Main"/>
    </applet-desc>
    <update check="background">
    </jnlp>
    What did I miss here? Please help so that I can present this app to my boss and we can use javaFx to build our next application. Thank you very much.
    qding

    Welcome to the Sun forums.
    It would be worth checking the deployment launch file (JNLP) using JaNeLA *(<- link).* As the other poster mentioned, the file is invalid (OK - not well-formed, but possibly also invalid after that is fixed). Also, JaNeLA should warn you that the resources in WEB-INF are not accessible.
    Please do not repost(1) questions in future.
    (1) Post a question twice, or more.

  • Errors with publishing, please help

    I have recently published my site to a folder and then used fetch to transfer it to a server. When the site is transferred there are several errors that appear which include, spacing issues and strange icons on the pages. The website is www.buffbus.com.
    In iWeb everything looks great and I have no issues. The problem is that the finished site looks terrible once I publish it. I have no idea how to remove the errors that are appearing. If anyone can help me, I would greatly appreciate it.
    -MC

    I have recently published my site to a folder and
    then used fetch to transfer it to a server. When the
    site is transferred there are several errors that
    appear which include, spacing issues and strange
    icons on the pages. The website is www.buffbus.com.
    In iWeb everything looks great and I have no issues.
    The problem is that the finished site looks terrible
    once I publish it. I have no idea how to remove the
    errors that are appearing. If anyone can help me, I
    would greatly appreciate it.
    -MC
    .......... Lorna says .............................................
    Dear MC — I only began my iWebsite in July '06 so there are many othere here who know more than I do, but one thing that James Tseng advised when I had a similar problem (my navbar at top of page was garbled) was to Publish All to .Mac.
    I realize that you are using something called Fetch to transfer your web to a server and that tells me that you aren't publishing to .Mac, but maybe the concept of *publishing all* holds true to your situation as well.
    Apparently there is something in the Publish All (to .Mac) which smooths out the kinks, takes away the irregularities.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Another thing I'd like to mention is that sometimes you will get messages announcing one or another kind of irregularity, but in fact, all is well. Example: Sometimes a message will pop up saying that publishing could not happen or was interrupted, etc, but if you actually go to the site to check, you will discover that all was published and NO irregularities exist. The lesson from that being: Check the browser before you go into a lot of remedial actions. There may be no problem at all.
    I realize that THIS time, however, there IS a problem. I'm pretty sure that someone here will have a fix for it; someone always does!
    Lorna in Southern California

  • Error with published content

    I published a course on our LMS hosted by Net Dimensions. I
    published the course in SCORM 1.2 and successfully uploaded the
    content. When we open the course, we receive a message from the
    flash player 9 : "A script in this movie is causing Adobe Flash
    PLayer 9 to run slowly. If it continues to run, you computer may
    become unresponsive. Do you want to abort the script?" If I choose
    yes, it never starts and computer almost froze. If I choose "no",
    it won't run. I tested several PC's with different config and I get
    the same result. I confirmed with our admin and our LMS support
    SCORM 1.2. We do have other courses published on our LMS with
    Articulate SCORM 1.2 that do works.

    Thank you for answer.
    Actually I dont have a problem with the movies if there is no
    scrolling or loading pictures in it.
    I have a problem if I put scrolling text in some of
    moviclips. In this example I put scrollin text in "bbc". And after
    this moviclip "bbc" appears in different places with the different
    screen resolution.
    If I dont put scrolling text there, everything is completely
    ok.
    Dont know how to fix this.

  • PlatinGUI 7.10 Error with GUIScripting in APPLET-mode

    Hello !
    In a manual mode recording and playing of a script works.
    By transfer of a script through parameters of an applet there is mistake Java:
    ############################# ERROR #############################
    19.12. 09:15:46.312 ERROR: GuiJavaScriptEventHandler.processGlobalScript() no global script handler available.
    ############################# ERROR #############################
    ############################# ERROR #############################
    19.12. 09:15:46.328 ERROR: Exception occured: java.lang.reflect.InvocationTargetException
    19.12. 09:15:46.328 ERROR: java.lang.reflect.InvocationTargetException
    19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at java.lang.reflect.Method.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:155)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:139)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2.initImpl(GuiAppletBase2.java:372)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2$AppletInit.run(GuiAppletBase2.java:456)
    19.12. 09:15:46.328 ERROR:  caused by : java.lang.NullPointerException
    19.12. 09:15:46.328 ERROR: java.lang.NullPointerException
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.scripting.javaScript.GuiJavaScriptEventHandler.processGlobalScript(GuiJavaScriptEventHandler.java:96)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.connection.GuiConnection.processScript(GuiConnection.java:939)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.logon.GuiImpl.processPlatinScript(GuiImpl.java:207)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.logon.GuiImpl.init(GuiImpl.java:151)
    19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at java.lang.reflect.Method.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:155)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:139)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2.initImpl(GuiAppletBase2.java:372)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2$AppletInit.run(GuiAppletBase2.java:456)
    ############################# ERROR #############################

    // user configurable part starts here
    var pluginurl         = '';
    var scriptable     = 'false';
    var codebase         = '.';
    var jnlp           = 'platin.jnlp';
    var frog           = 'true';
    var trace          = '';
    var tracefile      = '';
    var connectionData = 'conn=/H/SAPRouterIP/H/SAPHostIP/S/3200&clnt=400&user=username&pass=userpass';
    var mscript = "// ---------------------------------------------------------------------------\n\r"+
                   "// modus 0\n\r"+
                   "// event dynpro SAPLSMTR_NAVIGATION.0100\n\r"+
                   "// event title 'SAP Easy Access'\n\r"+
                   "window.resizeWorkingPane(181,26,true);\n\r"+
                   "window.findById('tbar[0]/okcd').text = '/nfb03';\n\r"+
                   "window.sendVKey(0);\n\r"+
                   "// ---------------------------------------------------------------------------\n\r"+
                   "// modus 0\n\r"+
                   "// event dynpro SAPMF05L.0100\n\r"+
                   "// event title 'Document view: First screen'\n\r"+
                   "userarea.findById('txtRF05L-BELNR').setFocus();\n\r"+
                   "userarea.findById('txtRF05L-BELNR').caretPosition = 0;\n\r";
    // var mscript = 'C:\Users\Victor\scripts\test1.js';
    // user configurable part ends here
    // verify if Java Plugin as control in Internet Explorer or Java Plugin for Netscape or native JRE of browser must be used
    var jre = 'control';
    if(navigator.platform.indexOf("Mac") > -1)
       jre = 'native';
    else if (navigator.appName.indexOf("Netscape") != -1)
       jre = 'plugin';
    document.open();
    switch (jre)
    case 'control':
        document.writeln('<OBJECT CLASSID  = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"                               ');
        document.writeln('    ID       = "PlatinGUI"                                                                    ');
        document.writeln('    WIDTH    = "100%"                                                 ');
        document.writeln('    HEIGHT   = "100%"                                                 ');
        document.writeln('    BORDER   = 0>                                                      ');
        document.writeln('<PARAM NAME = "TYPE"           VALUE = "application/x-java-applet;jpi-version=1.5.0">         ');
        document.writeln('<PARAM NAME = "SCRIPTABLE"     VALUE = "', scriptable,'">                                ');
        document.writeln('<PARAM NAME = "code"           VALUE = "com.sap.platin.GuiApplet2">                   ');
        document.writeln('<PARAM NAME = "codebase"       VALUE = "', codebase,'">                             ');
        document.writeln('<PARAM NAME = "jnlp"           VALUE = "', jnlp,'">                             ');
        document.writeln('<PARAM NAME = "archive"        VALUE = "GuiStartS.jar">                             ');
        document.writeln('<PARAM NAME = "frog"           VALUE = "', frog,'">                             ');
        document.writeln('<PARAM NAME = "trace"          VALUE = "', trace,'">                             ');
        document.writeln('<PARAM NAME = "tracefile"      VALUE = "', tracefile,'">                             ');
        document.writeln('<PARAM NAME = "connectionData" VALUE = "', connectionData,'">                               '); 
        document.writeln('<PARAM NAME = "platinScript"   VALUE = "', mscript,'">                               '); 
        document.writeln('                                                                ');
        document.writeln('This page requires a Sun Java Plugin 1.5 and a SAPGUI for Java to view.                      ');
        document.writeln('                                                                ');
        document.writeln('</OBJECT>                                                           ');
        break;
    case 'plugin':
        document.writeln('<EMBED TYPE        = "application/x-java-applet;version=1.5"                         ');
        document.writeln('    PLUGINURL      = "', pluginurl,'"                                          ');     
        document.writeln('    WIDTH          = "100%"                                            ');                                        
        document.writeln('    HEIGHT         = "100%"                                             ');
        document.writeln('    ALIGN          = "BASELINE"                                                ');
        document.writeln('    code           = "com.sap.platin.GuiApplet2"                                      ');
        document.writeln('    codebase       = "', codebase,'"                                        ');
        document.writeln('    jnlp           = "', jnlp,'"                                                ');
        document.writeln('    archive        = "GuiStartS.jar"                                       ');
        document.writeln('    frog           = "', frog,'"                                            ');
        document.writeln('    trace          = "', trace,'"                                            ');
        document.writeln('    tracefile      = "', tracefile,'"                                       ');
        document.writeln('    connectionData = "', connectionData,'"                                        ');
        document.writeln('    platinScript   = "', mscript,'"                                        ');
        document.writeln(' <NOEMBED>                                                      ');
        document.writeln(' </NOEMBED>                                                      ');
        document.writeln(' </EMBED>                                                              ');
        break;
    case 'native': 
        document.writeln('<APPLET CODEBASE  = "', codebase,'"                                                           ');
        document.writeln('        ARCHIVE   = "GuiStartS.jar"                                                           ');
        document.writeln('        CODE      = "com.sap.platin.GuiApplet2"                                               ');
        document.writeln('        WIDTH     = "100%"                                                                    ');
        document.writeln('        HEIGHT    = "100%">                                                                   ');
        document.writeln('<PARAM NAME = "SCRIPTABLE"     VALUE = "', scriptable, '">                                    ');
        document.writeln('<PARAM NAME = "jnlp"           VALUE = "', jnlp, '">                                          ');
        document.writeln('<PARAM NAME = "frog"           VALUE = "', frog, '">                                          ');
        document.writeln('<PARAM NAME = "trace"          VALUE = "', trace, '">                                         ');
        document.writeln('<PARAM NAME = "tracefile"      VALUE = "', tracefile, '">                                     ');
        document.writeln('<PARAM NAME = "connectionData" VALUE = "', connectionData, '">                                ');
        document.writeln('<PARAM NAME = "platinScript"   VALUE = "', mscript, '">                                ');
        document.writeln('</APPLET>                                                                                ');
        break;
    document.close();

  • JavaFX Applet only works with Netbeans

    Hello Together,
    i have a Problem with my JavaFX Applet. All works fine but only if Netbeans start the Browser Applikation or Netbeans is runing in the Background. If i start the Website with the Applet without Netbeans only the JavaFX Icon will schow and nothing happens.
    But the Java Platform is loaded if i start the Applet.
    I inserted the Applet via JS like this:
    <script src="http://dl.javafx.com/1.1/dtfx.js"></script>
    <script>
        javafx(
                  archive: "Applet.jar",
                  draggable: true,
                  width: 600,
                  height: 600,
                  code: "bewertung.Main",
                  name: "Bewertung"
    </script> Sorry for my bad english.

    I forget to Post the Message from the Java Console.
    java.io.FileNotFoundException: JNLP not available: classes/bewertungfx/Bewertung_browser.jnlp
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.io.FileNotFoundException: JNLP not available: classes/bewertungfx/Bewertung_browser.jnlp
    But the File classes/bewertungfx/Bewertung_browser.jnlp exists and is readable.

  • Javafx applet load error

    Hi
    i'm getting the following error while loading javafx applet in browser and javafx applet is not loading.Can some one suggest a solution to eliminate this error.
    Exception occurred during event dispatching:
    java.lang.NoClassDefFoundError: com/sun/javafx/runtime/location/NumericLocation
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at com.sun.javafx.runtime.adapter.Applet.launchStage(Unknown Source)
         at com.sun.javafx.runtime.adapter.Applet$1.lambda(Unknown Source)
         at com.sun.javafx.runtime.adapter.Applet$1.invoke(Unknown Source)
         at com.sun.javafx.runtime.adapter.Applet$1.invoke(Unknown Source)
         at com.sun.javafx.runtime.Entry$2.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: com.sun.javafx.runtime.location.NumericLocation
         at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
         at sun.plugin2.applet.JNLP2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         ... 15 moreThanks in advance,
    Naveen

    This is the jnlp file i'm using.
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="./" href="videoPlayer.jnlp">
        <information>
            <title>Player</title>
            <vendor>xyz</vendor>
            <homepage href=""/>
            <description></description>
            <offline-allowed/>
            <shortcut>
                <desktop/>
            </shortcut>
        </information>
         <security>
            <all-permissions/>
        </security>
        <resources>
            <j2se version="1.5+"/>
            <jar href="../sisJars/VideoPlayer.jar" main="true" download="eager" />
            <extension name="JavaFX Runtime" href="http://dl.javafx.com/javafx-rt.jnlp"/>
        </resources>
        <applet-desc name="VideoPlayer" main-class="com.sun.javafx.runtime.adapter.Applet" width="646" height="375">
            <param name="MainJavaFXScript" value="com.sis.recordit.jfx.player.Main">
        </applet-desc>
        </jnlp>Thanks

  • JavaFX applet crashes while setting Group visible

    Hi,
    I have a big problem with my JavaFX applet. Sometimes I have to switch the visibility of some Groups in my applet. But often the GUI crashes and I have to close the browser and start it again. I think it's just the GUI that chrashes because the Java Console tells me the applet is running. Do anyone know how to fix this problem?
    Thanks,
    Tobi

    casperghost wrote:
    Do you mean that it just doesn't react anymore?Exactly. The GUI just freezes.
    var event:String = "" on replace   //if variable changes set visible
          if(event.equals("online"))
                 groupOffline.visible = false;
                 groupOnline.visible = true;
          if(event.equals("offline"))
                 groupOnline.visible = false;
                 groupOffline.visible = true;
    var groupOnline:Group = Group
         var text:Text = Text
              font : Font {
                   size: 24
              x: 50
              y: 100
              content: bind "{user} is online"
         var btn:MyButton = MyButton   //custom node
              title: "Test"
              posX: 100
              posY: 150
              action: function()
                   //Action
         content: [text, btn]
         visible: false;
    var groupOffline:Group = Group
         var text:Text = Text
              font : Font {
                   size: 24
              x: 50
              y: 100
              content: bind "{user} is offline"
         var btn:MyButton = MyButton   //custom node
              title: "Test2"
              posX: 100
              posY: 150
              action: function()
                   //Action
         content: [text, btn]
         visible: false;
    }I've shorten the code. There are more groups like them above. But it's always the same. If the event variable changes I set the visibility of the groups. But on Windows XP with Firefox and IE the GUI freezes sometimes. On Mac I haven't got this problem.

  • XML Publisher Error with reports published in XML publisher

    Hi All,
    I am geting the following error with a report published using XML Publisher
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    The system cannot locate the resource specified. Error processing resource 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.d...
    How can i Rectify this?

    Hi Ark,
    In order to generate a report using xml publisher. we need the following.
    1. XML Data
    2. Template file (RTF/PDF/..)
    XML data will not be created by the template file.
    We will be required to create XML data. One of the easiest way to create xml output is using the RDF. We can change the rdf output type in the concurrent program to XML.
    Once the xml and the template is available, "XML Report Publisher" will be able to generate the output in the required format.
    Thanks,
    K.Nataraja Suthan,

  • PeopleSoft XML Publisher report error with java.io.FileNotFoundException

    Hi,
    I have created two reports using XML Publisher in Peoplesoft Financials. The two reports are not related and they were submitted for processing separately. The first report completes without any issues. The second report results in error with the following message:
    09.11.17 ..(CIS_POTRPT.XML_FILE.Step03) (PeopleCode)
    [012309_091118154][oracle.apps.xdo.template.FOProcessor][EXCEPTION] IOException is occurred in FOProcessor.setData(String) with 'files/cis_potrpt.xml'.
    [012309_091118500][oracle.apps.xdo.template.FOProcessor][EXCEPTION] java.io.FileNotFoundException: files/cis_potrpt.xml (A file or directory in the path name does not exist.)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java(Compiled Code))
         at java.io.FileInputStream.<init>(FileInputStream.java:89)
         at oracle.apps.xdo.template.FOProcessor.getInputStream(FOProcessor.java:1316)
         at oracle.apps.xdo.template.FOProcessor.getXMLInput(FOProcessor.java:1100)
         at oracle.apps.xdo.template.FOProcessor.setData(FOProcessor.java:372)
         at com.peoplesoft.pt.xmlpublisher.PTFOProcessor.generateOutput(PTFOProcessor.java:53)
    2009-01-23-09.11.18.000418 AePcdExecutePeopleCode [174] Exception logged: RC=100.
    Error generating report output: (235,2309) PSXP_RPTDEFNMANAGER.ReportDefn.OnExecute Name:ProcessReport PCPC:51552 Statement:1153
    Called from:CIS_POTRPT.XML_FILE.GBL.default.1900-01-01.Step03.OnExecute Statement:8
    2009-01-23-09.11.18.000617 DoStepActions [1797] Exception logged: RC=100.
    Process 598607 ABENDED at Step CIS_POTRPT.XML_FILE.Step03 (PeopleCode) -- RC = 24 (108,524)
    In the process monitor detail > view log/trace page, the xml file is accessible so the file was generated to a valid directory.
    The weird thing is I was able to run this report without any issues few weeks ago although another user also ran into same error. The PeopleCode step that has been identified is essentially same in the two reports. I checked the app server and the directory does exist as well as the xml files for the two reports. The problem does not occur in test environment, just in production. Any help would be appreciated.

    We encounter the same problem. Did you get the answer for this issue? Thanks in advance.

  • XML Publisher Error with reports

    Hi All,
    I am geting the following error with a report published using XML Publisher
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    The system cannot locate the resource specified. Error processing resource 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.d...
    How can i Rectify this?
    Please update....

    Hi Darshan,
    I have done the same change what you suggested at the site level for UTF8, but its still showing the same error
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    End tag 'p' does not match the start tag 'a'. Error processing resource 'http://eyerpdev.etihad.local:8001/OA_CGI/FNDWRR.ex...
    <p class="c0"><a name="Text54" id="Text54"><a name="Text53" id="Text53"><span class="c1">From Period...
    Many thanks....

  • Publishing cancels with "access denied" error when publishing updates to desktop layout

    Hello, all,
    Wondering if anyone else has run into this issue: we update and republish our help projects frequently. We're currently using a layout based on the desktop layout (colors, fonts, and some other screen elements have changed). The project generates successfully. We publish via file transfer and have the "republish all" setting selected. Sometimes when we publish our multiscreen HTML5 layout, it cancels about halfway through the estimated time with a "publishing cancelled - access denied" error. If we delete the layout folder ("desktop" in this case) from the publishing location and retry publishing, it succeeds.
    Has anyone else encountered this issue? If so, what fixes (other than deleting content and republishing) have you found?
    FYI, we also publish the same projects to the WebHelp Pro layout without any issues.
    Thanks in advance for your help.

    This problem used to occur with Publishing from Rh but I have not seen it for a long time, either myself or in posts.
    Maybe Item 5 at http://www.grainge.org/pages/snippets/snippets.htm#webhelp will help.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Error with applets in Firefox

    Hello
    Whenever I open any page with a Java applet, I an error message pops up with java.lang.NullPointerException and Firefox more or less freezes. This has been occurring since I installed JDK (it worked fine before) and it doesn't happen with IE. Does anyone know what could be causing this? Thank you.
    java.lang.NullPointerException
         at com.sun.deploy.net.proxy.DynamicProxyManager.reset(Unknown Source)
         at com.sun.deploy.net.proxy.DeployProxySelector.reset(Unknown Source)
         at sun.plugin.AppletViewer.initEnvironment(Unknown Source)

    Which version of Java are you using?
    Can you post the output of 'java -version' ?
    -Roger

  • WPC Publish error with iView

    Dear All,
    My WPC encounter publish runtime error with iView implementation. The error is..
    Portal runtime error.
    An exception occurred while processing your request. Send the exception ID to your portal administrator.
    Exception ID: 01:30_20/11/09_0107_23634850
    Refer to the log file for details about this exception.
    I am using WPC SP20. There have no errors if no iView implementation.
    Any idea to resolve this error and what error is it?
    Thank you.
    Best Regards,
    Weng

    Dear Tobias,
    I have been tried many times for this case. Actually it has no error log to be generated for this publish runtime error in default.trc .
    It's so weird.. any idea?
    Thank you.
    Regards,
    Weng

Maybe you are looking for

  • Photos from iPhoto to iPod problem

    I received my iPod Classic Black 160Gb and everything is fine with Cover Flow (exempt that I have double pictures of two or three albums) and Games, Podcasts, Video are working. But I can't sinc my iPhoto Library (6000 photos) with iPod, because it s

  • Question mark flashing CD stuck in macBook

    Hello, My MacBook doesnt tur on, I got a question mark flashing. There is a CD stuck inside. I tried everything: ctrl-command-o-f mouse buttom-power reset the memory with command opt p r But the cd is still inside and the question mark too. What can

  • Unstack/Sort Question

    When editing a shoot, I like to temporarily group similar photos into stacks for organizational purposes. Then I like to rearrange the stacks in an order I like. Next is where the problem comes in. I would like to unstack the stacks and have the phot

  • Set image DPI and Depth BITS

    Hi, I've been working in an app that takes images, converts them to a matrix and then back to images. I use jpeg files. I noticed that an image of 1024x768 thats 500Kb size ends up 1024x768 of 102Kb size. I checked the images and noticed that for an

  • Mail Notifications not working

    Hi, just got a new Ipad Air and i'm having some issues with it. My Mail App gives no warning that I have recieved a new email, this happens with the Ipad in sleep or Locked mode as well as when it's being used. I simply don't recieve email notificato