Deploy applications

Hi,
I have developed applications using apex 2.1. I want to deploy elsewhere in other offices (located at different geographical places) of my organization. How to package the application so as to include the application as well as the schema objects as a single bundle.
I am not very particular that at the other end they should not see the code etc. since no business interests are involved.
Presently the only way is to use the application export utility to export the application, and separately create a sql script file for creating the schema objects. It is not an easy thing for the people at the other end to run the different scripts etc.; since they are not familiar with the working of oracle application express.
What is the way out?
Thanks in advance.
Regards
Venkat

Hi Venkat,
Have you tried the steps described in How to Create a Packaged Application of the User's Guide?
http://download-west.oracle.com/docs/cd/B32472_01/doc/appdev.300/b32471/deploy.htm#CHDICGJD
Sima

Similar Messages

  • Deploying Applications with SCCM 2012 R2 to Server 2008 R2 RDS servers

    I'm having some trouble finding some concrete information from Microsoft regarding the deployment of applications to RDS servers using SCCM 2012 R2. There seems to be a lot of conjecture, old information and old wives tales floating around and I was hoping
    I could get some information confirmed!
    1. MSI installs automatically switch to install mode on RDS servers? 
    I've seen this mentioned a few times. I've also seen it mentioned that it is only true when running the MSI from the console session manually (i.e clicking the MSI file) not running as SYSTEM as SCCM would usually do. Can someone confirm if they do this
    themselves or not?
    2. Users still logged in when deploying applications? 
    Is it possible to deploy an application while users are still logged in? Is this only related to going into 'install' mode and taking the chance that a user will do something that will cause issues? Or is it known to cause issues?
    I guess those are the main ones, I'm experienced in SCCM but not with deploying to RDS servers, I cant seem to find any straight answers!
    Anyway, thanks in advance!

    I've never had large enough RDS environment to use SCCM for app push, but from my experience in managing 2012/R2 RDS and local installs, I never bother with switching to install mode anymore and it works fine.  Now if you're skeptical, you can
    easily build this into a script that runs as a pre-req to your .MSI as part of the software package in SCCM so it's not a big deal.
    As for installing apps while users are logged in, shouldn't be a problem if you're installing a new app., if however you're updating an existing application or uninstalling it, then it may be best to drain that RDS host first of all user sessions then do
    the work just to be safe.  this also helps avoid reboots.

  • [Forum FAQ] How to deploy applications remotely

    In some situations, we may need some ways to install applications remotely, here we summarize four general ways to deploy applications.
    1. Using PowerShell to install
    We can use the Win32_Product class to install Windows Installer packages, remotely or locally, so in this way, we can use powerShell command to invoke this function. For example, to install the NewPackage.msi package located in the network
    share \\AppServ\remote on the remote computer PC01, type the following command at the Windows PowerShell prompt:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Product"}).Install(\\AppSrv\remote\NewPackage.msi)
    In same method, we can use the following command to deploy .exe application:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Process"}).Create(\\AppSrv\remote\NewPackage.exe)
    Note: The applications should use Windows Installer technology.
    2. PsExec tool: one of sysinternals utilities
    PsExec's most powerful uses include launching interactive command-prompts on remote systems and remote-enabling tools like IpConfig that otherwise do not have the ability to show information about remote systems. So, we can use this feature to install our
    applications, in fact this is similar with PowerShell methods, the only difference is that PsExec is a comprehensive tool. Similarly, we can use the following command to achieve our goal:
    psexec \\PC01  cmd /c  "\\AppSrv\remote\NewPackage.msi" /quiet /norestart
    Note: we can also use PsExec tool to install Microsoft Update file (.msu)
    psexec \\PC01  -s -h -d wusa.exe  "\\AppSrv\remote\NewPackage.msu" /quiet /norestart
    3. Group Policy Software Installation
    In domain environment, this method is very useful to deploy our software. It only supports MSI package for deployment.
    We can choose assign a program to user or computer. If you assign the program to a user, it is installed when the user logs on to the computer. When the user first runs the program, the installation is completed. If you assign the program to a computer,
    it is installed when the computer starts, and it is available to all users who log on to the computer. When a user first runs the program, the installation is completed.
    You can get the installation information of group policy software installation in event viewer, including success or failure.
    4. System Center Configuration Manger
    The Microsoft System Center Configuration Manager software distribution feature provides a set of tools and resources that help you create and manage packages and advertisements used to distribute software to client resources within your enterprise. This
    is a comprehensive suit for deployment.
    How to Deploy Applications in Configuration Manager
    http://technet.microsoft.com/en-us/library/gg682082.aspx
    Summary:
    There are a lot of methods for software deployment, here just introduce some generic ways.
    Here is another important point of software deployment: Some applications do not use windows installer technology. 
    Applications that do not use Windows Installer technology may have application-specific methods for automated deployment. For example, a .exe file may be just a wrapper, it can be anything. To determine whether there is a method for deployment automation,
    check the documentation for the application or consult the application vendor's support system. In some cases, even if the application vendor did not specifically design the application for installation automation, the installer software manufacturer may have
    some techniques for automation.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    In some situations, we may need some ways to install applications remotely, here we summarize four general ways to deploy applications.
    1. Using PowerShell to install
    We can use the Win32_Product class to install Windows Installer packages, remotely or locally, so in this way, we can use powerShell command to invoke this function. For example, to install the NewPackage.msi package located in the network
    share \\AppServ\remote on the remote computer PC01, type the following command at the Windows PowerShell prompt:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Product"}).Install(\\AppSrv\remote\NewPackage.msi)
    In same method, we can use the following command to deploy .exe application:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Process"}).Create(\\AppSrv\remote\NewPackage.exe)
    Note: The applications should use Windows Installer technology.
    2. PsExec tool: one of sysinternals utilities
    PsExec's most powerful uses include launching interactive command-prompts on remote systems and remote-enabling tools like IpConfig that otherwise do not have the ability to show information about remote systems. So, we can use this feature to install our
    applications, in fact this is similar with PowerShell methods, the only difference is that PsExec is a comprehensive tool. Similarly, we can use the following command to achieve our goal:
    psexec \\PC01  cmd /c  "\\AppSrv\remote\NewPackage.msi" /quiet /norestart
    Note: we can also use PsExec tool to install Microsoft Update file (.msu)
    psexec \\PC01  -s -h -d wusa.exe  "\\AppSrv\remote\NewPackage.msu" /quiet /norestart
    3. Group Policy Software Installation
    In domain environment, this method is very useful to deploy our software. It only supports MSI package for deployment.
    We can choose assign a program to user or computer. If you assign the program to a user, it is installed when the user logs on to the computer. When the user first runs the program, the installation is completed. If you assign the program to a computer,
    it is installed when the computer starts, and it is available to all users who log on to the computer. When a user first runs the program, the installation is completed.
    You can get the installation information of group policy software installation in event viewer, including success or failure.
    4. System Center Configuration Manger
    The Microsoft System Center Configuration Manager software distribution feature provides a set of tools and resources that help you create and manage packages and advertisements used to distribute software to client resources within your enterprise. This
    is a comprehensive suit for deployment.
    How to Deploy Applications in Configuration Manager
    http://technet.microsoft.com/en-us/library/gg682082.aspx
    Summary:
    There are a lot of methods for software deployment, here just introduce some generic ways.
    Here is another important point of software deployment: Some applications do not use windows installer technology. 
    Applications that do not use Windows Installer technology may have application-specific methods for automated deployment. For example, a .exe file may be just a wrapper, it can be anything. To determine whether there is a method for deployment automation,
    check the documentation for the application or consult the application vendor's support system. In some cases, even if the application vendor did not specifically design the application for installation automation, the installer software manufacturer may have
    some techniques for automation.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • Cannot deploy application local/WD_ExcelExport_NW04s

    Hi,
    i am able to build the project successfully, but cannot deploy the sample project WD_ExcelExport_NW04s.   Please see the below exception i got while deploying
    Result
    => deployment aborted : file:/D:/DOCUME1/NMAHAB1.HUS/LOCALS~1/Temp/temp54954WD_ExcelExport_NW04s.ear
    Aborted: development component 'WD_ExcelExport_NW04s'/'local'/'LOKAL'/'0.2007.11.22.20.27.50'/'0':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application local/WD_ExcelExport_NW04s.. Reason: Clusterwide exception: Failed to deploy application local/WD_ExcelExport_NW04s. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?; nested exception is:      com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application local/WD_ExcelExport_NW04s. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment exception : The deployment of at least one item aborted
    Thanks,
    Hussain

    HI Hussain
    1) Undeploy your project using SDM [RemoteGUI], or else ask your basis person to remove that particular project's .EAR file.
    2) If you have a clustered server ,follow this sequence
    a) Stop the Clustered Server
    b) Stop the Local Server
    c) Start the Local Server
    d) Start the Clustered Server
    3) Try to deploy your application once again
    Best Regards
    Chaitanya.A

  • Copy file from client PC to server in a web deployed application

    I have developed one application using Oracle forms 6i, which is deployed on the web server.
    I run this application from a client PC in Internet Explorer using internet.
    I want to copy one file from the client PC to the web server.
    I have done following things
    - Created a shared folder on the server and given full rights to every one on this folder
    - I use 'net use' command in my program to connect to this shared folder
    - I use copy command to copy file from local client pc to server. This copy command I am executing using host command of my programming (PL/SQL: eg. host('copy abc.txt \\server\share\') )
    But this does not work.
    When I do the same thing in command window, it works.
    (ie. Start-Run cmd to open command window and then type the above copy command)
    Can you please tell me, how to copy a file from client PC to the sever in Web deployed application?
    Thanks

    I downloaded D2KWUtil from the link suggested by you. It has very nice example demo form. But the documentation provided says following
    Using D2KWUTIL in Web Deployed Applications
    The use of this library is not supported with Web deployed applications.
    In a web deployment scenario not all functions within D2KWUTIL will work. Any function that interacts with the User Interface (such as those in the WIN_API_DIALOG package) will fail.
    Any interaction with the O/S by other functions will all be executed on the NT server and will act within, or return information pertinant to, the environment on that machine. For instance GET_COMPUTER_NAME will return the Server’s name, not the name of the computer that the Client browser is running on. Likewise COPY_FILE will copy files in the Forms Server not on the Client.
    Functions such as those in WIN_API_BITOP will continue to work without change.
    so this will not work in web deployed application.
    Any other suggestion?
    Thanks

  • Deployment Application To Weblogic Server Failed

    Hello every body
    I need your help in this problem please :
    I'm using Oracle JDeveloper 11.1 in my local machine, I Installed Weblogic Server 10.3 on the server and it's works well, I made new JDBC connection in Weblogic Server and it's works well too.
    I made new ADF Fusion web Application and I used the same connection that I used in Weblogic server and it's works well.
    I made new Application Server Connection from my local machine and It's works well with my user account.
    In my project I made new WAR deployment, Also I configured my Application properties to Bind Application to the Weblogic server Instance.
    1-when I try to deploy my project to Weblogic server I get this error message :
    Deploying Application...
    [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application test_webapp on AdminServer.: Failed to load webapp: 'test_webapp.war'.
    weblogic.application.ModuleException: Failed to load webapp: 'test_webapp.war'
    #### Deployment incomplete. #### Feb 15, 2009 12:18:01 PM
    Deployment Failed
    2-Another application was deployed before to Weblogic server, it seems running well, whereas Weblogic Server marks my deployment health as OK, but when I try to run it for test using this URL : http://serverIP:Port/Deployment Name, I get this Error : Error 403--Forbidden
    What Should I do for both cases ?
    Thanks a lot ...

    Thanks Timo
    But first I don't use any library at my project , this is last log in Weblogic Server logfile :
    ####<Feb 16, 2009 1:56:58 PM EET> <Warning> <DeploymentService> <D2KR2> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <Osama> <> <> <1234785418343> <BEA-290008> <Deployment service servlet encountered while extracting uploaded file to directory ".\servers\AdminServer\upload\test_webapp". Exception is: "invalid distance code".>
    Where D2KR2 is my Server Name
    Osama is my user in Weblogic Server
    test_webapp is the Application name
    My problem didn't solved yet, and I'm new at JDeveloper ADF.
    Where I can find clear information about deploying projects to Weblogic server.
    Thank's Agin ...
    Edited by: user8330337 on 15/02/2009 04:09 ص

  • Error deploying application in integrated weblogic server

    Could somebody help me why i'm not able to deploy this application.thanks
    [Waiting for the domain to finish building...]
    [01:43:49 PM] Creating IntegratedWebLogicServer Domain...
    [01:46:15 PM] IntegratedWebLogicServer Domain processing completed successfully.
    *** Using HTTP port 7101 ***
    *** Using SSL port 7102 ***
    C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\DefaultDomain\bin\startWebLogic.cmd
    [Starting IntegratedWebLogicServer.]
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m
    CLASSPATH=C:\Demo\oracle_common\modules\oracle.jdbc_11.2.0\ojdbc6dms.jar;C:\Demo\ORACLE~1\jdk\lib\tools.jar;C:\Demo\wlserver\server\lib\weblogic_sp.jar;C:\Demo\wlserver\server\lib\weblogic.jar;C:\Demo\wlserver\server\lib\webservices.jar;C:\Demo\oracle_common\modules\org.apache.ant_1.7.1/lib/ant-all.jar;C:\Demo\oracle_common\modules\net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar;C:\Demo\wlserver\modules\features\oracle.wls.common.nodemanager_1.0.0.0.jar;C:\Demo\oracle_common\modules\internal\features\jrf_wlsFmw_oracle.jrf.wls.classpath_12.1.2.jar;C:\Demo\oracle_common\modules\com.oracle.cie.config-wls-online_8.0.0.0.jar;C:\Demo\wlserver\common\derby\lib\derbynet.jar;C:\Demo\wlserver\common\derby\lib\derbyclient.jar;C:\Demo\wlserver\common\derby\lib\derby.jar;C:\Demo\wlserver\server\lib\xqrl.jar
    PATH=;C:\Demo\wlserver\server\native\win\x64;C:\Demo\wlserver\server\bin;C:\Demo\oracle_common\modules\org.apache.ant_1.7.1\bin;C:\Demo\ORACLE~1\jdk\jre\bin;C:\Demo\ORACLE~1\jdk\bin;C:\oraclexe\app\oracle\product\112~1.0\server\bin;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WINDOW~1\v1.0\;C:\PROGRA~1\Broadcom\BROADC~1.11\Driver;C:\PROGRA~1\WIDCOMM\BLUETO~1\;C:\PROGRA~1\WIDCOMM\BLUETO~1\syswow64;C:\PROGRA~1\Java\JDK17~1.0_4\bin;C:\Demo\wlserver\server\native\win\x64\oci920_8
    *  To start WebLogic Server, use a username and   *
    *  password assigned to an admin-level user.  For *
    *  server administration, use the WebLogic Server *
    *  console at http:\\hostname:port\console        *
    starting weblogic with Java version:
    java version "1.7.0_15"
    Java(TM) SE Runtime Environment (build 1.7.0_15-b33)
    Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)
    Starting WLS with line:
    C:\Demo\ORACLE~1\jdk\bin\java -client   -Xms256m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\Demo\wlserver\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=C:\Users\FELISB~1\AppData\Local\Temp\trustStore3111730393237733986.jks -Doracle.jdeveloper.adrs=true -Dweblogic.nodemanager.ServiceEnabled=true  -Xverify:none -Djava.endorsed.dirs=C:\Demo\ORACLE~1\jdk\jre\lib\endorsed;C:\Demo\oracle_common\modules\endorsed -Djava.protocol.handler.pkgs="oracle.mds.net.protocol" -Dopss.version=12.1.2 -Digf.arisidbeans.carmlloc=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\config\fmwconfig\carml -Digf.arisidstack.home=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\config\fmwconfig\arisidprovider -Doracle.security.jps.config=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\config\fmwconfig\jps-config.xml -Doracle.deployed.app.dir=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\servers\DefaultServer\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=C:\Demo\oracle_common\modules\oracle.ossoiap_12.1.2,C:\Demo\oracle_common\modules\oracle.oamprovider_12.1.2,C:\Demo\oracle_common\modules\oracle.jps_12.1.2 -Doracle.mds.filestore.preferred=true -Dweblogic.jdbc.remoteEnabled=false -Dcommon.components.home=C:\Demo\oracle_common -Djrf.version=12.1.2 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1 -Doracle.server.config.dir=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\config\fmwconfig\servers\DefaultServer -Doracle.domain.config.dir=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\config\fmwconfig  -da -Dwls.home=C:\Demo\wlserver\server -Dweblogic.home=C:\Demo\wlserver\server  -Djps.app.credential.overwrite.allowed=true -Djavax.management.builder.initial=weblogic.management.jmx.mbeanserver.WLSMBeanServerBuilder    -Djava.util.logging.manager=oracle.core.ojdl.logging.ODLLogManager  weblogic.Server
    <Dec 2, 2013 1:46:20 PM CET> <Info> <Security> <BEA-090905> <Disabling the CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true.>
    <Dec 2, 2013 1:46:20 PM CET> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true.>
    <Dec 2, 2013 1:46:20 PM CET> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 23.7-b01 from Oracle Corporation.>
    <Dec 2, 2013 1:46:21 PM CET> <Info> <Management> <BEA-141107> <Version: WebLogic Server 12.1.2.0.0  Fri Jun 7 15:16:15 PDT 2013 1530982 WLS_12.1.2.0.0_GENERIC_130607.1100>
    <Dec 2, 2013 1:46:22 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING.>
    <Dec 2, 2013 1:46:22 PM CET> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool.>
    <Dec 2, 2013 1:46:23 PM CET> <Notice> <Log Management> <BEA-170019> <The server log file C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    Dec 02, 2013 1:46:24 PM oracle.security.jps.JpsStartup start
    INFO: Jps started.
    Dec 02, 2013 1:46:29 PM oracle.security.jps.internal.idstore.util.LibOvdUtil pushLdapNamesToLibOvd
    INFO: Pushed ldap name and types info to libOvd. Ldaps : DefaultAuthenticator:idstore.ldap.provideridstore.ldap.
    <Dec 2, 2013 1:46:31 PM CET> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    2013-12-02 13:46:34.580/16.143 Oracle Coherence 12.1.2.0.0 <Info> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded operational configuration from "jar:file:/C:/Demo/coherence/lib/coherence.jar!/tangosol-coherence.xml"
    2013-12-02 13:46:34.650/16.213 Oracle Coherence 12.1.2.0.0 <Info> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded operational overrides from "jar:file:/C:/Demo/coherence/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2013-12-02 13:46:34.654/16.217 Oracle Coherence 12.1.2.0.0 <D5> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2013-12-02 13:46:34.659/16.222 Oracle Coherence 12.1.2.0.0 <D5> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "cache-factory-config.xml" is not specified
    2013-12-02 13:46:34.662/16.225 Oracle Coherence 12.1.2.0.0 <D5> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "cache-factory-builder-config.xml" is not specified
    2013-12-02 13:46:34.664/16.227 Oracle Coherence 12.1.2.0.0 <D5> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 12.1.2.0.0 Build 44396
    Grid Edition: Development mode
    Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
    Dec 02, 2013 1:46:38 PM oracle.ods.virtualization.engine.util.VDELogger info
    INFO: Notification sent for Mapping config object reloaded
    Dec 02, 2013 1:46:38 PM oracle.ods.virtualization.engine.util.VDELogger info
    INFO: Notification sent for Mapping config object reloaded
    <Dec 2, 2013 1:46:56 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY.>
    <Dec 2, 2013 1:46:56 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING.>
    <Dec 2, 2013 1:47:32 PM CET> <Warning> <oracle.adf.share.logging.internal.perf.SensorTable> <BEA-000000> <Detected that sensors created in an invalid ADFContext were later visible in a valid ADFContext.  The sensors should be created in a valid ADFContext.  Please enable finest logging for more information.>
    <Dec 2, 2013 1:47:50 PM CET> <Notice> <Log Management> <BEA-170027> <The server has successfully established a connection with the Domain level Diagnostic Service.>
    <Dec 2, 2013 1:47:51 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN.>
    <Dec 2, 2013 1:47:51 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING.>
    <Dec 2, 2013 1:47:51 PM CET> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the kss keystore file kss://system/demoidentity.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the kss keystore file kss://system/trust.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 127.0.0.1:7102 for protocols iiops, t3s, ldaps, https.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <WebLogicServer> <BEA-000331> <Started the WebLogic Server Administration Server "DefaultServer" for domain "DefaultDomain" running in development mode.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <WebLogicServer> <BEA-000360> <The server started in RUNNING mode.>
    IntegratedWebLogicServer startup time: 101626 ms.
    [IntegratedWebLogicServer started.]
    [Running application HRSystem on IntegratedWebLogicServer...]
    [01:47:58 PM] Web Module ViewControllerWebApp.war recognized in project ViewController.jpr
    [01:47:59 PM] ----  Deployment started.  ----
    [01:47:59 PM] Target platform is  (Weblogic 12.x).
    [01:48:01 PM] Retrieving existing application information
    [01:48:01 PM] Running dependency analysis...
    [01:48:01 PM] Deploying 2 profiles...
    [01:48:04 PM] Wrote Web Application Module to C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\o.j2ee\drs\HRSystem\ViewControllerWebApp.war
    [01:48:05 PM] Wrote Enterprise Application Module to C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\o.j2ee\drs\HRSystem
    [01:48:06 PM] Deploying Application...
    <Dec 2, 2013 1:48:07 PM CET> <Warning> <Application Client> <BEA-2162200> <No Main-Class defined in the manifest file of Java Module: empty.jar. This module will be treated as a utility JAR and subsequent initialization steps will be skipped.>
    <Dec 2, 2013 1:48:18 PM CET> <Warning> <HTTP> <BEA-101384> <WLServlet annotation is deprecated, please use servlet 3.0 annotation instead. App:HRSystem@ViewController, Class:oracle.adfinternal.view.faces.activedata.AdsServlet>
    [01:48:41 PM] Application Deployed Successfully.
    [01:48:41 PM] The following URL context root(s) were defined and can be used as a starting point to test your application:
    [01:48:41 PM] http://localhost:7101/ViewController
    [01:48:42 PM] Elapsed time for deployment:  43 seconds
    [01:48:42 PM] ----  Deployment finished.  ----
    Run startup time: 42793 ms.
    [Application HRSystem running on IntegratedWebLogicServer]
    Target URL -- http://localhost:7101/ViewController/faces/DeptEmpPage.jsf
    <Dec 2, 2013 1:48:52 PM CET> <Warning> <org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl> <BEA-000000> <Apache Trinidad is running with time-stamp checking enabled. This should not be used in a production environment. See the org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml>
    <Dec 2, 2013 1:48:53 PM CET> <Warning> <org.apache.myfaces.trinidadinternal.skin.SkinStyleSheetParserUtils> <BEA-000000> <The skin selector AFIndexedIcon is not a Skin Icon Object since it does not have a content attribute. If you created this selector, please rename it to end with "style" instead of "icon" so that the Skinning Framework will treat it as a style, not an icon.>
    <Dec 2, 2013 1:48:54 PM CET> <Error> <javax.enterprise.resource.webcontainer.jsf.application> <BEA-000000> <Error Rendering View[/DeptEmpPage.jsf]
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      Truncated. see log file for complete stacktrace
    >
    <Dec 2, 2013 1:48:54 PM CET> <Error> <oracle.adfinternal.controller.application.AdfcExceptionHandler> <ADFC-50018> <ADFc: No exception handler was found for an application exception.
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1265)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:170)
      at oracle.adfinternal.view.faces.lifecycle.ResponseRenderManager.runRenderView(ResponseRenderManager.java:52)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1104)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:389)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:255)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    >
    <Dec 2, 2013 1:48:54 PM CET> <Warning> <oracle.adfinternal.view.faces.context.RichExceptionHandler> <BEA-000000> <ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1265)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:170)
      at oracle.adfinternal.view.faces.lifecycle.ResponseRenderManager.runRenderView(ResponseRenderManager.java:52)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1104)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:389)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:255)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    >
    <Dec 2, 2013 1:48:54 PM CET> <Error> <HTTP> <BEA-101020> <[ServletContext@1406583780[app:HRSystem module:ViewController path:null spec-version:3.0]] Servlet failed with an Exception
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      Truncated. see log file for complete stacktrace
    >
    <Dec 2, 2013 1:48:54 PM CET> <Notice> <Diagnostics> <BEA-320068> <Watch "UncheckedException" in module "Module-FMWDFW" with severity "Notice" on server "DefaultServer" has triggered at Dec 2, 2013 1:48:54 PM CET. Notification details:
    WatchRuleType: Log
    WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'WL-101020') OR (MSGID = 'WL-101017') OR (MSGID = 'WL-000802') OR (MSGID = 'BEA-101020') OR (MSGID = 'BEA-101017') OR (MSGID = 'BEA-000802'))
    WatchData: DATE = Dec 2, 2013 1:48:54 PM CET SERVER = DefaultServer MESSAGE = [ServletContext@1406583780[app:HRSystem module:ViewController path:null spec-version:3.0]] Servlet failed with an Exception
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1265)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:170)
      at oracle.adfinternal.view.faces.lifecycle.ResponseRenderManager.runRenderView(ResponseRenderManager.java:52)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1104)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:389)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:255)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    SUBSYSTEM = HTTP USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-101020 MACHINE = felisberto-PC TXID =  CONTEXTID = f520e918-d81c-464e-ab7a-521df9b44e56-00000021 TIMESTAMP = 1385988534568 
    WatchAlarmType: AutomaticReset
    WatchAlarmResetPeriod: 30000
    >
    <Dec 2, 2013 1:48:58 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,249 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:49:00 PM CET> <Emergency> <oracle.dfw.incident> <BEA-000000> <incident 1 created with problem key "DFW-99998 [java.lang.IllegalArgumentException][oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum][HRSystem]">
    <Dec 2, 2013 1:49:17 PM CET> <Error> <javax.enterprise.resource.webcontainer.jsf.application> <BEA-000000> <Error Rendering View[/DeptEmpPage.jsf]
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      Truncated. see log file for complete stacktrace
    >
    <Dec 2, 2013 1:49:17 PM CET> <Error> <oracle.adfinternal.controller.application.AdfcExceptionHandler> <ADFC-50018> <ADFc: No exception handler was found for an application exception.
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderHead(DocumentRenderer.java:980)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1235)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:170)
      at oracle.adfinternal.view.faces.lifecycle.ResponseRenderManager.runRenderView(ResponseRenderManager.java:52)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1104)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:389)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:255)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    >
    <Dec 2, 2013 1:49:17 PM CET> <Warning> <oracle.adfinternal.view.faces.context.RichExceptionHandler> <BEA-000000> <ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderHead(DocumentRenderer.java:980)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1235)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:170)
      at oracle.adfinternal.view.faces.lifecycle.ResponseRenderManager.runRenderView(ResponseRenderManager.java:52)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1104)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:389)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:255)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    >
    <Dec 2, 2013 1:49:17 PM CET> <Error> <HTTP> <BEA-101020> <[ServletContext@1406583780[app:HRSystem module:ViewController path:null spec-version:3.0]] Servlet failed with an Exception
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      Truncated. see log file for complete stacktrace
    >
    <Dec 2, 2013 1:49:23 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,296 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:59:08 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:58,190 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:59:08 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:58,192 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:59:08 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:58,189 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:59:08 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:58,193 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:59:08 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:58,191 during the configured idle timeout of 5 seconds.>
    [Running application HRSystem on IntegratedWebLogicServer...]
    [02:02:27 PM] Web Module ViewControllerWebApp.war recognized in project ViewController.jpr
    [Another instance of application HRSystem is running on the server.  JDeveloper will redeploy the application.]
    [02:02:27 PM] ----  Deployment started.  ----
    [02:02:27 PM] Target platform is  (Weblogic 12.x).
    [02:02:28 PM] Retrieving existing application information
    [02:02:28 PM] Running dependency analysis...
    [02:02:28 PM] Deploying 2 profiles...
    [02:02:28 PM] Wrote Web Application Module to C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\o.j2ee\drs\HRSystem\ViewControllerWebApp.war
    [02:02:28 PM] Wrote Enterprise Application Module to C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\o.j2ee\drs\HRSystem
    [02:02:28 PM] Application will not be redeployed
    [02:02:28 PM] The following URL context root(s) were defined and can be used as a starting point to test your application:
    [02:02:28 PM] http://localhost:7101/ViewController
    [02:02:29 PM] Elapsed time for deployment:  1 second
    [02:02:29 PM] ----  Deployment finished.  ----
    Run startup time: 1101 ms.
    [Application HRSystem running on IntegratedWebLogicServer]
    Target URL -- http://localhost:7101/ViewController/faces/DeptEmpPage.jsf
    <Dec 2, 2013 2:02:33 PM CET> <Error> <javax.enterprise.resource.webcontainer.jsf.application> <BEA-000000> <Error Rendering View[/DeptEmpPage.jsf]
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      Truncated. see log file for complete stacktrace
    >
    <Dec 2, 2013 2:02:33 PM CET> <Error> <oracle.adfinternal.controller.application.AdfcExceptionHandler> <ADFC-50018> <ADFc: No exception handler was found for an application exception.
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderHead(DocumentRenderer.java:980)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1235)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces

    After many hard working days.i finally found the error cause,i needed to make weblogic datasource also ADF doesnt work on internet explorer browser,it works on safary.hope it helps somebody

  • Access Denied error while opening the deployed Application

    Hi,
    When I try to open my deployed application I get the following error:
    weblogic.net.http.SOAPHttpsURLConnection
    Im using the following code in my application:
    URL wsURL = new URL(wsLocation + "?command=login");
    So I went ahead and changed my code to this:
    java.net.URL wsURL = new URL(null, wsLocation + "?command=login",new sun.net.www.protocol.https.Handler());
    But I got the following error:
    access denied (java.lang.RuntimePermission accessClassInPackage.sun.net.www.protocol.https)
    Also I believe sun.* packages are not supported anymore on cloud. I think it might be because of this it failed the second time.
    Is there any workaround for this?
    Regards,
    Abhishek

    Access denied indicates the user account uploading the file doesn't have access to the library, or sometimes it means there's already a document in the library with the same name that was never checked in. It's also possible that your template contains
    custom code that tries to do something that is not allowed.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Facing problem in creating socket in a method from an already deployed application exe while same method is working from another exe from same environment from same location.

    Dll Created In: - MFC VC
    6.0
    Application Exe Developed In:
    - VC 6.0, C# and VB.net (Applications which are using dll)
    OS: - Windows XP sp2 32bit
    / Windows Server 2008 64 bit
    Problem: - Facing problem in creating socket
    in a method from an already deployed application exe while same method is working from another exe from same environment from same location.
    Description: - We have product component which
    has an exe component and from exe we invoke a method, which is defining in dll, and that dll is developed in MFC VC6.0. In the dll we have a method which downloads images from another system after making socket connection. But every time we are getting Error
    code 7, it is not giving desire result while same method is working from another exe from same environment from same location. And also me dll is deployed on many systems and giving proper output from same application.
    Already Attempt: - Because error is coming on
    client side so what we did, we created a driver in C# which invokes same method from same environment(on client machine) using same dll and we are astonished because it worked fine there.
    Kindly Suggest: -
    We are not able to figure out root cause because nothing is coming in windows event logs but what I did, for finding the problem line, I wrote logs on each line and found the exact line in application exe which is not working,
    actually  it is not executing Create () method,
    I will give snippet of the code for understanding the problem because we are not finding any kind solution for it.
    Kindly assist us in understanding and fixing this problem.
    Code Snippet: -
    Int Initialize (LPTSTR SiteAddress, short PortId)
    try
    CClientTSSocket *m_pJtsSockto;
    m_pJtsSockto = new CClientTSSocket;
    LONG lErr = m_pJtsSockto->ConnectTS(csIPAddress,PortId);
    ErrorLog (0, 0, "--------ConnectTS has been called ------------","" );
    catch(...)
    DWORD errorCode = GetLastError();
    CString errorMessage ;
    errorMessage.Format("%lu",errorCode);
    ErrorLog (0, 0, "Image System", (LPTSTR)(LPCTSTR)errorMessage);
    return  IS_ERR_WINDOWS;
    Note: -
    CClientTSSocket extends CAsyncSocket
     IS_ERR_WINDOWS is a macro error code which value I found 7.
    LONG ConnectTS(CString strIP, UINT n_Port)
    ErrorLog(0,0,"ConnectTS is calling Create [is going to call]","");
    if(!Create())
    ErrorLog(0,0,"ConnectTS is calling [Create not called successfully] ","");
     n_Err = GetLastError();
     ErrorLog(n_Err,0,"ConnectTS is calling1111111111111111Erorrrrrrrrrrrrr","");
    return NET_INIT;
    ErrorLog(0,0,"ConnectTS is calling2222222222222222222","");
    if(!AsyncSelect(0))
    n_Err = GetLastError();
    return NET_INIT;
    if(!Connect(strIP,n_Port))
    n_Err = GetLastError();
    ErrorLog(n_Err,0,"ConnectTS","");
    return SERVER_NOT_CONNECTED;
    Code description: -
    From
    int GETImage_MT() method we call Initialize() method and pass client machine IP and Port and there we call
    ConnectTS() method, In this method we Create() method and finally it returns the error code as mention in macro 7.
    Logs after running the program: -
    --------ConnectTS has been called ------------
    ConnectTS is calling Create [is going to call]
    Image System 
    0
    Note: - According to logs, problem is coming in Create method().
    Here 0 is errorMessage received in catch block. And from catch block it returns macro value 7. And when we run same method individually from same machine, same environment through same dll
    from different exe, it is working fine and we are facing any kind of problem. While same problem application was working properly earlier but now continuously it showing problem.
     Kindly assist us to resolve the issue.

    Pointer variable was already initialized; I have mention in code; kindly assist us.
    Dll Created In: - MFC VC 6.0
    Application Exe Developed In: - VC 6.0, C# and VB.net (Applications which are using dll)
    OS: - Windows XP sp2 32bit / Windows Server 2008 64 bit
    Problem: - Facing problem in creating socket
    in a method from an already deployed application exe while same method is working from another exe from same environment from same location.
    Description: - We have product component
    which has an exe component and from exe we invoke a method, which is defining in dll, and that dll is developed in MFC VC6.0. In the dll we have a method which downloads images from another system after making socket connection. But every time we are getting
    Error code 7, it is not giving desire result while same method is working from another exe from same environment from same location. And also me dll is deployed on many systems and giving proper output from same application.
    Already Attempt: - Because error is coming
    on client side so what we did, we created a driver in C# which invokes same method from same environment (on client machine) using same dll and we are astonished because it worked fine there.
    Kindly Suggest:
    - We are not able to figure out root cause because nothing is coming in windows event logs but what I did, for finding the problem line, I wrote logs on each line and found the exact line in application exe which is not
    working, actually it is not executing Create () method, I will give snippet of the code for understanding
    the problem because we are not finding any kind solution for it. Kindly assist us in understanding and fixing this problem.
    Code Snippet: -
    Int Initialize (LPTSTR SiteAddress, short PortId)
    try
    CClientTSSocket *m_pJtsSockto;
    m_pJtsSockto = new CClientTSSocket;
    LONG lErr = m_pJtsSockto->ConnectTS(csIPAddress,PortId);
    ErrorLog (0, 0, "--------ConnectTS has been called ------------","" );
    catch(...)
                       DWORD errorCode = GetLastError();
                       CString errorMessage ;
                       errorMessage.Format("%lu",errorCode);
                       ErrorLog (0, 0, "Image System", (LPTSTR)(LPCTSTR)errorMessage);
                       return  IS_ERR_WINDOWS;
    Note: - CClientTSSocket extends CAsyncSocket
     IS_ERR_WINDOWS is a macro error code which value I found 7.
    LONG ConnectTS(CString strIP, UINT n_Port)
              ErrorLog(0,0,"ConnectTS is calling Create [is going to call]","");
              if(!Create())
                       ErrorLog(0,0,"ConnectTS is calling [Create not called successfully] ","");
              n_Err = GetLastError();
              ErrorLog(n_Err,0,"ConnectTS is calling1111111111111111Erorrrrrrrrrrrrr","");
                      return NET_INIT;
              ErrorLog(0,0,"ConnectTS is calling2222222222222222222","");
              if(!AsyncSelect(0))
                       n_Err = GetLastError();
                       return NET_INIT;
              if(!Connect(strIP,n_Port))
                       n_Err = GetLastError();
                       ErrorLog(n_Err,0,"ConnectTS","");
                       return SERVER_NOT_CONNECTED;
    Code description: - From int GETImage_MT() method
    we call Initialize() method and pass client machine IP and Port and there we call ConnectTS() method, In
    this method we Create() method and finally it returns the error code as mention in macro 7.
    Logs after running the program: -
    --------ConnectTS has been called ------------
    ConnectTS is calling Create [is going to call]
    Image System  0
    Note: - According to logs, problem is coming in Create method(). Here
    0 is errorMessage received in catch block. And from catch block it returns macro value 7. And when we run same method individually from same machine, same environment through same dll from different exe, it is working fine and we are facing any kind of problem.
    While same problem application was working properly earlier but now continuously it showing problem.
     Kindly assist us to resolve the issue.

  • StackOverflow error while deploying application in to Wblogic 10.3

    Hi,
    When i deploying application in to weblogic 10.3 getting stackoverflow err, please any one could give sol.
    Error 500--Internal Server Error
    java.lang.StackOverflowError
         at java.lang.AbstractStringBuilder.append(AbstractStringBuilder.java:390)
         at java.lang.StringBuilder.append(StringBuilder.java:119)
         at java.net.URLStreamHandler.parseURL(URLStreamHandler.java:232)
         at sun.net.www.protocol.file.Handler.parseURL(Handler.java:50)
         at java.net.URL.(URL.java:596)
         at java.net.URL.(URL.java:464)
         at sun.misc.URLClassPath$FileLoader.getResource(URLClassPath.java:971)
         at sun.misc.URLClassPath$FileLoader.findResource(URLClassPath.java:961)
         at sun.misc.URLClassPath.findResource(URLClassPath.java:145)
         at java.net.URLClassLoader$2.run(URLClassLoader.java:362)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findResource(URLClassLoader.java:359)
         at java.lang.ClassLoader.getResource(ClassLoader.java:977)
         at java.lang.ClassLoader.getSystemResource(ClassLoader.java:1075)
         at org.apache.log4j.helpers.Loader.getResource(Loader.java:125)
         at com.thoughtbreak.common.util.ClassPathHelper.findUrlOnClasspath(ClassPathHelper.java:26)
         at com.thoughtbreak.common.util.ClassPathHelper.findFileOnClasspath(ClassPathHelper.java:32)
         at com.thoughtbreak.common.util.Configuration.getDefaultFileName(Configuration.java:456)
         at com.thoughtbreak.common.util.Configuration.getConfig(Configuration.java:176)
         at com.thoughtbreak.common.util.Configuration.getMandatoryString(Configuration.java:222)
         at com.thoughtbreak.common.db.DBConnectionManagerFactory.getConnectionManager(DBConnectionManagerFactory.java:33)
         at com.thoughtbreak.svap.common.filter.DBConnectionClosingFilter.doFilter(DBConnectionClosingFilter.java:50)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.thoughtbreak.svap.common.filter.SecurityFilter.doFilter(SecurityFilter.java:82)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:503)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:251)
         at com.thoughtbreak.svap.common.filter.SecurityFilter.doFilter(SecurityFilter.java:89)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:503)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:251)
         at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1056)
         at org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:261)
         at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:388)
         at org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:316)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:231)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1164)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:397)
         at com.thoughtbreak.svap.action.VAPAgentServlet.doGet(VAPAgentServlet.java:58)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.thoughtbreak.svap.common.filter.DBConnectionClosingFilter.doFilter(DBConnectionClosingFilter.java:46)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.thoughtbreak.svap.common.filter.SecurityFilter.doFilter(SecurityFilter.java:82)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:503)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:251)
         at com.thoughtbreak.svap.common.filter.SecurityFilter.doFilter(SecurityFilter.java:89)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:503)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:251)
         at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1056)
         at org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:261)
         at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:388)
         at org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:316)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:231)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1164)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:397)
         at com.thoughtbreak.svap.action.VAPAgentServlet.doGet(VAPAgentServlet.java:58)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.thoughtbreak.svap.common.filter.DBConnectionClosingFilter.doFilter(DBConnectionClosingFilter.java:46)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.thoughtbreak.svap.common.filter.SecurityFilter.doFilter(SecurityFilter.java:82)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:503)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:251)
         at com.thoughtbreak.svap.common.filter.SecurityFilter.doFilter(SecurityFilter.java:89)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:503)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:251)
         at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1056)
         at org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:261)
         at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:388)
         at org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:316)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:231)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1164)

    You are probably having some recursion in your application, which does not stop.
    A StackOverflowError is thrown when a stack overflow occurs because an application recurses too deeply.
    If you look at the stacktrace the com.thoughtbreak.common.util.ClassPathHelper.findUrlOnClasspath
    might be the issue.

  • Error while deploying application in Web center Spaces via ant script

    Hi all,
    Jdeveloper version 11.1.1.6
    I am trying to deploy application in Web center Spaces using ant script .
    I am able to deploy it if i keep these two files in local machine .
    wls.userkey=C:\\myFiles\\myuserkeyfile.secure
    wls.userconfig=C:\\myFiles\\myuserconfigfile.secure
    where as when I am trying to pick these files from remote web-logic server I am getting following error
    [exec]  Deploy started at Thu Dec 12 17:26:41 2013
    [exec]
    [exec] Please enter your username :Please enter your password :
    [exec] java.lang.NullPointerException
    [exec] This Exception occurred at Thu Dec 12 17:26:41 GMT+05:30 2013.
    [exec] at weblogic.management.scripting.WLSTHelper.connect(WLSTHelper.java:176)
    [exec] at weblogic.management.scripting.WLScriptContext.connect(WLScriptContext.java:61)
    [exec] at weblogic.management.scripting.utils.WLSTUtil.initializeOnlineWLST(WLSTUtil.java:147)
    [exec] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [exec] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [exec] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [exec] at java.lang.reflect.Method.invoke(Method.java:597)
    [exec] at org.python.core.PyReflectedFunction.__call__(Unknown Source)
    [exec] at org.python.core.PyMethod.__call__(Unknown Source)
    [exec] at org.python.core.PyObject.__call__(Unknown Source)
    [exec] at org.python.core.PyObject.invoke(Unknown Source)
    [exec] at org.python.pycode._pyx4.connect$1(<iostream>:16)
    [exec] at org.python.pycode._pyx4.call_function(<iostream>)
    [exec] at org.python.core.PyTableCode.call(Unknown Source)
    [exec] at org.python.core.PyTableCode.call(Unknown Source)
    [exec] at org.python.core.PyFunction.__call__(Unknown Source)
    [exec] at org.python.pycode._pyx72.f$0(C:\Abhishek_Mr.Price\SampleWebCenterSpacesExtensions\SampleWebCenterSpacesExtensions\WebCenterSpacesSharedLibExtension\extspaces.py:14)
         [exec] at org.python.pycode._pyx72.call_function(C:\Abhishek_Mr.Price\SampleWebCenterSpacesExtensions\SampleWebCenterSpacesExtensions\WebCenterSpacesSharedLibExtension\extspaces.py)
    [exec] at org.python.core.PyTableCode.call(Unknown Source)
    [exec] at org.python.core.PyCode.call(Unknown Source)
    [exec] at org.python.core.Py.runCode(Unknown Source)
    [exec] at org.python.util.PythonInterpreter.execfile(Unknown Source)
    [exec] at weblogic.management.scripting.WLST.main(WLST.java:124)
         [exec] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [exec] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [exec] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [exec] at java.lang.reflect.Method.invoke(Method.java:597)
    [exec] at weblogic.WLST.main(WLST.java:29)
    [exec] None
    [exec] #########################################################
    [exec] #####     Deployment Failed #########
    [exec] #####     Contact support with Exception Stack #########
    [exec] #########################################################
    [exec]
    [exec]
    Chandana

    Any Updates

  • Error while deploying applications in ALBPM 6.0 ! Please help.

    Hi,
    We are testing the migration from ALBPM 5.7 to 6.0.4. We followed the steps of the upgrade guide from 5.7 to 6.0. However after migrating and deploying our existing 5.7 workflow projects using process administrator to 6.0.4 , we see the following exception in the logs. Has anyone encountered this before. Any possible suggestions on how to resolve this.
    Main: Message: Unexpected Exception....
    [     (cont)     ] Main: Exception message in the remote host: class java.lang.RuntimeException: Error while deploying application [ear=Fuego-WebLogic-Deployer/fuego_webapp_expanded/07-papiws-albpmdirectoryservicedatasource.ear, name=07-papiws-ALBPMDirectoryServiceDataSource.ear]......
    Main: Caused by: java.sql.SQLException: Invalid column type
    [     (cont)     ] Main: at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    [     (cont)     ] Main: at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
    [     (cont)     ] Main: at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:208)
    (cont) ] Main: at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
    [     (cont)     ] Main: at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
    [     (cont)     ] Main: at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
    [     (cont)     ] Main: ... 2 more
    [     (cont)     ] Main: Caused by: java.lang.RuntimeException: Critical Error.
    [     (cont)     ] Main: Detail:
    [     (cont)     ] Main: Exception [java.sql.SQLException: Invalid column type].
    [     (cont)     ] Main: Caused by: Invalid column type
    [     (cont)     ] Main: fuego.directory.DirectoryRuntimeException: Exception [java.sql.SQLException: Invalid column type].
    [     (cont)     ] Main: at fuego.directory.DirectoryRuntimeException.wrapException(DirectoryRuntimeException.java:85)
    [     (cont)     ] Main: at fuego.directory.provider.jdbc.oracle.OraclePersistenceManager.mapSQLException(OraclePersistenceManager.java:145)
    [     (cont)     ] Main: at fuego.directory.provider.jdbc.datadirect.oracle.DataDirectOraclePersistenceManager.mapSQLException(DataDirectOraclePersistenceManager.java:51)
    Any help would be appreciated.

    I am getting the same error...when I created engine and directory service, i got a sql script which I executed in engine and directory service schema..
    worked fine...is there any i need to do extra...i am getting this error....need to solve this out ASAP..Gurus please help !!!
    Edited by: user12053514 on Oct 15, 2009 6:31 AM

  • Error While Deploying application

    Hello friends,
                        I am getting following error while deploying application.
    Aug 31, 2007 5:39:56 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : senthil
    SDM port : 50018
    URL to deploy : file:/C:/WINDOWS/TEMP/temp24531JA310_Ex_00.ear
    Result
    => deployment aborted : file:/C:/WINDOWS/TEMP/temp24531JA310_Ex_00.ear
    Aborted: development component 'JA310_Ex_00'/'local'/'LOKAL'/'0.2007.08.31.17.39.40':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment exception : The deployment of at least one item aborted
    Cheers,
    Senthil

    Hi,
         Thank U so much for the reply.
    I have one more issue, getting error "Error while connecting" - 
    when I try connect to visual admin.
    User name: Admin
    Host: senthil
    Port: 50000
    It try to connect, when it reached 53%.. connection is interrupted..
    Could you please address this issue.
    Cheers.. Sam

  • Error while deploying application to j2ee engine

    HI,
    I am getting the following error while deploying application to j2ee engine.
    PluginName: WebDynpro Archive Builder
    Plugin Id: com.sap.ide.webdynpro.archivebuilder
    class: com.sap.ide.webdynpro.archivebuilder.PARBuilder
    method: run()
    message: problems encountered while deleting resources
    excepton: org.eclipse.core.internal.resources.ResourceException:
    problems encountered while deleting resources.
    How to resolve this?
    Please help me.
    regards,
    satish

    Hi,
    Check whether your workspace has any other .ear files. If yes, just delete those ear files and try creating the ear file for your application again. I had a similar problem and it got resolved by the above method.
    Regards,
    Mayuri

  • Error while deploying application on portal domain

    Hi All,
    I am getting following error while deploying application on portal domain :( :( Not sure what I am missing.......
    Anyone has any idea on this???
    <Oct 6, 2010 7:49:03 AM EDT> <Warning> <com.bea.wlw.netui.pageflow.internal.WebLogicURLTemplateFactory> <BEA-000000> <In webapp <Workshop Application>, the url template <http://{url:domain}:{url:port}/{url:path}?{url:queryString}{url:currentPage}> uses the {url:port} token. The system may not pick up the correct ports if you are using a proxy server. Consider hardcoding the ports in a production environment.>
    <Oct 6, 2010 7:49:05 AM EDT> <Error> <com.bea.p13n.util.jdbc.internal.JdbcSequencer> <BEA-000000> <Cannot allocate sequence block:
    java.sql.SQLException: Cannot call commit when using distributed transactions
    at weblogic.jdbc.wrapper.JTAConnection.commit(JTAConnection.java:349)
    at com.bea.p13n.util.jdbc.internal.JdbcSequencer.allocateSequenceBlockNewTx(JdbcSequencer.java:626)
    at com.bea.p13n.util.jdbc.internal.JdbcSequencer.getNext(JdbcSequencer.java:456)
    at com.bea.netuix.application.manager.persistence.jdbc.MarkupDefinitionDelegate.createMarkupDefinition(MarkupDefinitionDelegate.java:785)
    at com.bea.netuix.application.manager.persistence.jdbc.MarkupDefinitionManagerImpl.createMarkupDefinition(MarkupDefinitionManagerImpl.java:161)
    Truncated. see log file for complete stacktrace
    >
    <Oct 6, 2010 7:49:05 AM EDT> <Error> <netuix> <BEA-423147> <Exception [javax.transaction.TransactionRolledbackException: EJB Exception: : javax.ejb.EJBException: SQL Error while trying to createMarkupDefinition: SQL [insert into PF_MARKUP_DEFINITION ( MARKUP_DEFINITION_ID, MARKUP_NAME, MARKUP_TYPE, WEBAPP_NAME, MARKUP_FILE) values (?,?,?,?,?)] database error code [0] SQL state [null]. Possible markup duplication of [
    MarkupDefinition:
    webAppName = plassPortalWeb
    type = Menu
    name = multiLevelMenu
    file = /framework/markup/menu/multilevel.menu
    beginXml = <netuix:multiLevelMenu $(markupType) $(markupName)>
    endXml = </netuix:multiLevelMenu>
    MarkupDefinitionId = null].; nested exception is: java.sql.SQLException: Cannot call commit when using distributed transactions
    java.sql.SQLException: Cannot call commit when using distributed transactions
    at weblogic.jdbc.wrapper.JTAConnection.commit(JTAConnection.java:349)
    at com.bea.p13n.util.jdbc.internal.JdbcSequencer.allocateSequenceBlockNewTx(JdbcSequencer.java:626)
    at com.bea.p13n.util.jdbc.internal.JdbcSequencer.getNext(JdbcSequencer.java:456)
    at com.bea.netuix.application.manager.persistence.jdbc.MarkupDefinitionDelegate.createMarkupDefinition(MarkupDefinitionDelegate.java:785)
    at com.bea.netuix.application.manager.persistence.jdbc.MarkupDefinitionManagerImpl.createMarkupDefinition(MarkupDefinitionManagerImpl.java:161)
    at com.bea.netuix.application.manager.persistence.jdbc.MarkupDefinitionManager_twpn9c_EOImpl.createMarkupDefinition(MarkupDefinitionManager_twpn9c_EOImpl.java:138)
    at com.bea.netuix.servlets.repository.MenuFilePersistenceManager.onNewFile(MenuFilePersistenceManager.java:160)
    at com.bea.netuix.servlets.repository.MenuFilePersistenceManager.createUpdateMenuDefinitions(MenuFilePersistenceManager.java:267)
    at com.bea.netuix.servlets.repository.MenuFilePersistenceManager.startupSync(MenuFilePersistenceManager.java:529)
    at com.bea.netuix.servlets.repository.AbstractFilePersistenceManager$StartupSync.run(AbstractFilePersistenceManager.java:155)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at com.bea.netuix.servlets.repository.AbstractFilePersistenceManager.startup(AbstractFilePersistenceManager.java:97)
    at com.bea.netuix.servlets.repository.MenuFilePersistenceManager.onNewFiles(MenuFilePersistenceManager.java:228)
    at com.bea.netuix.poller.FrameworkPoller.newFiles(FrameworkPoller.java:256)
    at com.bea.netuix.poller.NetuixFilePoller.start(NetuixFilePoller.java:172)
    at com.bea.netuix.servlets.manager.PortalServlet.reinitInternal(PortalServlet.java:390)
    at com.bea.netuix.servlets.manager.PortalServlet.initInternal(PortalServlet.java:261)
    at com.bea.netuix.servlets.manager.PortalServlet.access$100(PortalServlet.java:125)

    Hello Everybody,
    I solved this error by myself as follows:
    So, what I did was; I started the RemoteGui.bat (C:\usr\sap\J2E\JC00\SDM\program) and from the Undeployment tab, I selected “mainapp01” and “com.sap.engine.docs.examples”.
    The reason I undeployed the above applications was because when I was trying to deploy the mainapp01 application, it gave an error saying that “: Cannot deploy application pcbp.com/mainapp01.. Reason: Application alias [/] for application [pcbp.com/mainapp01] already exists in the HTTP Provider Service. The application that holds this alias is [sap.com/com.sap.engine.docs.examples “.
    And, then I restarted the J2EE engine and from the SAP Netweaver Developer Studio, I again deployed the mainapp01 application on the local J2EE engine and it was deployed successfully.
    Oct 10, 2006 9:45:30 AM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] INFO:
    [002]Finished Deployment
    Settings
    SDM host : RPIKOER
    SDM port : 50018
    URL to deploy : file:/C:/DOCUME1/krunalra/LOCALS1/Temp/temp9270pcbp.com~mainapp01.ear
    Result
    => successfully deployed : file:/C:/DOCUME1/krunalra/LOCALS1/Temp/temp9270pcbp.com~mainapp01.ear
    Thank You
    With Regards,
    Krunal Rana.

  • "UIViewRoot is null" error while working with deployed application

    Hi,
    I am using JDeveloper 11.1.2.0.0 and WebLogic Server Version: 10.3.5.0 with production environment.
    My application is based on Customized Dynamic Tab Shell where each task flow is loaded with its own transaction and also it is defined not to share data control.
    I use a Collection Object inside TabContext class, which will be accessed and consumed (including modifications) by all dynamic tab loaded taskflow.
    I use Customized FactoryClass for every BC4JDataControl to track the request and also to pass parameter to model layer AMs
    When i run the application in local, i didn't get any error. But when i check the deployed application, I am getting a javascript dialog with the following error details
      : For more information, please see the server's error log for an entry beginning with: The UIViewRoot is null.
      Fatal exception during PhaseId: RESTORE_VIEW 1.ADF_FACES-60100: An error occurred while processing your request.
      For more information, please see the server's error log for an entry biginning with HTTP Error Status Code:500"
    {code}
    On checking the error code in Oracle® Fusion Middleware Error Messages Reference 11g Release 2 (11.1.2.0.0), it is given as
    {code}
    ADF_FACES-30179: For more information, please see the server's error log for an
    entry beginning with: The UIViewRoot is null. Fatal exception during PhaseId: {0}.
    Cause: The UIViewRoot is null.
    Action: See the server's error log for more information.
    ADF_FACES-00001 to ADF_FACES-60104 1-37
    Level: 1
    Type: SEVERE
    Impact: Logging
    ADF_FACES-60100: An error occurred while processing your request. For more
    information, please see the server's error log for an entry beginning with HTTP
    Error Status Code: {0}"
    Cause: An exception was thrown durring a PPR request.
    Action: Please look in the server error logs for more details on this error.
    Level: 1
    Type: WARNING
    Impact: LoggingCan anyone know what may be the cause? Any help will be appreciated.
    Thanks in Advance.
    Perumal S

    Have you checked that the server you are deploying to has the Sherman patch installed?
    Timo

Maybe you are looking for

  • Error creating a new module in OWB

    Hi All, I am getting an error while creating a new module using OWB. We are using 11.2. Any Inputs are greatly appreciated. Has any body experienced this problem. The error is as follows.. Internal error: Load Error. PLease contact Oracle support wit

  • Computer Can't Communicate With Printer

    Hi, After installing Win 8.1 on two different computers, both have the same printing problem. The first problem that appears is "Bidirectional Support" must be enabled...  It was enabled in Win 8 prior to the upgrade... It took awhile to figure out h

  • Outbound ABAP proxy stops working

    Hello experts, We have an interface, which sends data from SAP to PI via outbound proxy. It worked before and at some point it stopped working in dev. But it still works in QA and production. I tried to make sure that the related objects in IR and th

  • Why won't my ipad1 charge anymore?

      It won't by AC, on the USB and it won't sync to iTunes either. I have checked the port and don't see any visual damage. Any ideas.

  • Clearing two documents with POSTING_INTERFACE_CLEARING

    Hi, all I'm trying to use POSTING_INTERFACE_CLEARING function module to clearing two documents each other with additional cost. It's detail is like belows: 1st, 01(D) Customer A/R (100 EUR)   50(C) Sale (100 EUR) 2nd, 40(D) Bank Account (80 EUR)