Unable to Create EJB Test Application ....

Folks - I realize that I need to have my EJB offer remote interfaces in order to be able to setup an EJB Test Application from within SJSE6 - but nonetheless, the option is uanvailble off the main menu for logical Session Bean node -
Any thoughts ?
John Schmitt

Hi,
in order to generate the test app, you have to create a J2EE application and add the beans to it using the explorer, than the option should be enabled.
Also it is much better that you use Studio to create the beans and all of the components of the application. Do not create the beans by hand, the IDE will create all of the interfaces for you automatically when you use it to create the beans.
Regards Jirka

Similar Messages

  • Runtime error and unable to create new web application

    Hi
    when i create new web application i faced this error Runtime error and unable to create new web application.
    in this farm we have
    2 wfe servers
    2 application servers.
    adil

    Adil,
    There could be many reason like IIS issue, Space issue, Permission issue, SQL issue which is not possible us to guess rather
    you need to jump in the SharePoint log(Program Files\Common files\Microsoft Shared\Web Server Extensions\14\LOGS) and find out the specific error log its throwing after which trouble shoot can be start.
    You can refer few similar threads here -
    Link
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Unable to create the test suite file

    Hi,
    I imported a BPEL project to my JDeveloper ver 10.1.3.3.0. When I clicked on the <project name>.bpel, I got the
    "unable to create the test suite file" error and all the partnerlinks have a bang sign (!). None of the partner link works.
    Please help,
    Thanks,
    Amorsolo

    Probably you might want to post it in the BPEL forum.
    BPEL
    -Arun

  • Unable to create the test suits file!

    Dear Experts!
    Getting the "Unable to create the test suits file!" error while opening .bpel file in JDeveloper 10.1.3.5. Also, all the partner links showing warning symbol. When I click on them, getting the following error:
    ERROR:WSDLException: faultCode=INVALID_WSDL: Invalid XML in document at: Start of root element expected.
    Looks like partner links are not mapped correctly. Could you please throw some light, where I need to fix the issue.
    Appreciate your help.
    Thank you.

    I had similar issue sometimes back, error was because sample xml my test was using wasn't conforming to my code. In my case, I didn't write test suite so deployment was successful and was getting error while testing post deployment. In your case, test suite will execute.
    Try to follow your xslt mapping or any xpath statements within bpel flow, it must be having direct mapping of some element from source but your sample input xml might not be having that element and hence resulting in error. Try iterative debugging by adding more elements in input xml.
    Regards,
    Ankit

  • Unable to create a test  via Content Management via Content Administration

    I am unable to create a test or survey via Content Management via Content Administration because insufficient privileges message. I create the folder and enter the test information for creating a test and then I after I click apply. I get message “You have insufficient privileges for the current operation. Please contact your System Administrator”.
    The System Administrator viewed the profile being tied to the responsibility and thinks there is no problem. Somebody please!!!!!!!!!!!!!!
    Help……

    Hi, James.
    If you add the main "Learning Administrator" role (UMX|OTA_LRNG_ADMIN), it will include all child roles for the Administrator, including the Learning Content Administrator, Learning Catalog Administrator, Learning Enrollment Administrator, Learning Finance Administrator, Learning Resource Administrator, and Learning Setup Administrator. If you don't have all of these roles, there are functions you will not have access to under the Learning Administrator responsibilities.
    The "Learning Instructor - Update" role only allows users that have the Learning Instructor Self-Service responsibility to update enrollment statuses for Learners that have attended classes that they are set as a resource for and won't impact the Administrator functionality.
    Anne
    Edited by: anne2 on Jun 5, 2013 2:09 AM (Fixed code for Learning Administrator role - Just noticed it was listed as the Enrollment Administrator role instead of the main Learning Administrator role)

  • Unable to create connection to Application Server Control from JDev

    Hi All,
    I am unable to create connection to Application Server Control of SOA Suite from JDeveloper and getting following error:
    Error getting OC4J Process for: opmn-home+oc4j-<hostname>-<OPMN Port>-default:
    Error connecting to OPMN (is it running?): Connection refused: connect
    I restarted all OPMN processes...still getting the same error.
    Thanks
    Krrish

    Hi.
    I got a similar error sometime ago.
    It was related to OPMN not getting bound to the correct server IP. It happened because my SOA Suite was installed in one machine that does not have a fixed IP (or uses loopback adapter) and then I tried to connect to this SOA Suite from another machine, using JDev.
    I checked this by running "opmnctl debug". then you can see on what IP the opmn is listening on.
    Didn't know how to solve this.

  • I unable to run ejb with application client using oc4j j2ee container

    Hi,
    I have installe oracle9i (1.0.2.2) oc4j j2ee container.
    I unable to run the ejbs . please help me how to run ejbs with application client and which files are shall configure.
    See the client application is :
    public static void main (String []args)
    try {
    //Hashtable env = new Hashtable();
    //env.put("java.naming.provider.url", "ormi://localhost/Demo");
    //env.put("java.naming.factory.initial", "com.evermind.server.ApplicationClientInitialContextFactory");
    //env.put(Context.SECURITY_PRINCIPAL, "guest");
    //env.put(Context.SECURITY_CREDENTIALS, "welcome");
    //Context ic = new InitialContext (env);
    System.out.println("\nBegin statelesssession DemoClient.\n");
    Context context = new InitialContext();
    Object homeObject = context.lookup("java:comp/env/DemoApplication");
    DemoHome home= (DemoHome)PortableRemoteObject.narrow(homeObject, DemoHome.class);
    System.out.println("Creating Demo\n");
    Demo demo = home.create();
    System.out.println("The result of demoSelect() is.. " +demo.sayHello());
    }catch ( Exception e )
    System.out.println("::::::Error:::::: ");
    e.printStackTrace();
    System.out.println("End DemoClient....\n");
    When I am running client application I got this type of Exception
    java.lang.SecurityException : No such domain/application: sampledemo
    at com.evermind.server.rmi.RMIConnection.connect(RMIConnection.java : 2040)
    at com.evermind.server.rmi.RMIConnection.connect(RMIConnection.java : 1884)
    at com.evermind.server.rmi.RMIConnection.lookup(RMIConnection.java : 1491)
    at com.evermind.server.rmi.RMIServer.lookup(RMIServer.java : 323)
    at com.evermind.server.rmi.RMIContext.lookup(RMIConext.java : 106)
    at com.evermind.server.administration.LazyResourceFinder.lookup(LazyResourceFinder.java : 59)
    at com.evermind.server.administration.LazyResourceFinder.getEJBHome(LazyResourceFinder.java : 26)
    at com.evermind.server.Application.createContext(Application.java: 653)
    at com.evermind.server.ApplicationClientInitialContext.getInitialContext(ApplicationClientInitialContextFactory.java :179 )
    at javax.naming.spi.NamingManager.getInitialContext(NamingManger.java : 246)
    at javax.naming.InitialContext.getDefaultInitialCtx(InitialContext.java : 246)
    at javax.naming.InitialContext.init(InitialContext.java : 222)
    at javax.naming.InitialContext.<init>(InitialContext.java : 178)
    at DemoClient.main(DemoClient.java : 23)
    .ear file is copied into applications directory.
    I have configured server.xml file like this
    <application name="sampledemo" path="../applications/demos.ear" />
    demos.ear file Contains following files
    application.xml
    demobean.jar
    Manifest.mf
    demobean.jar file contains following files
    application-client.xml
    Demo.class
    DemoBean.class
    DemoHome.class
    ejb-jar.xml
    jndi.properties
    Mainifest.mf
    Please give me your valuable suggestions. Which are shall i configure .
    Thanks & Regards,
    Badri

    Hi Badri,
    ApplicationClientInitialContextFactory is for clients which got deployed inside OC4J container..
    For looking up EJB from a stand alone java client please use RMIInitialContextFactory..So please change ur code....
    Also please check ur server.xml
    Since you have specified your ejb domain as "sampledemo"
    you have to use that domian only for look up..But it seems that you are looking up for "Demo" domain instead of "sampledemo" domain...So change your code to reflect that..
    Code snippet for the same is :
    Hashtable env = new Hashtable();
    env.put("java.naming.provider.url", "ormi://localhost/sampledemo");
    env.put("java.naming.factory.initial", "om.evermind.server.rmi.RMIInitialContextFactory");
    env.put(Context.SECURITY_PRINCIPAL, "guest");
    env.put(Context.SECURITY_CREDENTIALS, "welcome");
    Context ic = new InitialContext (env);
    Hope this helps
    --Venky                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Unable to create Hyperion Planning Application

    Hi, I am unable to create application on Planning 3.5.1 ( Essbase 7.1, repository SQL server, win2k) Process getting terminated with error IHSPAppAssistantACM_Save App Assistant() error Unable to create application nkj. error number -2147160060.Please help.Thanks

    Check that essbase is running, your user is an administrator, missing UDL ... Also, if oracle you will need to edit your hspjshome.properties file to change "localhost" for the oracle entry to be the server name.Hope this helps.

  • Unable to create Search Service Application

    Hi All,
    When I tried to create Search Service Application in Central Admin, I'm getting Error on creation. The below is the detail error.
    Errors were encountered during the configuration of the Search Service Application.
    Microsoft.SharePoint.SPException: The timer job completed, but failed on one or more machines in the farm. at Microsoft.SharePoint.Administration.SPTimerJobAsyncResult.End()
    at Microsoft.SharePoint.Administration.SPServiceApplication.ProvisionInstances() at Microsoft.SharePoint.Administration.SPIisWebServiceApplication.Provision() at Microsoft.Office.Server.Search.Administration.SearchServiceApplication.Provision() at Microsoft.Office.Server.Search.Administration.SearchConfigWizard.b__22()
    at Microsoft.Office.Server.Search.Administration.SearchAdminUtils.UpdateIgnoreSPUpdatedConcurrencyException(String description, SearchAdminUtilsUpdateDelegate updateDelegate, SearchAdminUtilsRefreshObjectDelegate refreshObjectDelegate) at Microsoft.Office.Server.Search.Administration.SearchConfigWizard.CreateSearchApp()
    at Microsoft.Office.Server.Search.Administration.SearchConfigWizard.ProvisionSearchServiceApplication() at Microsoft.Office.Server.Search.Administration.SearchConfigurationJobDefinition.ExecuteTimerJob()
    5/2/2011 11:49:08 AM
    Could any body guide, where I'm missing?.
    Thanks
    When I looked in EventViewer for more error details, the below is the error message.
    Access to 'Global\Microsoft.SharePoint.SPIisProvisioningLock' is denied
    any ideas?.

    It doesnt work.
    I Stopped the search service and then try to receate the Search sercie application with the gui. In the log I get the same error.
    SearchConfigWizardFinish page failed with exception. System.InvalidCastException: Unable to cast COM object of type 'Microsoft.Office.Server.Search.Administration.MSSITLB.CGatheringManagerClass' to interface type 'Microsoft.Office.Server.Search.Administration.MSSITLB.IGatherManagerAdmin3'.
    This operation failed because the QueryInterface call on the COM component for the interface with IID '{0FF1CE14-013A-0000-0000-000000000000}' failed due to the following error: Error loading type library/DLL. (Exception from HRESULT: 0x80029C4A (TYPE_E_CANTLOADLIBRARY)).   
    Server stack trace:      at Microsoft.Office.Server.Search.Administration.Gatherer.get_AdminObject()     at Microsoft.Office.Server.Search.Administration.Gatherer.ProvisionGlobalProperties()    
    at Microsoft.Office.Server.Search.Administration.Gatherer.Provision()     at Microsoft.Office.Server.Search.Administration.SearchServiceInstance.Provision()     at Microsoft.Office.Server.Search.Administration.SearchAdminUtils.DeployLocalServiceInstance[T](T
    localSearchServiceInstance)     at Microsoft.Office.Server.Search.Administration.SearchConfigurationJobDefinition.Create(AbstractSearchConfigWizard wizardOM)     at Microsoft.Office.Server.Search.Internal.UI.SearchConfigWizardFinish.ExecuteConfigurationTimerJob(SPLongOperationState
    longOperationState, String& strRedirectPage)     at Microsoft.SharePoint.SPStatefulLongOperation.SetThreadCultureAndRun(RunStatefulOperation runOperation, SPLongOperationState state, CultureInfo culture, CultureInfo uICulture)    
    at Microsoft.SharePoint.SPStatefulLongOperation.<>c__DisplayClass6.<Run>b__0(Object state)     at Microsoft.SharePoint.Utilities.SPThreadPool.WaitCallbackWrapper(Object state)     at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr
    md, Object[] args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]& outArgs)     at System.Runtime.Remoting.Messaging.StackBuilderSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink)    Exception
    rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.EndInvokeHelper(Message reqMsg, Boolean bProxyCase)     at System.Runtime.Remoting.Proxies.RemotingProxy.Invoke(Object NotUsed, MessageData&
    msgData)     at System.Threading.WaitCallback.EndInvoke(IAsyncResult result)     at Microsoft.SharePoint.Utilities.SPThreadPool.RunAsyncWorkItem(ImpersonatedCallbackParam param, TimerCallback timerCallback, Object timerState,
    Int32 timerPeriod)     at Microsoft.SharePoint.Utilities.SPThreadPool.RunAsyncWorkItemWithImpersonation(WaitCallback workItemCallback, Object workItemState, TimerCallback timerCallback, Object timerState, Int32 timerPeriod)    
    at Microsoft.SharePoint.SPStatefulLongOperation.Run(RunStatefulOperation runOperation)     at Microsoft.Office.Server.Search.Internal.UI.SearchConfigWizardFinish.<>c__DisplayClass2.<Commit>b__0(SPStatefulLongOperation longOperation)

  • Unable to create the new application

    HI
    i am trying to create a new application ,database connections are ok data source is ok .essbase connection is ok.when i described currency period plan 1 and no of years and then click finish i am getting this messege
    An error occurred while processing this page. Check the log for details.

    Hi John ,
    Oracle® Hyperion Planning, Fusion Edition Version: 11.1.1.3.0
    shared services 11.1.1.3
    2003 windows service pack 2
    Regards

  • Unable to create a Planning Application

    Dear All,
    I am not able to create a Planning application. I logged in into the planning using 'admin' user , at the final step I get the error . I checked in the Essbase log file it gives the error as User/group admin already exists.
    I tried with other user also , i get the same error . Please suggest me the remedy . Thank You so much

    Hi John
    When i started the planning service in command propmpt i get the error saying HSP_Action object not found. I checked in the Database and found that this table doesnt exists in the database. Then i reconfigured the database only, from Configuration utility and after that this table appears in the database. I again started the service in commnad it runs fine now. But when I try to login in to the planning , it gives the following error in command propmt.
    java.lang.IllegalStateException: User provisioning requires CSS as the security
    provider.
    at com.hyperion.planning.appdeploy.HspManageAppSession.<init>(Unknown So
    urce)
    at com.hyperion.planning.appdeploy.HspManageAppSession.<init>(Unknown So
    urce)
    at HspCreateApp.Handle(Unknown Source)
    at HspCreateApp.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:237)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:157)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:214)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv
    eContext.java:104)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:520)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(Standard
    ContextValve.java:198)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:152)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv
    eContext.java:104)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:520)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:137)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv
    eContext.java:104)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j

  • Unable to create EJB Data Control

    Hi,
    I'm using JDEveloper 11.1.1.7.
    I've a Fusion Application, and I need to create an EJB Data Control for an EJB placed in another project, let's say:
    Application A:
    Model
    ViewController
    Application BEJBs
    I'v tried to create the data control for the EJB from the Model, first referencing directly the library of the EJB inside the model, after by adding the src folder to the Project and last of all, creating an ejb inside the Model and using the Interface referenced from the external library. All these attempts were negative, when I launch the wizards, I'm only able to choose the EJB from the library but after, when it ask me for the remote/local interface both combos are empty.
    What am I doing wrong?
    Thanks to everybody.
    Stelvio

    Thank for the answer.
    The EJB must be in another Application because it follow a different development cycle, with other people working on it, so it isn't possibile ( and affordable ) to merge it with the new Application.
    Of course, we found a way to communicate with the EJB from the Web App, writing a wrapper class around EJB methods, but, in that way we skip all the benefit from the EJB Data Control.

  • 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>

  • Unable to create the test suite

    Hi ,
    I am getting the below exception after creating the tetsuite in for SOA Composite application in Jdeveloper, if i click the Service from Exposed Services section getting below exception
    oracle.integration.platform.testfwk.xbean.impl.CompositeTestDocumentModelImpl cannot be cast to oracle.tip.tools.ide.fabric.testgen.xbeanModel.CompositeTestDocument
    java.lang.ClassCastException: oracle.integration.platform.testfwk.xbean.impl.CompositeTestDocumentModelImpl cannot be cast to oracle.tip.tools.ide.fabric.testgen.xbeanModel.CompositeTestDocument
         at oracle.tip.tools.ide.fabric.testgen.xbeanModel.CompositeTestDocument$Factory.parse(Unknown Source)
         at oracle.tip.tools.ide.fabric.testgen.addin.CompositeTestModel.source2Design(CompositeTestModel.java:332)
         at oracle.tip.tools.ide.fabric.testgen.addin.CompositeTestModel.getCompositeTestDocument(CompositeTestModel.java:91)
         at oracle.tip.tools.ide.fabric.testgen.gui.DiagramTestEditor.buildTestDiagram(DiagramTestEditor.java:163
    I am using the Jdeveloper Version - 11.1.1.3.0
    Regards,
    Venkat

    Probably you might want to post it in the BPEL forum.
    BPEL
    -Arun

  • Unable to create new Planning application

    I try create Planning Application:
    http://<myserver>:19000/workspace -> Log On -> Navigate -> Administer -> Classic Application Administration -> Planning Administration
    and receive an error on the page "Create Application":
    An error occurred while processing this page. Check the log for details.
    If I try http://<myserver>:8300/HyperionPlanning/AppWizard.jsp - I have this error too.
    Help, please

    Hi,
    I have the same problem. I installed 9.3.1 exactly in the order given in documentation.
    I also configured all products and planning data sources successfully.
    Products I Installed:
    Oracle Database
    1. Shared Services
    2. Essbase
    3. EPMA
    4. Reporting and Analysis
    5. HFM
    6. Planning
    I have created a user given access to all the glbal roles available but still get this error.
    Similarly in the Essbase user properties of (the default admin user and the user created by me), under Application Access type, only Essbase is enabled. Planning is disabled.
    regards
    H
    Edited by: user623259 on Sep 8, 2008 3:48 PM

Maybe you are looking for

  • The installation package could not be opened. Verify that the package exist

    HELP! I have not been able to update my Itunes to a newer version (since 6.0.5). Every time I try to upgrade to the newer version I get this error message when I try to install: "The installation package could not be opened. Verify that the package e

  • Embed FLV

    Hi, I've no problem with uploading .swf file now...but facing a problem about the .flv player...what's your recommendation?i might need your suggestion of Code... Thanks!!!

  • How do i download onto drive f. drive c memory if full

    I have no memory left on my hard drive (c). error says no disk space. I am now trying to download on the USB external in drive (F). everything i try to download keeps going to C. how do i download onto the USB, drive f.

  • Fetching Data from Multi provider

    Hi,    Iu2019ve created multi provider in which I used 2 cubes, when I am viewing the data through the T-Code: LISTCUBE data is fetching from both the cubes but in BEX report itu2019s fetching from only first cube. Thanks & Regards, vikram

  • How can I change the font style on my iPhone 4s

    I would like to change the font on my phone