OC4J Logging into Application.log

Hi someone,
i try to log into the Application.log configure in the orion-application.xml.
how can do this in Java?
Thanks to all for help
Matthias

After 10 Hours i find the solution ;-(
The Application.log can be write with this code:
FacesContext fc = FacesContext.getCurrentInstance();
ServletContext sc = (ServletContext) fc.getExternalContext().getContext();
sc.log("My log message for Application.log");
very simple but not find in the OC4J Doc's

Similar Messages

  • Error while logging into applications in R12(21.1.3)

    Hi,
    We are getting below error while logging into applications in R12 (12.1.3).
    **"You have encountered an unexpected error. Please contact the system administrator for assistance"**
    Everytime we face this issue, we will bounce OACORE services then the issue will not occur again.
    Can you please help me in finding permanent fix for this issue?
    FYI,
    I have performed the following debugging steps to check the issue further
    1.     Enabled FND diagnostics at the site level .
    2.     Added following lines in ocj4.properties file
    AFLOG_ENABLED=true
    AFLOG_LEVEL=statement
    AFLOG_MODULE=% (% captures all - preferable to use products such as fnd, ies, por)
    AFLOG_FILENAME=/tmp/test.log
    3.     Examined the output from aoltest.jsp. Please find the attached AOL-J diagnostics test file.
    Then I have reproduced the issue, and examined all the log files but couldn’t find any error information.
    Thanks,
    Srinivasulu.

    Everytime we face this issue, we will bounce OACORE services then the issue will not occur again.
    Can you please help me in finding permanent fix for this issue?
    Then I have reproduced the issue, and examined all the log files but couldn’t find any error information. If bouncing the services fixes the issue, then there must be some details about the error in the logs.
    R12, 12.1 - How To Enable and Collect Debug for HTTP, OC4J and OPMN [ID 422419.1]
    How to enable Apache, OC4J and OPMN logging in Oracle Applications R12 [ID 419839.1]
    Thanks,
    Hussein

  • Directing Log4J messages into OC4J log file

    Hi,
    We currently have a web application that is running on Tomcat. We want to migrate that application over to OC4J. The application currently uses Log4J for messages. What do I have to do to have the application still write to the log4j logs.
    Thanks,
    J

    Try this:
    http://buttso.blogspot.com/2007/09/directing-log4j-logs-into-oc4j-logging.html
    The application still issues log messages via log4j, but you as an administrator can configure OC4J so that the log4j messages get captured in the OC4J log system so they can be viewed using the log viewer mechanism of OC4J.
    -steve-

  • OC4J Log Error Interpretation

    Hi, I am trying to debug an authentication issue using a system based on the information in this article: http://www.oracle.com/technology/products/jdev/howtos/1013/oc4jjaas/oc4j_jaas_login_module.htm
    IE database/datasource based authentication.
    I am getting the following error in the applications OC4J log every time a login attempt is made, no error is seen from the application, authentication simply fails.
    When I had the recommended code for fine logging in the j2ee-loggin.xml file (<logger name="oracle.j2ee.security.oc4j" level="FINE" useParentHandlers="false">
    <handler name="oc4j-handler"/>
    <handler name="console-handler"/>
    </logger>) there was no information at all recorded in the OC4J log, not until I removed the extra logger code from that file did entries such as the following begin appearing in the log file. What could be going wrong here? Why is the login process generating a null pointer error and why would the log file not be written too when the fine logging code was added to the config file? Any idea's? All I can really gain from this error message is that the DBTableOraDataSourceLoginModule is at some stage atleast being referenced or called.
    Log Message: September 3, 2007 10:59:51 AM EST
    Component Name OC4J Component ID j2ee
    Host Network Address 172.etc Message Level 1
    Module ID security User ID SYSTEM
    Execution Context ID 172.etc Execution Context Sequence 0
    Host Name usatl01 Thread ID 12
    Message Type Warning
    Message Text
    java.lang.NullPointerException
    at javax.naming.InitialContext.getURLScheme(InitialContext.java:228)
    at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:277)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at oracle.security.jazn.login.module.db.DBTableOraDataSourceLoginModule.performDbAuthentication(DBTableOraDataSourceLoginModule.java:484)
    at oracle.security.jazn.login.module.db.DBTableOraDataSourceLoginModule.login(DBTableOraDataSourceLoginModule.java:335)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
    at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
    at oracle.security.jazn.oc4j.OC4JUtil.doJAASLogin(OC4JUtil.java:241)
    at oracle.security.jazn.oc4j.GenericUser$1.run(JAZNUserManager.java:818)
    at oracle.security.jazn.oc4j.OC4JUtil.doWithJAZNClsLdr(OC4JUtil.java:173)
    at oracle.security.jazn.oc4j.GenericUser.authenticate(JAZNUserManager.java:814)
    at oracle.security.jazn.oc4j.FilterUser.authenticate(JAZNUserManager.java:1143)
    at com.evermind.server.http.EvermindHttpServletRequest.getUserPrincipalInternal(EvermindHttpServletRequest.java:3601)
    at com.evermind.server.http.AJPHttpServletRequest.getUserPrincipalInternal(AJPHttpServletRequest.java:261)
    at com.evermind.server.http.HttpApplication.checkAuthenticationAndAuthorize(HttpApplication.java:6332)
    at com.evermind.server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:3009)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:736)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    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:595)
    Supplemental Text
    javax.security.auth.login.LoginException: java.lang.NullPointerException
    at javax.naming.InitialContext.getURLScheme(InitialContext.java:228)
    at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:277)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at oracle.security.jazn.login.module.db.DBTableOraDataSourceLoginModule.performDbAuthentication(DBTableOraDataSourceLoginModule.java:484)
    at oracle.security.jazn.login.module.db.DBTableOraDataSourceLoginModule.login(DBTableOraDataSourceLoginModule.java:335)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
    at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
    at oracle.security.jazn.oc4j.OC4JUtil.doJAASLogin(OC4JUtil.java:241)
    at oracle.security.jazn.oc4j.GenericUser$1.run(JAZNUserManager.java:818)
    at oracle.security.jazn.oc4j.OC4JUtil.doWithJAZNClsLdr(OC4JUtil.java:173)
    at oracle.security.jazn.oc4j.GenericUser.authenticate(JAZNUserManager.java:814)
    at oracle.security.jazn.oc4j.FilterUser.authenticate(JAZNUserManager.java:1143)
    at com.evermind.server.http.EvermindHttpServletRequest.getUserPrincipalInternal(EvermindHttpServletRequest.java:3601)
    at com.evermind.server.http.AJPHttpServletRequest.getUserPrincipalInternal(AJPHttpServletRequest.java:261)
    at com.evermind.server.http.HttpApplication.checkAuthenticationAndAuthorize(HttpApplication.java:6332)
    at com.evermind.server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:3009)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:736)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    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:595)
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:872)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
    at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
    at oracle.security.jazn.oc4j.OC4JUtil.doJAASLogin(OC4JUtil.java:241)
    at oracle.security.jazn.oc4j.GenericUser$1.run(JAZNUserManager.java:818)
    at oracle.security.jazn.oc4j.OC4JUtil.doWithJAZNClsLdr(OC4JUtil.java:173)
    at oracle.security.jazn.oc4j.GenericUser.authenticate(JAZNUserManager.java:814)
    at oracle.security.jazn.oc4j.FilterUser.authenticate(JAZNUserManager.java:1143)
    at com.evermind.server.http.EvermindHttpServletRequest.getUserPrincipalInternal(EvermindHttpServletRequest.java:3601)
    at com.evermind.server.http.AJPHttpServletRequest.getUserPrincipalInternal(AJPHttpServletRequest.java:261)
    at com.evermind.server.http.HttpApplication.checkAuthenticationAndAuthorize(HttpApplication.java:6332)
    at com.evermind.server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:3009)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:736)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    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:595)

    Well, still struggling with this one.. although i've managed to get fine oc4j security logging enabled through the console, the error stream now follows this sequence of events at each login attempt :
    [DBTableOraDataSourceLoginModule]login called on DBTableLoginModule
    [DBTableOraDataSourceLoginModule]Calling callbackhandler ...
    [DBTableOraDataSourceLoginModule]Username returned by callback = TATKINS
    [DBTableOraDataSourceLoginModule]Username changed to case as defined by null to TATKINS
    [DBTableOraDataSourceLoginModule]Abort called on LoginModule
    java.lang.NullPointerException
    at javax.naming.InitialContext.getURLScheme(InitialContext.java:228)
    at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:277)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at oracle.security.jazn.login.module.db.DBTableOraDataSourceLoginModule.performDbAuthentication(DBTableOraDataSourceLoginModule.java:484)
    at oracle.security.jazn.login.module.db.DBTableOraDataSourceLoginModule.login(DBTableOraDataSourceLoginModule.java:335)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         etc etc...
    JAAS-OC4J: Authentication failure for user: TATKINS
    JAAS-OC4J: Membership check for group: USER failed for user: anonymous
    What i cant work out is what is causing the login module to abort and raise a null pointer exception. Could this be due to a configuration mistake in the console manager or one of the xml files prior to deployment? I just have no idea how to approach fixing this issue.
    I really would appreciate some assistance, 5+ days trying to get this working. I had this working on jdeveloper embedded oc4j, and all the tute's on standalone deployment pass off the configuration of standalone as simple compared to embedded, yet don't go into enough detail to get it working, atleast from my perspective.

  • Where is the default location for the OC4J logs?

    Where is the default location for the OC4J logs?

    Depends on what variant of the product you are using.
    In an Oracle Applicaiton Server environment (ie the one you install versus unzip) the stdout/stderr streams from OC4J are captured in the $ORACLE_HOME/opmn/logs/<group-instance> directory.
    If you are using standalone then stdout goes to the console where you started the process.
    The logs for the OC4J instance itself are located in $ORACLE_HOME/j2ee/home/log/<instance_group> directory. In this directory you'll see different logs for differet areas of the server. Most of the logs however are captured in the oc4j sub-directory in the log.xml file. Whenever you enable an OC4J component logger in the j2ee-logging.xml file or via ASControl, this is where the logs will end up.
    Take a look at the $ORACLE_HOME/j2ee/home/config/j2ee-logging.xml file -- the log handlers will give you some idea on the different log files that are in use.
    You can configure your application loggers to also direct their log into this file if you wish. See http://buttso.blogspot.com/2007/09/directing-log-messages-into-oc4j.html for an example.

  • Question on the entries in the oc4j log

    Hi all,
    If anybody could help me on the following issue, It is highly admirable. Thanks in advance.
    There is a module in our application to send mails to the people working in the organization regarding their work.
    We have a java servlet that send mail to the people. This servlet is called from a pl/sql programming. During this process, few of the people are not getting the emails. But the exact information is un known. But it writes to the oc4j log. we could only see entries like below for that particular day,
    11/06/04 19:06:44 Session
    11/06/04 19:07:02 Session
    11/06/04 19:07:24 Session
    11/06/04 19:07:27 Session
    [060411_111057028][][ERROR] Could not create an image. Set html-image-dir and html-image-base-uri correctly.
    [060411_111058371][][ERROR] Could not create an image. Set html-image-dir and html-image-base-uri correctly.
    [060411_111105559][][ERROR] Could not create an image. Set html-image-dir and html-image-base-uri correctly.
    [060411_111108074][][ERROR] Could not create an image. Set html-image-dir and html-image-base-uri correctly.
    [060411_111109590][][ERROR] Could not create an image. Set html-image-dir and html-image-base-uri correctly.
    [060411_111133949][][ERROR] Could not create an image. Set html-image-dir and html-image-base-uri correctly.
    [060411_111134933][][ERROR] Could not create an image. Set html-image-dir and html-image-base-uri correctly.
    Other than these entries there is nothing else written to the log. I am neither an expert in the application server nor a java programmer. If anybody can guess at the problem, please do it.
    Thanks,
    Suresh.

    "Could not create an image. Set html-image-dir and html-image-base-uri correctly."
    Probably a custom message generated by the servlet. Do you have some kind of installation
    manual that goes along with the set-up. I am not a clairvoyant but it looks like the application
    is expecting you to set a certain directory in which images are contained. Or it could be you
    have set the directory, but forgot to add the right image.

  • OAS 10.1.2.0.2 Stop OC4J Logging

    Hi,
    We have Oracle Application Server 10.1.2.0.2
    We can see that OC4J logs are being created at following location:
    $ORACLE_HOME/opmn/logs/OC4J~OC4J_NAME~default_island~1
    This log file grows in size very soon. We are aware of the Log Rotation feature, but this is a Test Environment and we really do not require these log files.
    Is there a way to stop these log files from being created ?
    Please help..
    Thanks in advance :)

    Can anybody help me for this ?
    Thanks a lot...

  • OC4J LOG FILES

    OC4J:
    If I have multiple applications app1 and app2 on single OC4J server instance bound to diffrent urls How do I create diffrent log files (STDOUT and STDERR )separate for each application
    to log messages .
    Satish Juware

    As per my knowledge you cannot specify different STDOUT and STDERR for each application. it's one per the server. however you can specify a log file for each deployed application and it registers all events, exceptions in that log file. this log file is by default created in the $J2EE_HOME/j2ee/home/application-deployments/<application-name> directory.
    If you want different STDERR and STDOUT for each application may be you can create different instances of Oc4J for each application.
    regards
    Debu

  • Error message in opmn OC4J log for my BPEL cluster setup

    I am settings up my 2 nodes BPEL cluster in the same subnet, i prepared my jgroups-protocols.xml as:
    <config>
    <UDP mcast_send_buf_size="32000"
    mcast_port="45788"
    ucast_recv_buf_size="64000"
    mcast_addr="228.8.15.24"
    receive_on_all_interfaces="true"
    loopback="true"
    mcast_recv_buf_size="64000"
    max_bundle_size="48000"
    max_bundle_timeout="30"
    use_incoming_packet_handler="false"
    use_outgoing_packet_handler="false"
    ucast_send_buf_size="32000"
    ip_ttl="32"
    enable_bundling="false"/>
    <PING timeout="2000"
    num_initial_members="3"/>
    <MERGE2 max_interval="10000"
    min_interval="5000"/>
    <FD timeout="2000"
    max_tries="3"
    shun="true"/>
    <VERIFY_SUSPECT timeout="1500"/>
    <pbcast.NAKACK max_xmit_size="8192"
    use_mcast_xmit="false"
    gc_lag="50"
    retransmit_timeout="600,1200,2400,4800"/>
    <UNICAST timeout="1200,2400,3600"/>
    it is same as the default file, the configuration is same in both nodes, however, in OC4J log, i found it return the address is already in use:
    zed adaptors for platform 'ias_10g'
    Feb 22, 2008 2:58:17 PM org.collaxa.thirdparty.jgroups.protocols.UDP createSockets
    INFO: sockets will use interface 0.0.0.0
    08/02/22 14:58:17 java.lang.Exception: exception caused by UDP.start(): java.net.SocketException: Address already in use
    08/02/22 14:58:17 at org.collaxa.thirdparty.jgroups.stack.Protocol.handleSpecialDownEvent(Protocol.java:600)
    08/02/22 14:58:17 at org.collaxa.thirdparty.jgroups.stack.DownHandler.run(Protocol.java:117)
    <2008-02-22 14:58:18,453> <INFO> <collaxa> <ServerManager::uninit> Shutting down all domains
    <2008-02-22 14:58:18,453> <INFO> <collaxa> <ServerManager::uninit> Done shutting down all domains
    <QuartzPublisherInit::init> Notification Retry publisher scheduled at every 15 minute(s)
    08/02/22 14:59:18 Oracle Containers for J2EE 10g (10.1.3.3.0) initialized
    what is the problem ? how to fix it ?
    thanks.

    Hi,
    Remove "receive_on_all_interfaces" and set bind_to_all_interfaces=false i think.
    It might not be exactly what you want to do, but read up on those parameters on the internet on Jgroups.

  • Small Suggestion in the OC4J log inside JDeveloper IDE

    Hi,
    I have a small suggestion regarding the OC4J log. It would be really helpful if you can provide the function that if you click on <ctrl> and click on the generated output, it would transfer you to the source of that printout e.g. System.out.println().
    It is the same function in the code editor when you click on a method with <ctrl>, it would go to the declaration of that method.
    Thanks

    Hi,
    not sure this is possible because there is no link between a print out and the command printing it. As a work around you could add the line number and class name to the print out. This makes finding the print source easier. With the line number - which you can get from JDeveloper in the code editor - you go to the class and press ctrl+g. Then type in the line number and it will point you to the position
    Frank

  • [STATEMENT] XDO Servlet shutdown complete in oc4j log

    Hi,
    This one is related in my previous thread but this time, the logs are coming from oc4j logs.
    Whenever we run a big report, BIP cannot generate report in Apps but with small reports, the reports are generated as espected. With the logs below, is it possible that it is an environment issue?
    ++++[042711_051122471][][STATEMENT] PublicReportService::generateReport FINISH and Return BIPReportResponse --- Time Elapse = 213340
    - java.io.IOException:
    com.evermind.server.http.HttpIOException: An established connection was aborted by the software in your host machine
         at com.evermind.server.http.EvermindServletOutputStream.write(EvermindServletOutputStream.java:210)
         at org.apache.axis.utils.ByteArray.writeTo(ByteArray.java:375)
         at org.apache.axis.SOAPPart.writeTo(SOAPPart.java:265)
         at org.apache.axis.Message.writeTo(Message.java:539)
         at org.apache.axis.transport.http.AxisServlet.sendResponse(AxisServlet.java:902)
         at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:777)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:351)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    11/04/27 17:45:05 Shutting down...
    - Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED shutting down.
    - Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED paused.
    - Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED shutdown complete.
    [042711_054508213][][STATEMENT] XDO Servlet shutdown complete.
    Thanks,

    Hi,
    Actually, we only encounter this issue in Production.
    If we run a report with a minimal records/plans, the report is generated successfully but with a multiple records/plans (like 25 plans or more), BIP failed to generate a report in Production.
    We also replicate this issue in our dev environment and the report is successfully generated.
    Also, our report template is fine since we can generate a report in Production.
    Do you have any idea why this is happening in Production?
    Thanks,

  • RE : SOA_HOME j2ee/oc4j_soa/log/oc4j_soa_soa_group_1/oc4j/log.xml

    Hi All,
    Is <SOA_HOME>j2ee/oc4j_soa/log/oc4j_soa_soa_group_1/oc4j/log.xml contains all activity logs in soa server?
    We need to check the time when our ESB server was down.
    Thanks in Advance.

    Hi bbukacek
    There is nothing in domains logs on timestamp when this service was invoked. Only there is a log for one service, that is making continuous SFTP connections. This service is creating 5 connections within a minute. I am thinking, this service is consuming our server resource, which is cauing a problem.
    Do you have any idea?
    Regards

  • Moving oc4j logs files in other filesystems

    Hi,
    I want to change the path of all oc4j logs files. For best performance and maintenance I want to put the logs in other filesystems. It is a good way and does someone try this.
    I need this change because my devlopper want to see all oc4j logs and I don't want to create many symbolic links or many samba share.
    Thanks !

    You can move all oc4j logs files in other filesytems. I have heard of people doing it. The product OCS, oracle collaboration suite, might have provided a single global option to do that in their next release. However, I do not think there is a single global option in oc4j itself that can accomplish that in a single swoop. I would suggest that you try it step by step, moving a subset of log files at a time.

  • Purge oc4j logs

    Dear all,
    How can I purge OC4j logs in R12 (like out.log,server.log,system-aplication.log ) when the system is up and running ?..out.log is 4.5 GB in size ?
    any idea ?
    Kai

    Kai,
    On Linux/Unix, yes you can. Or, you can rename the file and delete it later. Some operating systems like Windows will not allow you to purge log files unless you shutdown the services first.

  • Update to 3.6 won't drag into applications box - administrator has 'insufficient privileges"

    I have downloaded 3.6 and tried to install by dragging icon into applications (in OSX). The action is not allowed due to "insufficient privileges". But this is when logged in as the administrator.
    == Downloaded 3.6 to install on Mac

    See http://kb.mozillazine.org/Installing_Firefox#Mac_OS_X
    Download a new copy of the Firefox program: http://www.mozilla.com/firefox/all.html
    Trash the current Firefox application to do a clean reinstall.
    Install the new version that you have downloaded.
    Your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks and other personal data.

  • Webbinding of OBI Publisher failing (OC4J contained into OAS)

    Hi
    I;m deploying OBI Publisher (earlier XML publisher) xmlpserver.EAR using OC4J contained into Oracle Application server. The deployment is getting successful. But when Binding Web Modules to a Web Site After Deployment it is giving me an error
    BindWebApp error: oracle.oc4j.admin.jmx.shared.exceptions.JMXRuntimeException
    Anyone of you have ever faced this problem. Do I need to put certain jar files in shared library.
    Regards,
    Parwez

    Solved it myself.
    For the benefit of others:
    It is possible to use oracle_proxy plug-in for OC4J stand-alone.
    Crucial points for the configuration are:
    - oracle_proxy config file specified correctly
    - xmlpserver roles specified correctly
    - right ports specified in instanceconfig.xml and xmlp-server-config.xml
    Regards,
    Michal

