Unbale to open login page in R12

Hi,
unable to open login page
below is the error in error log
[Wed Oct  9 06:13:45 2013] [error] [client 10.95.69.73] [ecid: 1381313625:10.95.177.168:8348:0:2,0] File does not exist: /app/ebs/itgsisit02/gsisit02inst/apps/GSISIT02_choleba33t/portal/OA_HTML/AppsLogin
We did below workarounds:
1.Reverted CUSTOM.pll in(Compile custom library) from 11i to intial R12 version file,
2.cleared cache, comple ojspcompile
3.ran autoconfig with fnd_nodes cleanup
4.bounced DB
5. verified APPS_WEB_AGENT,APPS_SERVLET_AGENT,APPS_FRAMEWORK_AGENT
6.generate jar files with force option.
but no use

Hi,
---------------------------------+--------------------+---------+---------
ias-component                    | process-type       |     pid | status
---------------------------------+--------------------+---------+---------
OC4JGroup:default_group          | OC4J:oafm          |   13698 | Alive
OC4JGroup:default_group          | OC4J:forms         |   13697 | Alive
OC4JGroup:default_group          | OC4J:oacore        |   13696 | Alive
HTTP_Server                      | HTTP_Server        |   13695 | Alive
Error in logfile:
[Wed Oct  9 06:13:45 2013] [error] [client 10.95.69.73] [ecid: 1381313625:10.95.177.168:8348:0:2,0] File does not exist: /app/ebs/itgsisit02/gsisit02inst/apps/GSISIT02_choleba33t/portal/OA_HTML/AppsLogin
We did below workarounds:

Similar Messages

  • Unable to open login page through internet explorer

    Hi,
    Configured Reverse proxy external tier. We are able to access login page through Mozilla but unable to access through IE8.
    Raised SR, but they have reverted saying it's browser problem & not in their scope.
    Please help for the following error message when redirecting to login page.
    You are trying to access a page that is no longer active.
    - The referring page may have come from a previous session. Please select Home to proceed.
    Thanks in advance

    Please post the details of the application release, database version and OS.
    Configured Reverse proxy external tier. We are able to access login page through Mozilla but unable to access through IE8.
    Raised SR, but they have reverted saying it's browser problem & not in their scope.Do you meet the requirements in these docs?
    Recommended Browsers for Oracle E-Business Suite Release 12 [ID 389422.1]
    Recommended Browsers for Oracle E-Business Suite 11i [ID 285218.1]
    Please help for the following error message when redirecting to login page.Can you find any errors in the application/apache/database log files?
    You are trying to access a page that is no longer active.
    - The referring page may have come from a previous session. Please select Home to proceed. Please see if these docs help.
    Session Error Raised Direct After Login when Using Two-Letter Domain Segments [ID 420573.1]
    Login Issue via Internet Explorer after EBS Upgrade from 11.5.10.2 to 12.0.4 [ID 828534.1]
    R12 Login Fails When A Cookie Using Comma Separated Values Is Set First [ID 946807.1]
    R12: Error "You are trying to access a page that is no longer active" When Attempting to Access Through Internet Explorer [ID 968839.1]
    Thanks,
    Hussein

  • Unable to open Login Page

    I have typical Problem.
    I am able to ping to EBS Server, forms cgi login page is working.
    But we are not able to open login with standard login page
    like http://<Server:8000/oa_serverlets/AppsLogin
    Regards
    Tumuganti

    Hi,
    Please suggest your application/db/OS version.
    Also what error are you getting while opening http://<Server:8000/oa_serverlets/AppsLogin
    Please check apache logs for error.
    Please confirm value of below profile option
    'Self Service Personal Home Page Mode'
    Thanks,
    JD

  • DNS error when launching Application login page after R12 installation

    Hi ,
    I installed R12.0.4 on windows server 2003.
    After installation when I launch the home page, its giving dns error saying that <domainname>.<hostname> cannot be loaded.
    I checked the apache alert log, it is trying to access an IP that is commented out in the host file. I am not sure where it is picking it up from. I installed loopback adapter before the installation and the entries in the host file also seem fine. Please help me out, this is the 2nd installation but the issue is still not resolved. Please let me know if you need anymore details.
    Thanks !

    Hi Dharmshila,
    Since you were not able to access the application URL using the IP Address then I believe it is an issue with the application/database services. To verify that all application services are up and running properly, please do the following:
    - Open a new DOS session
    - cd %INST_TOP%\apps\<SID>_<hostname>\admin\scripts
    - Issue "adopmnctl.sh status"
    - You should get something similar to the following:
    Checking status of OPMN managed processes...
    Processes in Instance: PROD_db2.db2.domain.com
    -------------------+--------------------+---------+---------
    ias-component      | process-type       |     pid | status
    -------------------+--------------------+---------+---------
    OC4J               | oafm               |    3800 | Alive
    OC4J               | forms              |    2528 | Alive
    OC4J               | oacore             |    3112 | Alive
    HTTP_Server        | HTTP_Server        |     172 | Alive
    exiting with status 0
    ERRORCODE = 0 ERRORCODE_ENDRegards,
    Hussein

  • Open safari and enter username and password into opening login page

    I have managed to alter pictures in iphoto and photoshop but I am struggling to sort this one out. Initially it seems simple but I just cannit figure it out.
    Can anyone help?
    Mark

    Hey Prion- Glad It works. I promise that its really not too technical. It may seem like a lot of code but it just insures that it runs properly every time. I don't know if you're interested, but here's a description of what each part does...
    tell application "Safari"
    activate
    ---Tell safari to open...
    make new document
    set URL of document 1 to "https://email.ntwsha.co.uk"
    --- Make a new window with the above address...
    end tell
    if page_loaded(10) then
    ---This line says "If the action 'page_loaded' is complete and true then con't this section." See the "On page_loaded" below to see what it does...
    tell application "System Events"
    ---Send an action to the system (this could be any type of GUI scripting)...
    keystroke "account"
    delay 1
    keystroke tab
    delay 1
    keystroke "password"
    delay 1
    keystroke return
    ---Self-explanatory- I put in the delay to allow the page to react after tab is pressed...
    end tell
    else
    ---if page_loaded has not completed within the timeout period or returns false then...
    display alert "The URL Has Not Loaded."
    end if
    on pageloaded(timeoutvalue)
    ---when page_loaded is called upon do the rest below...
    delay 2
    repeat with i from 1 to the timeout_value
    ---Repeat the following command until the time reaches the timeout_value (10)...
    tell application "Safari"
    if (do JavaScript "document.readyState" in document 1) is "complete" then
    return true
    ---Tells safari to check if the page has finished loading. If yes, return true, if no-repeat...
    else if i is the timeout_value then
    return false
    If the timeout_value is reached (10 secs) and the page has still not finished, then return false...
    end if
    delay 1
    end tell
    end repeat
    end page_loaded
    So its really not that technical of a language. In fact, its one of the closest to english as far as computer languages go. Its a pretty good asset to learn, because pretty much everything you could want to do in automator, would be possible in applescript. And if you aren't real interested, no big deal. Just thought you want to know how the script worked. Good Luck!
    --Justin S.

  • Firefox fails to open 'login page' links on certain websites

    If I go to a site that requires some login script, firefox fails to load the page... or doesn't even try to load said page.
    An example of this is when I go to newegg.ca and attempt to login, there is no issue getting to the homepage, but clicking on the login link at the very top of the page yields no results, it just appears the current page reloads.
    It happened again trying to get through this help site, I couldn't get past 'ask a question' page, hence why I'm now doing it in Chrome.
    I've uninstalled firefox completely and reinstalled, all with the same results. Firefox 4 on my PowerBook works fine however.

    Are you using an NTLM proxy? There is a known problem with that which will be fixed in beta 7. This thread has more details - [/questions/751415]

  • Unable to open login page on hdfc bank website

    On pressing the log in button on hdfc bank website, it goes to a blank page. Earlier it took me to the log in page. This has been happening for the last 3 days
    == URL of affected sites ==
    http://www.hdfcbank.com

    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • How to change header and footer in login page in oracle apps r12

    Hi all,
    how to change header and footer in login page in oracle apps r12 and login button background color, please help me
    thanks
    saran

    how to change header and footer in login page in oracle apps r12 and login button background color, please help meTips For Personalizing The E-Business Suite R12 Login Page (MainLoginPG) [ID 741459.1]
    How to Personalize Login page in R12? [ID 579917.1]
    R12 Login Page: How to Personalize the Logo ? [ID 849752.1]
    Thanks,
    Hussein

  • Problem Opening SOA Login Page.

    Hello,
    I have Configured managed server in my weblogic server. Every thing works fine, I am able to see the default page of
    SOA i.e.. http://localhost:7001/, but when I tried to open login page http://localhost:7001/em it encounters following error.
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    Also I am providing the log for managedserver below.
    ath weblogic.Server
    <Oct 30, 2009 5:56:51 PM IST> <Notice> <WebLogicServer> <BEA-000395> <Following
    extensions directory contents added to the end of the classpath:
    E:\Oracle\Middleware\user_projects\domains\Fmw_domain\lib\mbeantypes\csp-id-asse
    rter.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\beehive_ja.jar;E:\Oracle\Middle
    ware\wlserver_10.3\L10N\beehive_ko.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\b
    eehive_zh_CN.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\beehive_zh_TW.jar;E:\Or
    acle\Middleware\wlserver_10.3\L10N\p13n_wls_ja.jar;E:\Oracle\Middleware\wlserver
    _10.3\L10N\p13n_wls_ko.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_zh_C
    N.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_zh_TW.jar;E:\Oracle\Middl
    eware\wlserver_10.3\L10N\testclient_ja.jar;E:\Oracle\Middleware\wlserver_10.3\L1
    0N\testclient_ko.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\testclient_zh_CN.ja
    r;E:\Oracle\Middleware\wlserver_10.3\L10N\testclient_zh_TW.jar;E:\Oracle\Middlew
    are\wlserver_10.3\L10N\tuxedocontrol_ja.jar;E:\Oracle\Middleware\wlserver_10.3\L
    10N\tuxedocontrol_ko.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_z
    h_CN.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_zh_TW.jar;E:\Orac
    le\Middleware\wlserver_10.3\L10N\workshop_ja.jar;E:\Oracle\Middleware\wlserver_1
    0.3\L10N\workshop_ko.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\workshop_zh_CN.
    jar;E:\Oracle\Middleware\wlserver_10.3\L10N\workshop_zh_TW.jar>
    <Oct 30, 2009 5:56:51 PM IST> <Info> <WebLogicServer> <BEA-000377> <Starting Web
    Logic Server with Java HotSpot(TM) Client VM Version 11.0-b16 from Sun Microsyst
    ems Inc.>
    <Oct 30, 2009 5:56:52 PM IST> <Info> <Security> <BEA-090065> <Getting boot ident
    ity from user.>
    Enter username to boot WebLogic server:weblogic
    Enter password to boot WebLogic server:
    <Oct 30, 2009 5:57:21 PM IST> <Info> <Management> <BEA-141107> <Version: WebLogi
    c Server 10.3.1.0 Wed Jun 10 22:24:41 MDT 2009 1227385 >
    <Oct 30, 2009 5:57:23 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    <Oct 30, 2009 5:57:23 PM IST> <Info> <WorkManager> <BEA-002900> <Initializing se
    lf-tuning thread pool>
    <Oct 30, 2009 5:57:23 PM IST> <Notice> <LoggingService> <BEA-320400> <The log fi
    le E:\Oracle\Middleware\user_projects\domains\Fmw_domain\servers\soa_server1\log
    s\soa_server1.log will be rotated. Reopen the log file if tailing has stopped. T
    his can happen on some platforms like Windows.>
    <Oct 30, 2009 5:57:23 PM IST> <Notice> <LoggingService> <BEA-320401> <The log fi
    le has been rotated to E:\Oracle\Middleware\user_projects\domains\Fmw_domain\ser
    vers\soa_server1\logs\soa_server1.log00007. Log messages will continue to be log
    ged in E:\Oracle\Middleware\user_projects\domains\Fmw_domain\servers\soa_server1
    \logs\soa_server1.log.>
    <Oct 30, 2009 5:57:23 PM IST> <Notice> <Log Management> <BEA-170019> <The server
    log file E:\Oracle\Middleware\user_projects\domains\Fmw_domain\servers\soa_serv
    er1\logs\soa_server1.log is opened. All server side log events will be written t
    o this file.>
    <Oct 30, 2009 5:57:27 PM IST> <Notice> <Security> <BEA-090082> <Security initial
    izing using security realm myrealm.>
    <Oct 30, 2009 5:57:33 PM IST> <Warning> <Deployer> <BEA-149617> <Non-critical in
    ternal application uddi was not deployed. Error: [Deployer:149158]No application
    files exist at 'E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\uddi.war'.>
    <Oct 30, 2009 5:57:33 PM IST> <Warning> <Deployer> <BEA-149617> <Non-critical in
    ternal application uddiexplorer was not deployed. Error: [Deployer:149158]No app
    lication files exist at 'E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\uddiexplorer.w
    ar'.>
    <Oct 30, 2009 5:57:33 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STANDBY>
    <Oct 30, 2009 5:57:33 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    <Oct 30, 2009 5:57:56 PM IST> <Warning> <Connector> <BEA-190110> <Resource Adapt
    er is calling BootstrapContext.createTimer() and allocating a Timer Thread that
    is not managed by WebLogic Server. This may adversely impact the performance/ope
    ration of WebLogic Server.>
    <Oct 30, 2009 5:58:02 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'FacadeFinderBean', class oracle.soa.management.internal.ejb.FacadeFinderBean wa
    s loaded from the system classpath. As a result, this class cannot be reloaded w
    hile the server is running. To prevent this behavior in the future, make sure th
    e class is not located in the server classpath.>
    <Oct 30, 2009 5:58:02 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'SOATestBean', class oracle.soa.management.internal.ejb.SOATestBean was loaded f
    rom the system classpath. As a result, this class cannot be reloaded while the s
    erver is running. To prevent this behavior in the future, make sure the class is
    not located in the server classpath.>
    <Oct 30, 2009 5:58:03 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'SOAServiceInvokerEJB', class oracle.integration.platform.blocks.sdox.ejb.SOASer
    viceInvokerEJB was loaded from the system classpath. As a result, this class can
    not be reloaded while the server is running. To prevent this behavior in the fut
    ure, make sure the class is not located in the server classpath.>
    <Oct 30, 2009 5:58:03 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'SOAServiceInvokerEJB', class oracle.integration.platform.blocks.sdox.ejb.api.SO
    AServiceInvokerBean was loaded from the system classpath. As a result, this clas
    s cannot be reloaded while the server is running. To prevent this behavior in th
    e future, make sure the class is not located in the server classpath.>
    <Oct 30, 2009 5:58:03 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'ContextAwareBean', class oracle.integration.platform.ejb.ContextAware was loade
    d from the system classpath. As a result, this class cannot be reloaded while th
    e server is running. To prevent this behavior in the future, make sure the class
    is not located in the server classpath.>
    <Oct 30, 2009 5:58:06 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'B2BStarterBeanWLS', class oracle.tip.b2b.j2ee.ejb.interfaces.IB2BStarterHome wa
    s loaded from the system classpath. As a result, this class cannot be reloaded w
    hile the server is running. To prevent this behavior in the future, make sure th
    e class is not located in the server classpath.>
    <Oct 30, 2009 5:58:06 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'B2BStarterBeanWLS', class oracle.tip.b2b.j2ee.ejb.interfaces.IB2BStarter was lo
    aded from the system classpath. As a result, this class cannot be reloaded while
    the server is running. To prevent this behavior in the future, make sure the cl
    ass is not located in the server classpath.>
    <Oct 30, 2009 5:58:06 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'B2BStarterBeanWLS', class oracle.tip.b2b.j2ee.ejb.interfaces.IB2BStarterLocalHo
    me was loaded from the system classpath. As a result, this class cannot be reloa
    ded while the server is running. To prevent this behavior in the future, make su
    re the class is not located in the server classpath.>
    <Oct 30, 2009 5:58:06 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'B2BStarterBeanWLS', class oracle.tip.b2b.j2ee.ejb.interfaces.IB2BStarterLocal w
    as loaded from the system classpath. As a result, this class cannot be reloaded
    while the server is running. To prevent this behavior in the future, make sure t
    he class is not located in the server classpath.>
    <Oct 30, 2009 5:58:06 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'oracle.tip.b2b.test.runtime.ServerTestBean', class oracle.tip.b2b.test.runtime.
    ServerTestBean was loaded from the system classpath. As a result, this class can
    not be reloaded while the server is running. To prevent this behavior in the fut
    ure, make sure the class is not located in the server classpath.>
    <Oct 30, 2009 5:58:06 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'oracle.tip.b2b.test.runtime.ServerTestBean', class oracle.tip.b2b.test.runtime.
    ServerTestHome was loaded from the system classpath. As a result, this class can
    not be reloaded while the server is running. To prevent this behavior in the fut
    ure, make sure the class is not located in the server classpath.>
    <Oct 30, 2009 5:58:06 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'oracle.tip.b2b.test.runtime.ServerTestBean', class oracle.tip.b2b.test.runtime.
    ServerTest was loaded from the system classpath. As a result, this class cannot
    be reloaded while the server is running. To prevent this behavior in the future,
    make sure the class is not located in the server classpath.>
    <Oct 30, 2009 5:58:06 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'B2BUtilityBean', class oracle.tip.b2b.j2ee.ejb.interfaces.IB2BUtilityHome was l
    oaded from the system classpath. As a result, this class cannot be reloaded whil
    e the server is running. To prevent this behavior in the future, make sure the c
    lass is not located in the server classpath.>
    <Oct 30, 2009 5:58:06 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'B2BUtilityBean', class oracle.tip.b2b.j2ee.ejb.interfaces.IB2BUtility was loade
    d from the system classpath. As a result, this class cannot be reloaded while th
    e server is running. To prevent this behavior in the future, make sure the class
    is not located in the server classpath.>
    <Oct 30, 2009 5:58:06 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'B2BUtilityBean', class oracle.tip.b2b.j2ee.ejb.interfaces.IB2BUtilityLocalHome
    was loaded from the system classpath. As a result, this class cannot be reloaded
    while the server is running. To prevent this behavior in the future, make sure
    the class is not located in the server classpath.>
    <Oct 30, 2009 5:58:06 PM IST> <Warning> <EJB> <BEA-010001> <While deploying EJB
    'B2BUtilityBean', class oracle.tip.b2b.j2ee.ejb.interfaces.IB2BUtilityLocal was
    loaded from the system classpath. As a result, this class cannot be reloaded whi
    le the server is running. To prevent this behavior in the future, make sure the
    class is not located in the server classpath.>
    Oct 30, 2009 5:58:11 PM oracle.sdpinternal.messaging.driver.DriverHelper$Registr
    ationWorker warnOnPastThreshold
    WARNING: Registration of driver Email-Driver did not complete; will retry period
    ically until messaging server responds.
    <Oct 30, 2009 5:58:19 PM IST> <Warning> <HTTP> <BEA-101299> <The servlet-mapping
    for servlet-name "jsp" will override the default mapping for *.jsp. This can le
    ad to a show code vulnerability.>
    <Oct 30, 2009 5:59:04 PM IST> <Warning> <WorkManager> <BEA-002919> <Unable to fi
    nd a WorkManager with name wm/B2BWorkManager. Dispatch policy wm/B2BWorkManager
    will map to the default WorkManager for the application soa-infra>
    <Oct 30, 2009 5:59:04 PM IST> <Warning> <WorkManager> <BEA-002919> <Unable to fi
    nd a WorkManager with name wm/B2BWorkManager. Dispatch policy wm/B2BWorkManager
    will map to the default WorkManager for the application soa-infra>
    INFO: FabricConfigManager.init ***> serverURL: http://sandeep-628.milletech.com
    :8001
    INFO: FabricConfigManager.init ***> callbackServerURL: http://sandeep-628.mille
    tech.com:8001
    INFO: FaultPoliciesParser.<init> ------->Constructed Policy parser
    [TopLink Info]: 2009.10.30 17:59:20.343--ServerSession(13595004)--TopLink, versi
    on: Oracle TopLink - 11g Release 1 (11.1.1.1.0) (Build 090527)
    [TopLink Info]: 2009.10.30 17:59:20.343--ServerSession(13595004)--Server: WebLog
    ic Server 10.3.1.0 Wed Jun 10 22:24:41 MDT 2009 1227385
    [TopLink Info]: 2009.10.30 17:59:20.375--ServerSession(13595004)--tracking_sessi
    on login successful
    [TopLink Info]: 2009.10.30 17:59:20.453--ServerSession(13786879)--TopLink, versi
    on: Oracle TopLink - 11g Release 1 (11.1.1.1.0) (Build 090527)
    [TopLink Info]: 2009.10.30 17:59:20.453--ServerSession(13786879)--Server: WebLog
    ic Server 10.3.1.0 Wed Jun 10 22:24:41 MDT 2009 1227385
    [TopLink Info]: 2009.10.30 17:59:20.828--ServerSession(13786879)--deferred_sessi
    on login successful
    initializeToplinkServerSession
    Running inside WLS
    DbAccess: setDocumentManager
    INFO: FabricConfigManager.init ***> serverURL: http://sandeep-628.milletech.com
    :8001
    INFO: FabricConfigManager.init ***> callbackServerURL: http://sandeep-628.mille
    tech.com:8001
    XEngine may not be installed properly. If you plan to use EDI/HL7 that requires
    XEngine, please unzip the XEngine bundle to install XEngine manually in $ORACLE_
    HOME/soa/thirdparty/edifecs directory.
    XEngine may not be installed properly. If you plan to use EDI/HL7 that requires
    XEngine, please unzip the XEngine bundle to install XEngine manually in $ORACLE_
    HOME/soa/thirdparty/edifecs directory.
    TransportLogger Init....
    Transport java logger init
    TransportLogger 1 ==>oracle.core.ojdl.logging.ODLLogger@174ac84
    TransportLogger finish
    init B2BTransport App
    init B2BTransport App exit
    TransportLogger Init....
    initAppSideB2BTransport App
    Endpoint = aq://IP_OUT_QUEUE@jdbc/SOADataSource
    URL = aq://IP_OUT_QUEUE@jdbc/SOADataSource
    URL2 = aq://IP_OUT_QUEUE@jdbc/SOADataSource
    in URL = aq://IP_OUT_QUEUE@jdbc/SOADataSource
    B2B initialized
    INFO: SSLSocketFactoryManagerImpl.getKeystoreLocation SOA Keystore location: E:/
    Oracle/MIDDLE~1/USER_P~1/domains/FMW_DO~1/config/fmwconfig/default-keystore.jks
    INFO: SSLSocketFactoryManagerImpl.getKeystorePassword Obtained null or empty key
    store password
    INFO: SSLSocketFactoryManagerImpl.getKeyPassword Obtained null or empty key pass
    word
    INFO: SSLSocketFactoryManagerImpl.getSSLSocketFactory SOA-20160
    INFO: WLSFabricKernelInitializer.init Initializing DMS...
    Oct 30, 2009 6:00:12 PM oracle.bpel.services.common.ServicesLogger __log
    WARNING: <.> Notification via email, voice, SMS or IM will not be sent. If you w
    ould like to enable them, please configure corresponding sdpmessaging driver. Th
    en modify the accounts and set NotificationMode attribute to either NONE, EMAIL
    or ALL in workflow-notification-config.xml
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    <Oct 30, 2009 6:02:48 PM IST> <Notice> <Log Management> <BEA-170027> <The Server
    has established connection with the Domain level Diagnostic Service successfull
    y.>
    <Oct 30, 2009 6:03:10 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to ADMIN>
    <Oct 30, 2009 6:03:10 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to RESUMING>
    <Oct 30, 2009 6:03:17 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[1
    ]" is now listening on 192.168.1.16:8001 for protocols iiop, t3, ldap, snmp, htt
    p.>
    <Oct 30, 2009 6:03:17 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default"
    is now listening on 5.182.89.193:8001 for protocols iiop, t3, ldap, snmp, http.>
    <Oct 30, 2009 6:03:17 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[2
    ]" is now listening on 127.0.0.1:8001 for protocols iiop, t3, ldap, snmp, http.>
    <Oct 30, 2009 6:03:17 PM IST> <Notice> <WebLogicServer> <BEA-000332> <Started We
    bLogic Managed Server "soa_server1" for domain "Fmw_domain" running in Developme
    nt Mode>
    <Oct 30, 2009 6:03:18 PM IST> <Warning> <Server> <BEA-002611> <Hostname "sandeep
    -628.milletech.com", maps to multiple IP addresses: 192.168.1.16, 5.182.89.193>
    <Oct 30, 2009 6:03:18 PM IST> <Warning> <Server> <BEA-002611> <Hostname "SANDEEP
    -628", maps to multiple IP addresses: 192.168.1.16, 5.182.89.193>
    <WSEE:42>Warning: JMS queue 'weblogic.wsee.DefaultQueue' is not found, as a resu
    lt, Web Service async responses via jms transport is not supported. If the targe
    t service uses JMS transport, the responses will not be able to come back.<JmsQu
    eueListener.connect:287>
    <WSEE:42>Warning: JMS queue 'weblogic.wsee.DefaultQueue' is not found, as a resu
    lt, Web Service async responses via jms transport is not supported. If the targe
    t service uses JMS transport, the responses will not be able to come back.<JmsQu
    eueListener.connect:287>
    <WSEE:42>Warning: JMS queue 'weblogic.wsee.DefaultQueue' is not found, as a resu
    lt, Web Service async responses via jms transport is not supported. If the targe
    t service uses JMS transport, the responses will not be able to come back.<JmsQu
    eueListener.connect:287>
    <WSEE:42>Warning: JMS queue 'weblogic.wsee.DefaultQueue' is not found, as a resu
    lt, Web Service async responses via jms transport is not supported. If the targe
    t service uses JMS transport, the responses will not be able to come back.<JmsQu
    eueListener.connect:287>
    <WSEE:42>Warning: JMS queue 'weblogic.wsee.DefaultQueue' is not found, as a resu
    lt, Web Service async responses via jms transport is not supported. If the targe
    t service uses JMS transport, the responses will not be able to come back.<JmsQu
    eueListener.connect:287>
    <WSEE:42>Warning: JMS queue 'weblogic.wsee.DefaultQueue' is not found, as a resu
    lt, Web Service async responses via jms transport is not supported. If the targe
    t service uses JMS transport, the responses will not be able to come back.<JmsQu
    eueListener.connect:287>
    <Oct 30, 2009 6:03:39 PM IST> <Warning> <Socket> <BEA-000449> <Closing socket as
    no data read from it during the configured idle timeout of 5 secs>
    INFO: WLSFabricKernelInitializer$1.handleNotification ......received server runn
    ing notification. proceeding with composite deployments
    INFO: WLSFabricKernelInitializer$2.run -------> Done deploying composites. took
    0 seconds.
    <Oct 30, 2009 6:05:57 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to RUNNING>
    <Oct 30, 2009 6:05:57 PM IST> <Notice> <WebLogicServer> <BEA-000360> <Server sta
    rted in RUNNING mode>
    INFO: FabricProviderServlet.stateChanged SOA Platform is running and accepting r
    equests
    Please help me out if any thing I missed.
    Thank you,
    Sandeep.

    You are getting 404 error because, you might have not configured EM in your domain. While creating the SOA domain, you should also choose Enterprise Manager template.
    To add EM to your existing domain do the following steps.
    1. Stop all the servers.
    2. Invoke the config wizard.
    3. Choose Extend Domain option. Select your domain.
    4. Choose EM template.
    5. Complete the wizard.
    6. Start the servers.
    Now EM url will be accessible.
    Hope this helps!!!

  • AuthenticateUser exception on Oracle login page

    Hi,
    When I am running Login Page in R12 from my JDEV it is opening correctly but when Ii give user name and password it is throwing the error that "Resource/AuthenticateUser" is failed.
    Error message :
    oracle.apps.fnd.framework.OAException: java.lang.IllegalArgumentException: Resource /AuthenticateUser?username=QUERY&langCode=US&_lAccessibility=N&password=oracle123&retainAM=N&addBreadCrumb=N&oas=21c13_u1Gl610NTbqqfFiA.. not found
    Am I missing any files that I need to copy to local myhtml folder? Where do I find the AuthenticateUser servlet?
    Please suggest me how to solve the issue and let me know if it is not possible to run the login page from jdeveloper
    Thank You

    Hi,
    When I am running Login Page in R12 from my JDEV it is opening correctly but when Ii give user name and password it is throwing the error that "Resource/AuthenticateUser" is failed.
    Error message :
    oracle.apps.fnd.framework.OAException: java.lang.IllegalArgumentException: Resource /AuthenticateUser?username=QUERY&langCode=US&_lAccessibility=N&password=oracle123&retainAM=N&addBreadCrumb=N&oas=21c13_u1Gl610NTbqqfFiA.. not found
    Am I missing any files that I need to copy to local myhtml folder? Where do I find the AuthenticateUser servlet?
    Please suggest me how to solve the issue and let me know if it is not possible to run the login page from jdeveloper
    Thank You

  • Takes ~30 seconds to open logon page. ~50 seconds to log into application.

    Hello all,
    Maybe you can help with some ideas.
    This started 2 x weeks ago, after Siebel gw, web, siebserver bounce.
    Server gets up fast, 1-2 min max, its as usual. srvrmgr sees all servers, gw answering, ohs comunicating. SWSE statistics are being generated fast. But, each time when I trie to open login page it takes ~30 seconds to display it and ~40-50 seconds to log in app. After that everything is fine and fast. If I log out, close browser, open it again its again slow. It seems, like its taking time in Session ID asignment.
    If i check ohs access_log, i see,that images are being loaded fast for login page (but cant see them) and everything stucks here, for ~30-40 seconds:
    10.2.66.170 - - [29/Sep/2011:22:51:56 +0300] "GET /ecommunicationsldap_lat/21211/scripts/login.js HTTP/1.1" 304 -
    10.2.66.170 - - [29/Sep/2011:22:51:56 +0300] "GET /ecommunicationsldap_lat/21211/scripts/swecommon_top.js HTTP/1.1" 304 -
    10.2.66.170 - - [29/Sep/2011:22:51:56 +0300] "GET /ecommunicationsldap_lat/21211/scripts/swecmn_hi_top.js HTTP/1.1" 304 -
    10.2.66.170 - - [29/Sep/2011:22:51:56 +0300] "GET /ecommunicationsldap_lat/images/OracleSiebel_logo.gif HTTP/1.1" 304 -
    10.2.66.170 - - [29/Sep/2011:22:51:56 +0300] "GET /ecommunicationsldap_lat/images/globe77_d.gif HTTP/1.1" 304 -
    10.2.66.170 - - [29/Sep/2011:22:51:56 +0300] "GET /ecommunicationsldap_lat/images/spacer.gif HTTP/1.1" 304 -
    10.2.66.170 - - [29/Sep/2011:22:51:56 +0300] "GET /ecommunicationsldap_lat/images/login77_d.gif HTTP/1.1" 304 -
    10.2.66.170 - - [29/Sep/2011:22:52:02 +0300] "GET /ecommunications_enu/ HTTP/1.1" 304 -
    *10.2.66.170 - - [29/Sep/2011:22:52:02 +0300] "GET /ecommunications_enu/start.swe?SWECmd=Start&SWEHo=siebel8sit HTTP/1.1" 200 1753*
    *10.2.66.170 - - [29/Sep/2011:22:52:51 +0300] "GET /ecommunications_enu/files/main.css HTTP/1.1" 304 -*
    Ok, when logon page is visible i am starting to log in and then again it fails for 30+ seconds.
    In GW no errors, in sweapp no errors, in ohs no errors, in eComm log this:
    2021 2011-09-30 00:52:09 0000-00-00 00:00:00 +0300 00000000 001 003f 0001 09 eCommunicationsObjMgr_enu 44040202 30355 1334315920 /crm/siebel811/siebsrvr/enterprises/SBA_81/crmapptst1/log/eCommunicationsObjMgr_enu_0042_44040202.log 8.1.1.1 [21211] ENU
    eProdCfgLog     eProdCfgLog     0     000000034e8417b8:0     2011-09-30 00:52:09     VOD Broker File Cache Location for ISSCTXTOBJBR/ISS_SIGNAL: /crm/fs/ISS_OBrkCache/ISSCTXTOBJBR/ISS_SIGNAL/ENU
    eProdCfgLog     eProdCfgLog     0     000000034e8417b8:0     2011-09-30 00:52:09     VOD Broker File Cache Location for ISSCTXTOBJBR/ISS_VAR_MAP: /crm/fs/ISS_OBrkCache/ISSCTXTOBJBR/ISS_VAR_MAP/ENU
    ObjMgrLog     Error     1     000000034e8417b8:0     2011-09-30 00:52:11     (cscfg.cpp (165)) SBL-CSR-00418: Communication: User is not associated with any communication configuration in the database.
    ObjMgrBusServiceLog     Error     1     000000034e8417b8:0     2011-09-30 00:53:41     (cmnadpt.cpp (190)) SBL-EAI-04400: Integration object type not specified.
    EAISiebAdpt     EAISiebAdptErr     1     000000034e8417b8:0     2011-09-30 00:53:41     [0] Integration object type not specified.(SBL-EAI-04400) (IDS_ERR_EAI_SA_OUT_OBJ_TYPE)
    ObjMgrLog     Error     1     000000034e8417b8:0     2011-09-30 00:54:05     (cscfg.cpp (165)) SBL-CSR-00418: Communication: User is not associated with any communication configuration in the database.
    This is being generated in EAIObjgmgr...log:
    MaintTestObjEvt     MaintTestObjEvtTrace     4     0000000e4e84695a:0     2011-09-30 01:30:49     1166257040: _smiFacTestObj::Execute(80aaca0) for Background, Waitime = 23
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:30:53     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:30:58     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:03     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:08     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    MaintTestObjEvt     MaintTestObjEvtTrace     4     0000000e4e84695a:0     2011-09-30 01:31:12     1166257040: _smiFacTestObj::Execute(80aaca0) for Background, Waitime = 23
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:13     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:18     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:23     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SARMLog     SARMDebug     5     0000000e4e84695a:0     2011-09-30 01:31:25     SARM Ping'd : explicit params = 1
    MaintTestObjEvt     MaintTestObjEvtTrace     4     0000000e4e84695a:0     2011-09-30 01:31:25     1166257040: _smiSarmFdrObj::Execute(80aacac) for SARM, WaitTime=60
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:28     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:33     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    MaintTestObjEvt     MaintTestObjEvtTrace     4     0000000e4e84695a:0     2011-09-30 01:31:35     1166257040: _smiFacTestObj::Execute(80aaca0) for Background, Waitime = 23
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:38     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:43     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:48     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:53     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    MaintTestObjEvt     MaintTestObjEvtTrace     4     0000000e4e84695a:0     2011-09-30 01:31:58     1166257040: _smiFacTestObj::Execute(80aaca0) for Background, Waitime = 23
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:31:58     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:32:03     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:32:08     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    SisnTcpIp     SisnSockDetail     4     00046fe84e8440d1:0     2011-09-30 01:32:13     1098554992: [LOCALTRANS-server] accept() timeout during get conn request
    Everything is on one box.
    Please help with some ideas.
    Thank You and Regards,
    aspx
    Edited by: 888629 on Sep 29, 2011 3:36 PM

    Hi all, thx for help.
    Reason, why bounce was done, because of new SRF/BScripts.
    We found out issue, it was because Anonymous user was hanging. Very long authentification/authorization, session ID was not asigned properly. Problem was on DB lvl, bad explain plan.
    This thread can be closed.
    Thank You!
    aspx
    Edited by: 888629 on Oct 2, 2011 3:05 PM

  • How to cutomizing layout of E-Business Suite AccessGate Login page?

    Hi All,
    Whats the process to customize "E-Business Suite AccessGate Login page" look and feel/ layout of the page?
    Any pointers to this is greatly appreciated.
    thanks.

    Hi,
    Please see the documents referenced in this thread.
    R12 Login Page Personalization
    R12 Login Page Personalization
    Regards,
    Hussein

  • Unable to get login page after applying the 12.1.3 patch

    Hi
    I had applied the 12.1.3 patch 9239090. Just getting blank screen.
    Please advice me how to trouble shoot the login page in r12
    Thanks
    Reddy

    Hi Hussein
    Thanks for the excellent document.Here is the result of the url's
    Working Fine
    http://<server>.<domain>:<PORT>/OA_HTML/ServletPing
    http://<server>.<domain>:<PORT>/OA_HTML/jsp/fnd/aoljtest.jsp
    Failed the following
    http://<server>.<domain>:<PORT>/OA_HTML/OA.jsp?OAFunc=OAHOMEPAGE
    http://<server>.<domain>:<PORT>
    http://<server>.<domain>:<PORT>/OA_MEDIA/FNDLOGOL.gif
    http://<server>.<domain>:<PORT>/forms/frmservlet
    http://<hostname.domainname>:<port>/OA_HTML/fndvald.jsp?username=sysadmin&password=<sysadmin_password>
    Should I paste the log files here.
    Thanks
    Reddy
    Edited by: Reddy on Jun 26, 2011 9:32 PM

  • Not able to open page in R12

    Hi all,
    I have developed a page in 9i jdevoloper, I registerd page in oracle applications.
    It is working fine in 11i instance. But I am not able to run the page from R12 instance.
    It is showing the below error when i open page in oracle applications.
    oracle.apps.fnd.framework.OAException: Could not load application module 'wnsgs.oracle.apps.sysadmin.employeeadvancerequest.server.EmployeeAdvanceRequestAM'.
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:279)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    JBO-30003: The application pool (wimuat1.wind.wnsgroup.netTESTFIN1529wnsgs.oracle.apps.sysadmin.employeeadvancerequest.server.EmployeeAdvanceRequestAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition wnsgs.oracle.apps.sysadmin.employeeadvancerequest.server.EmployeeAdvanceRequestAM of type ApplicationModule not found
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:511)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    Can anyone help me on this issue..It's urgent
    Thanks
    Naresh
    Edited by: naresh on May 8, 2012 2:17 PM

    Hi Naresh,
    This is because of the files which you moved will not have read write permissions.. make sure that
    you need to change the mode of the class files to 777.
    Login to Telnet and change the mode through CHMOD 777 command
    OR
    Navigate to winscp3 right click on the files then give read write access
    Regards
    krish

  • How open multiple responsibilities in the same user login session in R12 ?

    Dear All,
    Can anyone help me to know how to open multiple responsibility in the same user login session in R12 ?
    Thanks..
    Edited by: G-oracle on Sep 18, 2011 11:22 AM

    Can anyone help me to know how to open multiple responsibility in the same user login session in R12 ?What do you mean by open multiple responsibilities in the same session? You can only see the menu of one responsibility at a time, so how to do you expect the application to let you see multiple responsibilities/menus in one session?
    You could open another session and this way you can access more than one responsibility at the same time.
    Thanks,
    Hussein

Maybe you are looking for