Applet in JSP Unable to run.. help!

Hello all... am running Lomboz Eclipse on WinXP .. all current versions and runtimes of relative java and tomcat updated and my web apps are all working as expected with no real problems... EXCEPT that I am unable to get a simple applet to display in a jsp page. I am using the <jsp:plugin > tag and the cosole gives me that dreaded bloody class not found error. I can run the applet
in appletviewer (from inside the ide) no problem. I have tried placing the applet in a html page then using <jsp:include> but alas that seems to lock up my whole system. I remember several years there was a tool called the sun applet plug in converter... not sure to be honest.. I am no expert in web apps by any means...so my plight may just be class file in the wrong dir.. or some other arcane issue with classpath.... and help would be appreciated!
regards David

Hi,
Kindly refer the below document,
Recommended Browsers for Oracle E-Business Suite Release 12 (Doc ID 389422.1)
Regards
Sham

Similar Messages

  • Re: Including Applet in JSP with Dynamic input| Help needed

    Hi All,
    We are into a project in Oracle Portal Server where in we want to embed a result of a standalone application in Portal page.
    We can do that once we can embed the result of the standalone application which generates applet based on the input it gets from the current application's database.
    If it was static we could have used jsp:plugin but, it fails in our case!
    We are clueless as to how to embed an applet which will pick up the data dynamically.
    Can anyone of you help me in this regard?
    Thanks & Regards
    Arthi

    Hi Arthi,
    I think this might help you to get an idea why jsp:plugin tag does not allow for dynamically called applets.
    <jsp:plugin type=applet height="100%" width="100%"
    archive="myjarfile.jar,myotherjar.jar"
    codebase="/applets"
    code="com.foo.MyApplet" >
    <jsp:params>
    <jsp:param name="enableDebug" value="true" />
    </jsp:params>
    <jsp:fallback>
    Your browser does not support applets.
    </jsp:fallback>
    </jsp:plugin>
    The plugin example illustrates a <html> uniform way of embedding applets in a web page. Before the advent of the <OBJECT> tag, there was no common way of embedding applets. This tag is poorly designed and hopefully future specs will allow for dynamic attributes (height="${param.height}", code="${chart}", etc) and dynamic parameters. Currently, the jsp:plugin tag does not allow for dynamically called applets. For example, if you have a charting applet that requires the data points to be passed in as parameters, you can't use jsp:params unless the number of data points are constant. You can't, for example, loop through a ResultSet to create the jsp:param tags. You have to hand code each jsp:param tag. Each of those jsp:param tags however can have a dynamic name and a dynamic value.
    I think you can get better information if you look in to the below link
    http://pdf.coreservlets.com/CSAJSP-Chapter12.pdf
    Many Thanks,
    Ramesh.

  • Unable to load Applet in JSP using Tomcat 5.5.12

    Hi
    I am aunable to applet in jsp using Tomcat 5.5.12 and JRE 1.5. Below is the code that I am using
                                       <applet
                                       codebase = "."
                                       archive = "WebPOSApplet.jar"
                                       code = "webposprint.WPMainApplet.class"
                                       name = "Trans Applet"
                                       width = "450"
                                       height = "115"
                                       hspace = "0"
                                       vspace = "0"
                                       align = "middle"
                                       >
    <param name = "redirectInfo" value = "SearchProducts.do">
                                       </applet>
    <%/*%>
    <OBJECT
                                       classid = "clsid:CAFEEFAC-0014-0002-0000-ABCDEFFEDCBA"
                                       codebase = "http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,0"
                                       WIDTH = 450 HEIGHT = 115 >
    <PARAM NAME = CODE VALUE = webposprint.WPMainApplet.class>
    <PARAM NAME = archive VALUE = WebPOSApplet.jar>
    <PARAM NAME = "type" VALUE = "application/x-java-applet;jpi-version=1.4.2">
    <param name = "redirectInfo" value = "SearchProducts.do">
    <PARAM NAME = "scriptable" VALUE = "false">
    <PARAM NAME = model VALUE=models/buckminsterfullerine.xyz>
    <embed width="450" height="115" code="webposprint.WPMainApplet.class" archive="WebPOSApplet.jar" type="application/x-java-applet;jpi-version=1.4.2" redirectinfo="SearchProducts.do" scriptable="false" model="models/buckminsterfullerine.xyz" src="webposprint.WPMainApplet.class">
    </embed> <COMMENT> <EMBED
                                       type = "application/x-java-applet;jpi-version=1.4.2" \
                                       CODE = webposprint.WPMainApplet.class\
                                                 archive = WebPOSApplet.jar\
                                       WIDTH = 373 \
                                       HEIGHT = 167 \
                                       model =models/buckminsterfullerine.xyz \
                                            scriptable = false \
                                            pluginspage = "http://java.sun.com/products/plugin/index.html#download"> <NOEMBED>
    alt="Your browser understands the <APPLET>
    tag but isn't running the applet, for some reason."
    Your browser is completely ignoring the <APPLET>
    tag! </NOEMBED> </EMBED> </COMMENT>
    </OBJECT>
    <%*/%>
    This code doesn't seems working with Tomcat 5.5.12. I works fine with Tomcat 4.1.31
    Please help
    Thanks

    Applets run client side - which means the relevant class files need to be downloaded to the client.
    Anything under the WEB-INF directory is not directly accessible by the client. Nothing under WEB-INF can be downloaded.
    ergo, specifying the WEB-INF directory as part of your applet codebase is a bad idea.
    I would suggest try copying the applet classes from under WEB-INF to some other place in your application.
    Also, you should probably specify the full class name of your Applet in the plugin tag.
    <%@ page import="com.util.MyApplet" %>
    <jsp:plugin type="applet" code="com.util.MyApplet" codebase="/classes" width="250" height="100" jreversion="1.6">
         <jsp:fallback>
              <B>Unable to start plugin!</B>
         </jsp:fallback>
    </jsp:plugin>cheers,
    evnafets

  • How to run the applet in JSP

    hi,
    im trying to run an applet from JSP i am not able to see the output of the applet on the JSP page?
    <APPLET CODE="com.metro.supex.admin.SampleApplet.class" HEIGHT="25" WIDTH="125" ALIGN="bottom"></APPLET>
    this line of code is included in JSP to run the applet, it is giving error
    java.lang.ClassNotFoundException:com.metro.supex.admin SampleApplet
    please can you help me in this matter.

    And don't use the applet tag, use object embed.
    use the htmlconverter in the jdk bin dir to convert an applet tag.

  • UNABLE TO RUN APPLETS ON A BROWSER

    I am unable to run applets on a browser which run well on an appletviewer.
    I kept the class file in the same directory as the web page,but it's only showing the applet window, and not showing it's contents.
    console shows...
    java.lang.NoClassDefFoundError: NewApplet (wrong name: applet/NewApplet)
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NoClassDefFoundError: NewApplet (wrong name: applet/NewApplet)
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    as i am a newbee can anybody plz help..........

    what browser r u using? if ever is the java plug-in in your browser is set.

  • I have OS 10.5.8 and am unable to run ITunes or IPhoto. I can reinstall I tunes, but it says I need the newest version of QuickTime, which I already have. Any help would be appreciated!

    I have OS 10.5.8 and am unable to run ITunes or IPhoto. I can reinstall I tunes, but it says I need the newest version of QuickTime, which I already have. Any help would be appreciated!

    Hello Esther,
    Do you have QT v7.7?
    http://support.apple.com/kb/DL761
    And iTunes v10.6.1?
    http://support.apple.com/kb/DL1426

  • Unable to run Memory profiling, help please

    Hi there,
    I installed the lastest version of JDeveloper 10 and created a very simple project(only have one class with Main()method) for testing purpose.
    I configure the Profiler in Project Properties page, setting the class as included instance, however, all those profiling menu items(e.g.: Memory Profile...) are greyed out and I am unable to run memory profiling.
    I wonder if the functions are available for the free-downloaed version of JDeveloper, or is there something wrong with my setting?
    Your help is highly appreciated.

    Make sure you are positioned on the class in the application navigator before going to the "run" menu option.
    Also does it work if you don't change anything in the project properties?
    Here is what I did - created a new project with a simple hello class. And I didn't had any problems profiling it.
    There is no function limitation on the version you downloaded.
    Here is the class I tried:
    public class Class1
    public Class1()
    public static void main(String[] args)
    Class1 class1 = new Class1();
    System.out.println("hello");
    }

  • Unable to run Demos applet in java plug in 1.3.1_04

    Hi
    This is dipak here, I am try to run sample appplets program from java 1.3 samples and codes page of java.sun.com, but I am getting a security warning saying that "Do you want to install and run Java Plug-in1.3.1_13".
    I already install J2RE , i.e. Java Plug-in 1.3.1_04.
    Please tell me what i have to do and Java Plug-in 1.3.1_04 is still supported by java1.3 samples and codes or not.
    Thanks in advance for help.
    Thanks and Regards
    Dipsy

    Apparently the applet you're trying to run is wanting the more recent version of Java, and is asking you to install it.
    The version you have (1.3.1_04) is very old and reached End-of-Life years ago. Updating to Java 5 would probably resolve the issue.

  • Unable to run jsp in tomcat 5.0

    hi ,
    iam unable to run jsps in tomcat 5.0.
    i get an error saying ,unable to compile java compiler
    iam able to compile servlets & execute them.
    i have already set the paths for JAVA_HOME & CATALINA_HOME
    please guide me accordingly
    regards ,
    shailesh

    the same code gets executed in other system in which there is only one jdk.
    the system which iam using has got many jre s due to
    1) netbeans IDE
    2)Weblogic server
    3) jdk 1.4 was previously installed
    4) jdk 1.5 was also installed
    but i have set JAVA_HOME   =jdk1.6
    I doubt the compiler is trying to compile itself or another compiler
    regards ,
    shaileshkumar

  • Re: Embedding Applet in JSP which gets dynamic input| Pls help

    Hi All,
    We are into a project in Oracle Portal Server where in we want to embed a result of a standalone application(Which is applet) in JSP.
    This standalone application generates applet based on the input it gets from the current application's database.
    If it was static we could have used jsp:plugin but, it fails in our case!
    We are clueless as to how to embed an applet which will pick up the data dynamically.
    Can anyone of you help me in this regard?
    Thanks & Regards
    Arthi

    Well instead of generating entire applet ,you can have a generic applet which takes parameters as ( <PARAM name="name" value="value"> ) inputs and process those inputs to generate output.
    In this case the output of the stand alone program would be a object. And in JSP page you need to access this object, then you can get the values which need to be passed to Applet.
    Else
    1.Identify the real path of the applet class file
    ServletContext context = session.getServletContext();
    String realContextPath = context.getRealPath(request.getContextPath());2.Copy the file to a standard location in your web application
    Regards,
    -John-

  • Unable to run Software Install/Restore Disk, Help!

    Hi,
    Currently unable to run my original Software Install and Restore disk.
    Can force the CD tray to open, Disk drive is working fine and can hear it whirring but not running the program on disk!
    Tried holding C key not working (did run my Apple Hardware Test disk though)
    Also tried Holding Command, Option, Shift and Delete keys (to disable hard drive as described in Apple help info)
    If anyone has any suggestions I’m know throwing in potential marriage to anyone with an answer that’ll work.
    (Please note: I’d love to buy DiskWarrior but at £70 and currently being unemployed, that is definitely a last resort.)
    MY ORIGINAL PROBLEM IS OUTLINED BELOW
    Hi nice people.
    I own a –G4 imac 15” flat panel, running OSX10.2
    Currently after turning on my computer I get the following-
    The start up tone, then a screen with the grey apple logo, I then get the spinning grey progress wheel and this is how the computer remains, not progressing from this screen!
    The hard drive is making an active noise for the first minute and then goes quiet.
    Previously to this situation-
    My computer kept locking up while I was using the Internet.
    Seeing the progress indicator (spinning disc) it remained constant and I was not able to do anything from this point. Tried force quitting nothing.
    Switching off the computer with the power button led me to me my current situation.
    I have followed all online help advice that seems to be relevant and have tried the following-
    Resetting PRAM_
    Safe Boot_
    I have also disconnected all additional devices and Ethernet connection.
    Bugger.

    Ok, well they don't actually have them anymore, but if one calls up and says they lost their cds, Apple SOS can send a duplicate, but whether or not its the actual 4 cds and two 10.2.1 cds that remains to be seen, but according to what they told me they no longer provide the cds unless the customer mentions that it was lost or misplaced.

  • I have installed flash player but am unable to run it. Can you help me?

    I have installed flash player but am unable to run it. What should I do?

    You have not mention information about your operating system but still;
    Windows:http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html
    Macintosh:http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html
    If issue still persist;provide information Regarding operating system you are using and product version.
    Sarika

  • Applet in JSP page

    Hello! I wrote an applet and try to put in jsp page in JDeveloper:
    <jsp:plugin type="applet" code="CompositeTest.class"
    width="400" height="400">
    <jsp:fallback>
    <p>Unable to load applet</p>
    </jsp:fallback>
    </jsp:plugin>
    and I copy the class file to folder where the JSP page is located. When I start Jsp page I have a message: "Applet not found"
    What I do wrong??? PLZ Help!
    BEST REGARDS

    Hi,
    I am not sure the JSP file, which resides in the public_html directory, is part of the class path of the running application. If you open the project properties, you can see where JDeveloper looks for Java classes. Try and extend this setting to include the public_hml directory (you can also try and just add the source as a library path (see library section))
    Frank

  • Unable to run Gantt test application on Netweaver CE

    Hi,
    I am unable to run webdynprotest_gantt on Netweaver CE enviornment. I am getting below error.
    Processing HTTP request to servlet [dispatcher] finished with error. The error is: com.sap.tc.webdynpro.services.sal.core.DispatcherException: The requested deployable object 'local/_webdynpro_test_gantt' and application 'com' is not deployed on the server. Please check the used URL for typos.
    at com.sap.tc.webdynpro.clientserver.task.Task.getApplicationDeployableObjectPart(Task.java:385)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.initApplicationDeployableObjectPart(RequestManager.java:531)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.initTask(RequestManager.java:453)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doInitWdEnvironment(RequestManager.java:148)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:203)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToRequestManager(AbstractExecutionContextDispatcher.java:192)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForRequestManager.doService(DispatchHandlerForRequestManager.java:38)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:116)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:93)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToRequestManager(ExecutionContextDispatcher.java:140)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:92)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:104)
    at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doContent(AbstractDispatcherServlet.java:87)
    at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doGet(AbstractDispatcherServlet.java:54)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:66)
    at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:32)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:431)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:289)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:376)
    at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:85)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:160)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:67)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:309)
    at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.run(Processor.java:222)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:152)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:247)
    Caused by: com.sap.tc.webdynpro.services.sal.deployment.api.WDDeploymentException: Failed to get deployable object part for application 'com' of deployable object 'local/_webdynpro_test_gantt'.
    at com.sap.tc.webdynpro.serverimpl.core.deployment.AbstractDeployableObject.getApplication(AbstractDeployableObject.java:91)
    at com.sap.tc.webdynpro.clientserver.task.Task.getApplicationDeployableObjectPart(Task.java:383)
    ... 43 more
    May I know if I am missing any LIB or sCAs?
    Here is the trace for jnet applet
    Java Plug-in 1.5.0_15
    Using JRE version 1.5.0_15 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\ritesh.mehta
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    p:   reload proxy configuration
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    <<<--- Applet.destroy(): AppWin0/JNET --->>>
    <<<--- EXIT for AppWin0/JNET --->>>
    ACF 7.1000.0.80
    UR L&F version: 7.1000.0.10
    ACF | performance | 13h48m14s859ms | # 3 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | end init, complete acf time: | -2434030589499
    ACF | performance | 13h48m14s968ms | # 3 | Thread-6403 | id AEGB.TestAppView.Gantt1 | end invoke, complete acf time: | 328
    <<<--- Applet.destroy(): AppWin0/JNET --->>>
    <<<--- EXIT for AppWin0/JNET --->>>
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | controlID: "AEGB.TestAppView.Gantt1"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | delegateWrapper: "com.sap.tc.webdynpro.network.GanttDelegateWrapper"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | locale: "en"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | jsPrefix: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | traceLevel: "INFO"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | clientSideMassDataCheck: "false"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | DEBUG_PARAM: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | align: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | alt: "Due to browser or system restrictions, this active component (applet) cannot be installed, executed or displayed"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | archive: "../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/JNetAppPro.jar,../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_webdynpro_networkN.jar,../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/JNetAppGantt.jar,../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_plaf_ur_themes.jar"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | code: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | codeBase: "./"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | height: "600"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | hspace: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | legacy_lifecycle: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | mayscript: "true"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | name: "AEGB.TestAppView.Gantt1"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | scriptable: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | type: "application/x-java-applet;jpi-version=1.4.1"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | vspace: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | width: "1424"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | ACF impl version = "7.1003.20071010221049.0000"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | ACF initialized, instance: #4
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | classloader: sun.plugin.security.PluginClassLoader@a7dd39
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | document base: http://odwxpws1:50000/webdynpro/dispatcher/local/_webdynpro_test_gantt/Test1?SAPtestId=21&sap-wd-clienttrace=3
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | code base (call): http://odwxpws1:50000/webdynpro/dispatcher/local/_webdynpro_test_gantt/
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | could not read manifest: AccessControlException caught: access denied (java.lang.RuntimePermission getProtectionDomain)
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.init | can not override dom and sax version
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.init | createNewDelegate
    ACF 7.1000.0.80
    ACF | INFO | 13h49m23s312ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | Acf2Delegate.checkSource | AccessControlException caught, can not check source, ACF is probably unsigned: access denied (java.lang.RuntimePermission getProtectionDomain)
    ACF | INFO | 13h49m23s312ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | GanttDelegateWrapper.getDelegate | calling JGanttApplet constructor, tracelevel: 3
    JNet 1.1034.7286
    Built on:
      Date: 13-Oct-2007 19:14:02
      Host: pwdfm193
      VM: Java HotSpot(TM) Client VM 1.4.2_14-b05 (Sun Microsystems Inc.)
      P4 Server: perforce3002.wdf.sap.corp:3002
      Changelist: 459598
      DC Release: 7.10
      Make Release: 710_VAL_REL
    Built with:
      Source Version: 1034
      Changelist: $Change: 459598 $
      Revision: $Revision: #10 $
      From: $DateTime: 2007/08/28 01:12:01 $
    Running on:
      ACF=true
      os.name = 'Windows XP'
      os.version = '5.1'
      java.vendor = 'Sun Microsystems Inc.'
      java.vm.name = 'Java HotSpot(TM) Client VM'
      java.vm.version = '1.5.0_15-b04'
      java.vm.vendor = 'Sun Microsystems Inc.'
      path.separator = ';'
      file.separator = '\'
      freeMem : 3959688
      totlMem : 17473536
      Rng Mode: Applet=false, Bean=false, Interactive=false
    ACF | INFO | 13h49m23s390ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.constructor | no debug object present
    ACF | INFO | 13h49m23s406ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: postToAWT, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DEBUG_PARAM, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TRACELEVEL, value: "3"
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TRACELEVEL, value: "3"
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_URL, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_HOST, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PROTOCOL, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PORT, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PATH, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_ENCODING, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_SESSION_ID_METHOD, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_RESERVED1, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_RESERVED2, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_ENCODING, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: OUTPUT_ENCODING, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_TYPEREPOSITORY, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_APPLICATION, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_USERINTERFACE, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_GRAPH, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOADGUID, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: STOREINITIALDATA, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FN_TMP, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FN_HTML, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: APPNAME, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JS_EVENT_HANDLER, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FRAME, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JS_EVENTS, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JAVA_EVENTS, value: "*"
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JAVA_EVENTS, value: "*"
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: HTTP_EVENTS, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IGS_HOST, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IGS_PORT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOOK_AND_FEEL, value: "UR_tradeshow"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOOK_AND_FEEL, value: "UR_tradeshow"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_LANGUAGE, value: "en"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_LANGUAGE, value: "en"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_COUNTRY, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_VARIANT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: NO_JS, value: "X"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: NO_JS, value: "X"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVLET_MODE, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_FORMAT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_FILENAME, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_PROPERTIES, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVLET_DOCBASE, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: APP_LOAD_LAST, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: PROPERTIES, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_NAME, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_HREF, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_TARGET, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_ALT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: MODEL_DIRTY_EVENTS, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: RAW_DATA, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: CLIPBOARD_POLICY, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: WAIT_FOR_DATA, value: "TRUE"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: WAIT_FOR_DATA, value: "TRUE"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: STRICT_TYPE_RETRIEVAL, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: REPLY_MODE, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SAVE_POLICY, value: "SEND_EVENT"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SAVE_POLICY, value: "SEND_EVENT"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: XML_OUTPUT_PROPERTIES, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TIMEOUT_WAIT_COMMAND_RESULT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_COMPRESSION, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: OUTPUT_COMPRESSION, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: RESOURCE_POLICY, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_MONITORING, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: EVENT_QING, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LAYOUTER_THREAD, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TIMEOUT_DOUBLECLICK, value: "500"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TIMEOUT_DOUBLECLICK, value: "500"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SESSION_ID, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: RENDERING_HINTS, value is null
    With Permissions:
      [SYSTEM_PROPERTIES]=false
      [JAVA_RUNTIME]=false
      [LOCAL_FILES]=false
      [NET]=false
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getCodeBase | base url not set yet, return original code base: http://odwxpws1:50000/webdynpro/dispatcher/local/_webdynpro_test_gantt/
      [SOCKETS]=false
      [AWT]=false
      [CLIPBOARD]=false
      [SERVER_SAVE]=false
      [DOM_BUILDER]=true
    Using parameters:
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DEBUG_PARAM, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: debug_param, value is null
       0: DEBUG_PARAM = ''
       1:*TRACELEVEL = '3'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_URL, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_url, value is null
       2: SERVER_URL = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server, value is null
       3: SERVER = 'cgi-bin/jnet-cgi.exe'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_HOST, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_host, value is null
       4: SERVER_HOST = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PROTOCOL, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_protocol, value is null
       5: SERVER_PROTOCOL = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PORT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_port, value is null
       6: SERVER_PORT = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PATH, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_path, value is null
       7: SERVER_PATH = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_ENCODING, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_encoding, value is null
       8: SERVER_ENCODING = 'UTF-8'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_SESSION_ID_METHOD, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_session_id_method, value is null
       9: SERVER_SESSION_ID_METHOD = 'URL'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_RESERVED1, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_reserved1, value is null
      10: SERVER_RESERVED1 = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_RESERVED2, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_reserved2, value is null
      11: SERVER_RESERVED2 = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_ENCODING, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: input_encoding, value is null
      12: INPUT_ENCODING = 'UTF-8'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: OUTPUT_ENCODING, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: output_encoding, value is null
      13: OUTPUT_ENCODING = 'UTF-8'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: data, value is null
      14: DATA = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_TYPEREPOSITORY, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: data_typerepository, value is null
      15: DATA_TYPEREPOSITORY = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_APPLICATION, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: data_application, value is null
      16: DATA_APPLICATION = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_USERINTERFACE, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: data_userinterface, value is null
      17: DATA_USERINTERFACE = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_GRAPH, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: data_graph, value is null
      18: DATA_GRAPH = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOADGUID, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: loadguid, value is null
      19: LOADGUID = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: STOREINITIALDATA, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: storeinitialdata, value is null
      20: STOREINITIALDATA = 'false'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FN_TMP, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: fn_tmp, value is null
      21: FN_TMP = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FN_HTML, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: fn_html, value is null
      22: FN_HTML = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: APPNAME, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: appname, value is null
      23: APPNAME = 'JNET'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JS_EVENT_HANDLER, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: js_event_handler, value is null
      24: JS_EVENT_HANDLER = 'jnetEvent'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FRAME, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: frame, value is null
      25: FRAME = '800,600'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JS_EVENTS, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: js_events, value is null
      26: JS_EVENTS = 'JNET_INITIALIZED,TRACELEVEL_CHANGED,NODE_DOUBLE_CLICKED'
      27:*JAVA_EVENTS = '*'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: HTTP_EVENTS, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: http_events, value is null
      28: HTTP_EVENTS = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IGS_HOST, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: igs_host, value is null
      29: IGS_HOST = 'localhost'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IGS_PORT, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: igs_port, value is null
      30: IGS_PORT = '8030'
      31:*LOOK_AND_FEEL = 'UR_tradeshow'
      32:*LOCALE_LANGUAGE = 'en'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_COUNTRY, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: locale_country, value is null
      33: LOCALE_COUNTRY = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_VARIANT, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: locale_variant, value is null
      34: LOCALE_VARIANT = ''
      35:*NO_JS = 'X'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVLET_MODE, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: servlet_mode, value is null
      36: SERVLET_MODE = 'IMAGE'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_FORMAT, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: image_format, value is null
      37: IMAGE_FORMAT = 'PNG'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_FILENAME, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: image_filename, value is null
      38: IMAGE_FILENAME = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_PROPERTIES, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: image_properties, value is null
      39: IMAGE_PROPERTIES = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVLET_DOCBASE, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: servlet_docbase, value is null
      40: SERVLET_DOCBASE = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: APP_LOAD_LAST, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: app_load_last, value is null
      41: APP_LOAD_LAST = 'false'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: PROPERTIES, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: properties, value is null
      42: PROPERTIES = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_NAME, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: imagemap_name, value is null
      43: IMAGEMAP_NAME = 'JNetImageMap'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_HREF, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: imagemap_href, value is null
      44: IMAGEMAP_HREF = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_TARGET, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: imagemap_target, value is null
      45: IMAGEMAP_TARGET = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_ALT, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: imagemap_alt, value is null
      46: IMAGEMAP_ALT = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: MODEL_DIRTY_EVENTS, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: model_dirty_events, value is null
      47: MODEL_DIRTY_EVENTS = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: RAW_DATA, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: raw_data, value is null
      48: RAW_DATA = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: CLIPBOARD_POLICY, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: clipboard_policy, value is null
      49: CLIPBOARD_POLICY = 'STRICT'
      50:*WAIT_FOR_DATA = 'TRUE'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: STRICT_TYPE_RETRIEVAL, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: strict_type_retrieval, value is null
      51: STRICT_TYPE_RETRIEVAL = 'FALSE'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: REPLY_MODE, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: reply_mode, value is null
      52: REPLY_MODE = 'STRING'
      53:*SAVE_POLICY = 'SEND_EVENT'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: XML_OUTPUT_PROPERTIES, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: xml_output_properties, value is null
      54: XML_OUTPUT_PROPERTIES = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TIMEOUT_WAIT_COMMAND_RESULT, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: timeout_wait_command_result, value is null
      55: TIMEOUT_WAIT_COMMAND_RESULT = '3'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_COMPRESSION, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: input_compression, value is null
      56: INPUT_COMPRESSION = 'IMPLICIT'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: OUTPUT_COMPRESSION, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: output_compression, value is null
      57: OUTPUT_COMPRESSION = 'NONE'
      58:*RESOURCE_POLICY = 'JAR_ONLY'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_MONITORING, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: input_monitoring, value is null
      59: INPUT_MONITORING = '1'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: EVENT_QING, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: event_qing, value is null
      60: EVENT_QING = '0'
      61:*LAYOUTER_THREAD = 'CURRENT'
      62:*TIMEOUT_DOUBLECLICK = '500'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SESSION_ID, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: session_id, value is null
      63: SESSION_ID = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: RENDERING_HINTS, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: rendering_hints, value is null
      64: RENDERING_HINTS = ''
    UR L&F version: 7.1000.0.10
    ACF | INFO | 13h49m23s500ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JS_EVENTS, value is null
    ACF | INFO | 13h49m23s500ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: js_events, value is null
    Event[JavaScript]: JNET_INITIALIZED
    Event[JavaScript]: TRACELEVEL_CHANGED
    Event[JavaScript]: NODE_DOUBLE_CLICKED
    Event[Java]: *
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: HTTP_EVENTS, value is null
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: http_events, value is null
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: EVENT_QING, value is null
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: event_qing, value is null
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_COMPRESSION, value is null
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: input_compression, value is null
    loadRes(com/sap/jnet/TypeRepository.xml,-1,-1,0)
    loadRes.2: name=com/sap/jnet/TypeRepository.xml, is=java.util.zip.ZipFile$2@48f675
    <SAPJNetData version="1.0">
         <TypeRepository id="jnet" version="1.0">
              <COLOR>
                   <!-- the pre-defined Java colours are also pre-defined in JNet.
                        They can be referenced by their Java names, but with major
                        first letter and minor rest...
                        "Color.BLACK" in Java is "Black" in JNet.
                     -->
                   <type name="JNetBackground" >
                        <rgb>250,250,250</rgb>
                   </type>
                   <type name="None" >
                        <rgb>-1,-1,-1</rgb>
                   </type>
                   <!-- SAP colours: see SAP Branding.doc / Colour palette -->
                   <type name="SAPBlue" >
                        <rgb>0,51,102</rgb>
                   </type>
                   <type name="SAPGold" >
                        <rgb>255,153,0</rgb>
                   </type>
                   <type name="SAPGray" >
                        <rgb>153,153,153</rgb>
                   </type>
                   <type name="SAP697" >     <!-- dark red -->
                        <rgb>153,51,51</rgb>
                   </type>
                   <type name="SAP364" >     <!-- dark green -->
                        <rgb>51,102,51</rgb>
                   </type>
                   <!--     The UR Semantic Colours:
                             These colour will be overloaded at runtime by the
                             current theme values (if JNet runs under WebDynpro)
                   -->
                   <type name="URCOLOR.STANDARD" >
                        <rgb>255,255,255</rgb>
                   </type>
                   <type name="URCOLOR.ALTERNATING" >
                        <rgb>233,238,244</rgb>
                   </type>
                   <type name="URCOLOR.TRANSPARENT" >
                        <rgb>0,255,255,255</rgb>
                   </type>
                   <type name="URCOLOR.NEGATIVE" >
                        <rgb>255,103,88</rgb>
                   </type>
                   <type name="URCOLOR.POSITIVE" >
                        <rgb>186,238,154</rgb>
                   </type>
                   <type name="URCOLOR.TOTAL" >
                        <rgb>255,248,67</rgb>
                   </type>
                   <type name="URCOLOR.SUBTOTAL" >
                        <rgb>255,251,140</rgb>
                   </type>
                   <type name="URCOLOR.SUBTOTAL_LIGHT" >
                        <rgb>255,253,191</rgb>
                   </type>
                   <type name="URCOLOR.BADVALUE_DARK" >
                        <rgb>255,103,88</rgb>
                   </type>
                   <type name="URCOLOR.BADVALUE_MEDIUM" >
                        <rgb>255,128,115</rgb>
                   </type>
                   <type name="URCOLOR.BADVALUE_LIGHT" >
                        <rgb>255,152,140</rgb>
                   </type>
                   <type name="URCOLOR.CRITICAL" >
                        <rgb>250,242,176</rgb>
                   </type>
                   <type name="URCOLOR.CRITICALVALUE_DARK" >
                        <rgb>251,166,67</rgb>
                   </type>
                   <type name="URCOLOR.CRITICALVALUE_MEDIUM" >
                        <rgb>253,187,113</rgb>
                   </type>
                   <type name="URCOLOR.CRITICALVALUE_LIGHT" >
                        <rgb>254,204,142</rgb>
                   </type>
                   <type name="URCOLOR.GOODVALUE_DARK" >
                        <rgb>148,216,143</rgb>
                   </type>
                   <type name="URCOLOR.GOODVALUE_MEDIUM" >
                        <rgb>171,237,165</rgb>
                   </type>
                   <type name="URCOLOR.GOODVALUE_LIGHT" >
                        <rgb>198,249,193</rgb>
                   </type>
                   <type name="URCOLOR.GROUP_HIGHLIGHTED" >
                        <rgb>151,179,209</rgb>
                   </type>
                   <type name="URCOLOR.GROUP_HIGHLIGHTED_LIGHT" >
                        <rgb>163,193,225</rgb>
                   </type>
                   <type name="URCOLOR.KEY_MEDIUM" >
                        <rgb>166,229,244</rgb>
                   </type>
                   <type name="URCOLOR.GROUP_LEVEL1" >
                        <rgb>183,207,232</rgb>
                   </type>
                   <type name="URCOLOR.GROUP_LEVEL2" >
                        <rgb>195,214,235</rgb>
                   </type>
                   <type name="URCOLOR.GROUP_LEVEL3" >
                        <rgb>213,227,242</rgb>
                   </type>
    <type name="URCOLOR.MARKED" >
         <rgb>255,120,0</rgb>
    </type>
                   <type name="URCOLOR.POPIN" >
                        <rgb>212,218,225</rgb>
                   </type>
                   <type name="URCOLOR.DISABLED" >
                        <rgb>232,235,238</rgb>
                   </type>
    <type name="URCOLOR.TODAY" >
         <rgb>75,135,185</rgb>
    </type>
                   <type name="URCOLOR.SELECTED1" >
                        <rgb>187,221,221</rgb>
                   </type>
                   <type name="URCOLOR.SELECTED2" >
                        <rgb>246,243,135</rgb>
                   </type>
                   <type name="URCOLOR.SELECTED3" >
                        <rgb>195,221,174</rgb>
                   </type>
                   <type name="URCOLOR.SELECTED4" >
                        <rgb>246,103,103</rgb>
                   </type>
                   <type name="URCOLOR.SELECTED5" >
                        <rgb>253,187,113</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_METAL" >
                        <rgb>220,220,220</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_PEACH" >
                        <rgb>248,229,200</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_BLUE" >
                        <rgb>208,225,235</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_ROSE" >
                        <rgb>232,218,225</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_PURPLE" >
                        <rgb>233,219,240</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_AQUA" >
                        <rgb>197,234,238</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_TEAL" >
                        <rgb>204,227,227</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_YELLOW" >
                        <rgb>239,239,176</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_BROWN" >
                        <rgb>229,224,193</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_DEFAULT" >
                        <rgb>230,233,220</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_GREEN" >
                        <rgb>214,236,174</rgb>
                   </type>
                   <!--     Predefined colours for UGSapNode's
                              Don't change these values (must be in sync with
                                         corresponging RGBs in com.sap.jnet.u.g.UGSapNode.java
                   -->
                   <type name="SAPColor.UGSapNode.Default">
                        <rgb>215,216,208</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Aqua">
                        <rgb>135,236,237</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Teal">
                        <rgb>126,223,213</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Yellow">
                        <rgb>246,231,69</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Brown">
                        <rgb>215,216,123</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Green">
                        <rgb>197,241,113</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Metal">
                        <rgb>205,205,208</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Peach">
                        <rgb>249,200,122</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Blue">
                        <rgb>157,210,240</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Rose">
                        <rgb>238,164,201</rgb>
                   </type>
                   

    Hi,
    No progress yet. it seems everything is fine in code but there could be some issue with browser.
    When i view the source of application in browser, i found below code:
    out of which alt="Due to browser or system restrictions, this active component (applet) cannot be installed, executed or displayed"
    is important.
    Let me know your inputs.
    Best Regards,
    Ritesh
    <div style="position: absolute; top: 22px; left: 8px; width: 300px; height: 300px;">
    <span id="DELL.SampleJNETView.Network-r" tabindex="-1">
    <object id="DELL.SampleJNETView.Network" height="100%" width="100%" alt="*Due to browser or system restrictions, this active component (applet) cannot be installed, executed or displayed"* classid="java:com.sap.tc.webdynpro.ace.AcfApplet.class" name="DELL.SampleJNETView.Network" ct="AP" tabindex="-1">
    <param value="application/x-java-applet;jpi-version=1.4.1" name="type"/>
    <param value="./" name="codebase"/>
    <param value="../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_webdynpro_networkN.jar,../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_plaf_ur_themes.jar" name="archive"/>
    <param value="true" name="mayscript"/>
    <param value="DELL.SampleJNETView.Network" name="ControlId"/>
    <param value="0" name="TraceLevel"/>
    <param value="com.sap.tc.webdynpro.network.NetworkDelegateWrapper" name="delegateWrapper"/>
    <param value="en" name="locale"/>
    <param value="true" name="disableHook"/>
    <param value="DELL.SampleJNETView.Network" name="AdapterId"/>
    <param value="true" name="manualUnlock"/>
    <param value="false" name="codebase_lookup"/>
    <param value="../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_webdynpro_networkN.jar;2007.1016.1356.01,../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_plaf_ur_themes.jar;2007.1016.1356.01" name="cache_archive_ex"/>
    <param value="UR_tradeshow" name="LOOK_AND_FEEL"/>
    <param value="500" name="TIMEOUT_DOUBLECLICK"/>
    <param value="*" name="JAVA_EVENTS"/>
    <param value="SEND_EVENT" name="SAVE_POLICY"/>
    <param value="X" name="NO_JS"/>
    <param value="TRUE" name="WAIT_FOR_DATA"/>
    <param value="true" name="disableHook"/>
    <param value="true" name="disableDelta"/>
    <param value="en" name="LOCALE_LANGUAGE"/>
    </object>
    </span>
    </div>

  • Closing an applet  from jsp

    Hi All,.
    Iam facing a problem..pls help me in this..
    i am calling a jsp which is running on other server and from their i am calling an applet..
    pls see the code ie subnav.jsp
    here sp.document.manager.url=http\://localhost\:90/inventx/login.jsp?Return Path=http\://localhost\:90/inventx/spdocs.jsp
    <%String docURL = PropsUtil.get("sp.document.manager.url");%>
    var actionValueId = document.getElementById("localPlanId").value;
              spdocURL = "<%= docURL %>"+ "?Ids=" + actionValueId + "-" + tab +"&userId=" + "<%= userId %>" + "&passwd=" + "<%= encryptedPasswd %>";
              window.open(spdocURL,'spWindow') ;and here is spdocs.jsp
    <%
         String path = request.getPathTranslated( );
         int index = path.lastIndexOf( java.io.File.separatorChar ) + 1;
         Object obj = getServletContext( ).getAttribute( "epm_port" );
         String port = obj == null ? "6060" : obj.toString( );
         String Ids = request.getParameter("Ids");
         String id[] = Ids.split("-");
         String LOCALE = com.inventx.locale.LanguageLocale.getLocale( ).toString();
         java.io.File jar = new java.io.File( path.substring( 0, index ) + "epm/epm.jar" );
         String epmLastModified = new Long( jar.lastModified() ).toString( );
    %>
    <HTML>
         <HEAD>
              <TITLE>Inventx: Product Downloads</TITLE>
              <SCRIPT LANGUAGE="Javascript">
                   function insertLink( ) {
                        document.write( "<td><APPLET id=app CODEBASE=epm CODE=com.inventx.applet.ClientApplet ARCHIVE=\"client.jar\" WIDTH=70 HEIGHT=22>" );
                        document.write( "\t<PARAM NAME=CABBASE VALUE=client.cab>" );
                        document.write( "\t<param name=\"COOKIE\" value=\"EPM_SESSION_ID=<%= session.getId( ) %>\">" );
                        document.write( "\t<param name=\"PORT\" value=\"<%= port %>\">" );
                        document.write( "\t<param name=\"PLANID\" value=\"<%=  id[0] %>\">" );
                        document.write( "\t<param name=\"VERSION\" value=\"1.1.1\">" );
                        document.write( "\t<param name=\"CLIENT_ID\" value=\"\">" );
                        document.write( "\t<param name=\"BLANK_WINDOW\" value=\"true\">" );
                        document.write( "\t<param name=\"APPLICATION\" value=\"<%= id[1] %>\">" );
                        document.write( "\t<param name=\"LOCALE\" value=\"<%= LOCALE %>\">" );
                        document.write( "\t<param name=\"EPMLASTMODIFIED\" value=\"<%= epmLastModified %>\">" );
                        document.write( "</APPLET></td>" );
              </SCRIPT>
         </HEAD>
         <BODY style="background-color: #FFFFFF">
              <table align="center">
                   <tr>
                        <SCRIPT><!--
                             insertLink( );
                        //--></SCRIPT>
                   </tr>
              </table>
         </BODY>
    </HTML>this will lanch the applet...
    now my problem is i have to close this applet..while the user signing out from the main application...
    and here is the logout.jsp
    <%
         com.inventx.Utilities.ClientContext context = getClientContext( request );
         if ( request.getParameter( "Confirm" ) != null && request.getParameter( "Confirm" ).equals( "Yes" ) ) {
              try{
                   //context.getSession().executeMethod(this, "createFolder");
                   System.out.println("Context in logout jsp---"+context.getUserID());
                   System.out.println("Context in logout jsp---"+request.getRemoteAddr());
                   com.inventx.terminateClient.Terminate terminate = new com.inventx.terminateClient.Terminate();
              terminate.sendInstructionToClient(context,request.getRemoteAddr(),session.getAttribute("USER_ID").toString());
                   //context.getSession( ).executeMethod( this, this, "receiveInstruction", false, null );
              } catch (Exception e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              session.invalidate( );
              response.sendRedirect( ".." );
         } else {
    %><html>
         <head>
              <title>Inventx: Logout</title>
         </head>
         <body bgcolor="black" text="white">
              <form enctype="application/x-www-form-urlencoded" method="post">
                   <input type="hidden" name="Confirm" value="Yes">
                   <table align="center">
                        <tr>
                             <td><img src="../images/login.gif" border="0"></td>
                        </tr>
                        <tr>
                             <td> </td>
                        </tr>
                        <tr>
                             <td align="center"><table>
                                  <tr>
                                       <td>Are you sure you wish to logout of the InventX ePM System?</td>
                                  </tr>
                                  <tr>
                                       <td><input type="submit" value="Logout"> <input type="button" value="Cancel" onClick="history.back( )"></td>
                                  </tr>
                             </table></td>
                        </tr>
                   </table>
              </form>
         </body>
    </html><%
    %>pls help me in this..
    Thanks in advance..
    Sathya

    Then the answer is no. The Applet doesn't exist until it is instanciated by the browser so the JSP running on the server can not pass Java Objects. You can either set up a javascript array, set the parameter tags in the HTML Applet tag or have the Applet open a URLConnection back to the server.

Maybe you are looking for

  • Error while creating sample table.

    Hi all, I was getting warning messages after creating a z table in se11.As per the previous post i was able to resolve it. but now when  trying to use the screen painter and click on get from dictionary i m getting the message Table not active in dic

  • Is there a social network for iMessage users?

    I do not have any contact on my iMessage and therefore rarely use. Do not think that would be a funny a sort of portal / social network for Mac users and / or iMessage, where each member would have their profile, where would share photos, their taste

  • Manged Server not able to start.. default policy provider was not found.

    Hi All, SOA suiite 11.1.1.1.3.0 I am able to start admin server successfully. and while starting Managed server I am getting below error. I am trying to start managed server in cmd promt. could anyone pls suggest me to resolve this?? ####<Jun 5, 2013

  • Content Positioning Changes

    I've developed a simple site which can be seeen at http://web.mac.com/geoff_sheehan/iWeb/SAS7/Index.html If you look at the 'About Us' page it seems to move 3-4 pixels down, and 3-4 pixels left. All pages look exactly same in terms of positioning in

  • How to get an AppID for the Microsoft Academic Data?

    Hi, I have just signed up for the Microsoft Academic Data at http://datamarket.azure.com/dataset/mrc/microsoftacademic, but I need to get an Application ID to make it work on my website.  Perhaps, this this requirement could be found in this file: ht