Maybe you are looking for

  • Call transaction

    Hi All, I'm  calling  transaction MD03 from my report to  run MRP on single material using following code. FORM RUN_MRP. read line sy-lilli field value pick2. if pick2 EQ 'X'.   set parameter id 'MAT' field itb1-matnr .   set parameter id 'WRK' field

  • Crossgrade to FCP Universal

    Getting an Intel Mac Pro, so we need the Final Cut Studio crossgrade - we have to return the original FCP install disks; will the replacement universal FCP install ok on a Dual 2.7GHz PowerPC G5, our current Mac, if we ever need to reinstall?

  • Automatic numbering - not with actual page number

    I am doing a book that has aboubt 20 pages and then about 100 with recipes. I want to have a heading with Day 1, Day 2, Day3. I will be appying a master page to the recipes, but I want to do an automatic day number. If I do the insert page it labels

  • SAP NW Gateway Development Aspects

    Hi,   I have just started with SAP NW Gateway and in a learning stage.   I have some questions on the SAP NW Gateway development aspects.   1. Whether we need to develop the services in the backend (SAP ECC - SEGW transactions) and need to only expos

  • How does the player talk to the debugger

    Is there some way to interact with the player through the debugging connection instead of the Flex Debugger? (A possible application could be automation, code coverage, etc.)