Log4j not logging messages out to weblogic console for custom automatplugin

Hi,
We have a custom automation plugin for the OSM application build 381 in our environment(HP-UX Itanium platform). The plugins are bundled in a single ear application "A.ear" which is a mixed bag of pre-defined automation plugins of type XsltSender, XsltAutomator(both InternalReciever as well ExternalReceiver) as well other custom automators(java). For logging of messages in order to aid debugging of custom automators, we are using a logger "com.xyz.osm.plugin" which is also declared in log4j.xml file that is within omslogging.jar. You must already be aware that the build scripts of assembling, deploying ansd registering plugins also includes omslogging.jar are part of the application ear.
<category name="com.mtsa.osm.plugin">
<priority value="debug"/>
</category>
Below java code snippet is taken from our custom automation plugin classes indicating how the above logger is being used for printing messages.
//Declaration
private static Log log = LogFactory.getLog("com.mtsa.osm.plugin");
mthod1(){
log.info("xyz");
In addition to the above logger, the pre-defined automators XsltSender, XsltReceiver also enable logging from xsl files by making the "log" parameter available. Thus we have lines such as the one below in our xsl files that should print messages to the weblogic console.
<xsl:variable name="addLog1" select="java:info($log, 'transformSiebelActivationRequest: ***** Starting *****')"/>
The logger that allows printing of these lines is "com.mslv.oms.automation".
<category name="com.mslv.oms.automation">
<priority value="info"/>
</category>
These configurations should have ideally allowed one to see messages such as one below getting printed out to weblogic console:
<16-Mar-2012 8:59:36,931 CDT PM> <INFO> <plugin.XSLTReceiver> <ExecuteThread: '19' for queue: 'oms.automation'> <transformSiebelActivationRequest: ***** Starting *****>
Unfotunately after having done all the above configuration, we are still unable to see any such log messages in the console apart from those emitting from SOP and from <xsl:message> inserted in java & xsl files respectively.
I also checked if the log4j sub-system is able to correctly initialize after parsing the log4j.xml. It does and one can confirm it by setting system property log4j.debug=true in setDomainEnv.sh file.
$$$$$$$$ log4j initialization by application classloader for oms.ear application $$$$$$$$$$$$$$$$$$
log4j: Trying to find [log4j.xml] using context classloader weblogic.utils.classloaders.GenericClassLoader@1592141 finder: weblogic.utils.classloaders.CodeGenClassFinder@1112e85 annotation: oms@.
log4j: Using URL [zip:/home/osmwl/bea/user_projects/domains/dev04/servers/osmdev04/tmp/_WL_user/oms/amuube/omslogging.jar!/log4j.xml] for automatic log4j configuration.
log4j: Preferred configurator class: org.apache.log4j.xml.DOMConfigurator
log4j: System property is :null
log4j: Standard DocumentBuilderFactory search succeded.
log4j: DocumentBuilderFactory is: org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
$$$$$$$$ log4j initialization by application classloader for custom automation plugin xyz.ear application $$$$$$$$$$$$$$$$$$
log4j: Trying to find [log4j.xml] using context classloader weblogic.utils.classloaders.GenericClassLoader@1b7a8c5 finder: weblogic.utils.classloaders.CodeGenClassFinder@10bc849 annotation: xyz.ear@.
log4j: Using URL [zip:/home/osmwl/bea/user_projects/domains/dev04/servers/osmdev04/tmp/_WL_user/xyz.ear/ah0eeq/omslogging.jar!/log4j.xml] for automatic log4j configuration.
log4j: Preferred configurator class: org.apache.log4j.xml.DOMConfigurator
log4j: System property is :null
log4j: Standard DocumentBuilderFactory search succeded.
log4j: DocumentBuilderFactory is: weblogic.xml.jaxp.RegistryDocumentBuilderFactory
log4j: debug attribute= "false".
Ironically, logging levels for loggers defined in log4j.xml of oms.ear could be dynamically changed from log4jAdmin.jsp page and the results are immediately visible. However for some reason, loggers defined in log4j.xml of custom plugin application were completely getting ignored. I don't see any warnings or erro messages in the logs indicating that log4j configuration failed for custom application failed. We want to refrain using SOP and <xsl:message> but I am afraid we have no option other than filling up our sources files with them.
Bottomline, how do we get application B(which in our case is the custom plugin) to log messaged the console just like that done by application A(oms.ear).
I am sure OSM developers would like to leverage log4j bundled with OSM SDK to log messages that would aid in trouble-shooting during development cycles. Both application ear files have commons-logging-1.1.jar,log4j-1.2.13.jar, omslogging.jar available in their classpaths. In other words, META-INF/MANIFEST.MF file of oms.war(web module within oms.ear) and xyz.jar(ejb module within xyz.ear) has references to these jars.
Appreciate if one can reply and let me know if they could get log messages to print from custom plugin.
Thanks
Edited by: user3693508 on Mar 18, 2012 11:38 AM

Hi,
We have a custom automation plugin for the OSM application build 381 in our environment(HP-UX Itanium platform). The plugins are bundled in a single ear application "A.ear" which is a mixed bag of pre-defined automation plugins of type XsltSender, XsltAutomator(both InternalReciever as well ExternalReceiver) as well other custom automators(java). For logging of messages in order to aid debugging of custom automators, we are using a logger "com.xyz.osm.plugin" which is also declared in log4j.xml file that is within omslogging.jar. You must already be aware that the build scripts of assembling, deploying ansd registering plugins also includes omslogging.jar are part of the application ear.
<category name="com.mtsa.osm.plugin">
<priority value="debug"/>
</category>
Below java code snippet is taken from our custom automation plugin classes indicating how the above logger is being used for printing messages.
//Declaration
private static Log log = LogFactory.getLog("com.mtsa.osm.plugin");
mthod1(){
log.info("xyz");
In addition to the above logger, the pre-defined automators XsltSender, XsltReceiver also enable logging from xsl files by making the "log" parameter available. Thus we have lines such as the one below in our xsl files that should print messages to the weblogic console.
<xsl:variable name="addLog1" select="java:info($log, 'transformSiebelActivationRequest: ***** Starting *****')"/>
The logger that allows printing of these lines is "com.mslv.oms.automation".
<category name="com.mslv.oms.automation">
<priority value="info"/>
</category>
These configurations should have ideally allowed one to see messages such as one below getting printed out to weblogic console:
<16-Mar-2012 8:59:36,931 CDT PM> <INFO> <plugin.XSLTReceiver> <ExecuteThread: '19' for queue: 'oms.automation'> <transformSiebelActivationRequest: ***** Starting *****>
Unfotunately after having done all the above configuration, we are still unable to see any such log messages in the console apart from those emitting from SOP and from <xsl:message> inserted in java & xsl files respectively.
I also checked if the log4j sub-system is able to correctly initialize after parsing the log4j.xml. It does and one can confirm it by setting system property log4j.debug=true in setDomainEnv.sh file.
$$$$$$$$ log4j initialization by application classloader for oms.ear application $$$$$$$$$$$$$$$$$$
log4j: Trying to find [log4j.xml] using context classloader weblogic.utils.classloaders.GenericClassLoader@1592141 finder: weblogic.utils.classloaders.CodeGenClassFinder@1112e85 annotation: oms@.
log4j: Using URL [zip:/home/osmwl/bea/user_projects/domains/dev04/servers/osmdev04/tmp/_WL_user/oms/amuube/omslogging.jar!/log4j.xml] for automatic log4j configuration.
log4j: Preferred configurator class: org.apache.log4j.xml.DOMConfigurator
log4j: System property is :null
log4j: Standard DocumentBuilderFactory search succeded.
log4j: DocumentBuilderFactory is: org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
$$$$$$$$ log4j initialization by application classloader for custom automation plugin xyz.ear application $$$$$$$$$$$$$$$$$$
log4j: Trying to find [log4j.xml] using context classloader weblogic.utils.classloaders.GenericClassLoader@1b7a8c5 finder: weblogic.utils.classloaders.CodeGenClassFinder@10bc849 annotation: xyz.ear@.
log4j: Using URL [zip:/home/osmwl/bea/user_projects/domains/dev04/servers/osmdev04/tmp/_WL_user/xyz.ear/ah0eeq/omslogging.jar!/log4j.xml] for automatic log4j configuration.
log4j: Preferred configurator class: org.apache.log4j.xml.DOMConfigurator
log4j: System property is :null
log4j: Standard DocumentBuilderFactory search succeded.
log4j: DocumentBuilderFactory is: weblogic.xml.jaxp.RegistryDocumentBuilderFactory
log4j: debug attribute= "false".
Ironically, logging levels for loggers defined in log4j.xml of oms.ear could be dynamically changed from log4jAdmin.jsp page and the results are immediately visible. However for some reason, loggers defined in log4j.xml of custom plugin application were completely getting ignored. I don't see any warnings or erro messages in the logs indicating that log4j configuration failed for custom application failed. We want to refrain using SOP and <xsl:message> but I am afraid we have no option other than filling up our sources files with them.
Bottomline, how do we get application B(which in our case is the custom plugin) to log messaged the console just like that done by application A(oms.ear).
I am sure OSM developers would like to leverage log4j bundled with OSM SDK to log messages that would aid in trouble-shooting during development cycles. Both application ear files have commons-logging-1.1.jar,log4j-1.2.13.jar, omslogging.jar available in their classpaths. In other words, META-INF/MANIFEST.MF file of oms.war(web module within oms.ear) and xyz.jar(ejb module within xyz.ear) has references to these jars.
Appreciate if one can reply and let me know if they could get log messages to print from custom plugin.
Thanks
Edited by: user3693508 on Mar 18, 2012 11:38 AM

Similar Messages

  • How to find out Max threads count for Custom Work Manager??

    Hi All,
    How to find out Max threads count for Custom Work Manager??
    I have created 1 WM & targeted it to a cluster of 2 MS. Later I created Max thread Constraint = 300 & assigned that to my WM.
    I need to check how many threads maximum were created by my WM after lets say 1 completed day.
    The idea behind that is to understand if .. 300 is enough or need to increase the same way as we do it for JDBC datasource like.. Active connections Max count.. etc.
    Any Idea?
    regards,
    Tanmay

    Hi Ashish,
    Thanks for your response.
    The monitoring page that you are suggesting does not indicate the max thread count reached for a particular WM.
    For example, If I have Sample WM with 300 Max Thread Constraint, is there a way for me to check how many threads have been used out of 300??
    Any pointers in this regard are appreciated.
    Thanks,
    Tanmay

  • Not able to find userChrome.css file for customizing the Firefox browser. I just installed 20.0.1 firefox browser. Want to disable/remove navigation bar.Pls Hlp

    Not able to find userChrome.css file for customizing the Firefox browser. I just installed 20.0.1 Firefox browser version.
    I want to disable/remove navigation bar from the browser window, making the browser to work like kiosk mode.
    Please Help,
    Thanks,
    Vishal.

    hello,
    here is the complete path ..
    ''C:\Documents and Settings\XXXXXXX\Application Data\Mozilla\Firefox\Profiles\chrome"
    Let me know
    Thanks,
    Vishal.

  • Not able to login to weblogic console.

    Hi,
    I am trying to login to weblogic console, but it is failing with error message as follow:
    *"Page not found*
    The server has not found anything matching the Request-URI. "_
    Previous it was fine i was able to login to the weblogic console without any issue, but suddenly this problem start apearing.
    Please can somebody help me on this issue.
    Thanks,
    Manoj

    Hi Ravi,
    This is the config file sample. Please have a look to this.
    <server>
    <name>AdminServer</name>
    <ssl>
    <name>AdminServer</name>
    <enabled>true</enabled>
    <hostname-verification-ignored>true</hostname-verification-ignored>
    <listen-port>9002</listen-port>
    <login-timeout-millis>25000</login-timeout-millis>
    <two-way-ssl-enabled>true</two-way-ssl-enabled>
    </ssl>
    <log>
    <name>AdminServer</name>
    <file-min-size>50000</file-min-size>
    <rotate-log-on-startup>true</rotate-log-on-startup>
    <log-file-severity>Info</log-file-severity>
    <stdout-severity>Info</stdout-severity>
    <memory-buffer-severity>Notice</memory-buffer-severity>
    <log4j-logging-enabled>false</log4j-logging-enabled>
    <redirect-stdout-to-server-log-enabled>true</redirect-stdout-to-server-log-enabled>
    </log>
    <stuck-thread-max-time>2400</stuck-thread-max-time>
    <stuck-thread-timer-interval>180</stuck-thread-timer-interval>
    <listen-port>9001</listen-port>
    <web-server>
    <name>AdminServer</name>
    <frontend-https-port>443</frontend-https-port>
    <auth-cookie-enabled>false</auth-cookie-enabled>
    </web-server>
    <listen-address>-------</listen-address>
    <tunneling-enabled>true</tunneling-enabled>
    <staging-directory-name>/apps2/bcawl10/applications_on</staging-directory-name>
    <staging-mode>nostage</staging-mode>
    <health-check-timeout-seconds>120</health-check-timeout-seconds>
    <graceful-shutdown-timeout>60</graceful-shutdown-timeout>
    <ignore-sessions-during-shutdown>true</ignore-sessions-during-shutdown>
    <client-cert-proxy-enabled>true</client-cert-proxy-enabled>
    <weblogic-plugin-enabled>true</weblogic-plugin-enabled>
    </server>
    I am accessing the console from a different windows machine while the admin server is configure on different unix box.
    http://host_IP:9001/console is the url i am using to access the console.
    As this is the production environment so we do not have permission or flexibility to create the new domains.
    and for your previous post i did search for the files on the DemoIdentity.jks, DemoTrust.jks and wsrpKeystore.jks.
    I am able to file the files at
    /apps/bea/software/bea1001/wlserver_10.0/server/lib/DemoTrust.jks
    /apps/bea/software/bea1001/wlserver_10.0/server/lib/DemoTrust.jks
    /bea/software/bea1001/wlserver_10.0/samples/domains/portal/wsrpKeystore.jks
    and i can see from the console that all the instance point to the same path mentioned above under KeyStore setting of weblogic console.
    One more point i want to add is that console is accessible for few of the users what few of them are not able to access intermittently. So if you know then please could you put some input from the network prospective whether firewall setting can play role in in this or not.
    Thanks,
    Manoj Kumar

  • "Product is not installed" message when running weblogic upgrade installer

    Hi,
    I have successfully installed WLS 10.3.5 and JDeveloper Studio using jdevstudio11116install.jar installer on my local machine running Windows 7 64-bit Enterprise Edition . Now when I try upgrading WLS to version *10.3.6*, using wls1036_upgrade_generic.jar, I run into "*Product is not installed*" message. I tried even running wls1036_upgrade_win32.exe and the results are the same.
    Appreciate if someone could tell me what I am doing wrong. I only followed the WLS install/upgrade documentation but looks like something is amiss.
    Thanks.

    Hi,
    Appreciate if anybody out there can help me with the problem. I am wondering if the message cropped up due to the fact that I am trying to run a product upgrade specifically targeted at WebLogic Server instead of running a upgrade installer for jdeveloper since WLS 10.3.5 came with JDev installer in the first place. I am not aware if upgrade installlers are available for jdevstudio. Another way to put this is, I should have run WLS 10.3.5 installer first(instead of jdev) and the 10.3.6 upgrade installer next. That probably might have worked. Then again I am not sure this is correct.
    Appreciate any help on this.
    Thanks

  • User Defined activity does not log messages

    I have created a User Defined activity which calls a unix shell script.
    This script writes messages to standrard output ("echo") that I want
    the process flow to catch in its log, so I can see the messages in
    Control Center Manager.
    This was actually the behaviour of my User Defined activity until recently.
    I must have changed, unintentionally, some parameter/configuration that
    I cannot remember. Maybe some "suppress script-messages" parameter? :-)
    Anyone in this forum who knows which paramater I might have changed
    and/or how I can get back the old behaviour of my activity?
    // Pontus

    I had the same experience recently: I was trying to log a message to a Unix file, but the process flow would always fail, even though the script executed well from the Unix prompt.
    The problem in my case was that redirection is not supported from within an OWB version 9.0.4 process flow. Once I eliminated the "echo My message > logfile" everything was fine. You can even keep "echo My message" with no redirection and it's still ok.
    The above holds regardless of where you put your script -- external Unix file, or as part of an "external process" icon in the flow.
    If things are the same in your case, you'll need to figure out an alternative way of logging messages when executing the script. I decided to use external files as flags, by renaming them from the script.
    Santiago

  • MBeanMaker is not creating Schema folder in JAR file for custom authenticat

    I have created a custom authentication provider.I am using following code of build.xml to generate jar file for custom authentication provider
    <target name="build.mdf" depends="copyConfigFiles">
    <java classname="weblogic.management.commo.WebLogicMBeanMaker" fork="true" failonerror="true">
    <jvmarg line="-Dfiles=./build/mili -DMDF=./build/mili/MILIAuthenticator.xml -DcreateStubs=true"/>
    <classpath>
    <pathelement path="${java.class.path}"/>
    <pathelement location="./build/mili"/>
    <pathelement location="./lib/weblogic.jar"/>
    <pathelement location="./lib/wlManagement.jar"/>
    <pathelement location="./lib/jcifs-1.2.0.jar"/>
    </classpath>
    </java>
    </target>
    <target name="copySrcFiles" depends="build.mdf">
    <copy todir="./build/mili" flatten="true" overwrite="true">
    <fileset dir="./src/java">
    <include name="**/MILI*.java"/>
    </fileset>
    </copy>
    </target>
    <target name="SecurityProviderJar" depends="copySrcFiles">
    <java classname="weblogic.management.commo.WebLogicMBeanMaker" fork="true" failonerror="true">
    <jvmarg line="-Dfiles=./build/mili -DMJF=./build/MiliSecurityProviders.jar"/>
    <classpath>
    <pathelement path="${java.class.path}"/>
    <pathelement location="./build"/>
    <pathelement location="./lib/wlManagement.jar"/>
    <pathelement location="./lib/weblogic.jar"/>
    <pathelement location="./lib/jcifs-1.2.0.jar"/>
    </classpath>
    </java>
    </target>
    Build.xml is running fine without giving any error,but it is not generating schema folder in the jar file.
    beacause of that my custom authentication provider is not comming in admin console.
    Kindly help me to resolve this.

    Hi Ramesh,
    Try out the following
    1) Copy mediator.jar from SOA_HOME>/soa/modules/oracle.soa.mediator_11.1.1 to <MW_HOME>//soa/modules/oracle.soa.ext_11.1.1/classes
    2) Goto <MW_HOME>//soa/modules/oracle.soa.ext_11.1.1/classes and run the following command:
    a. jar -xvf mediator.jar
    3) Now remove the jar file, i.e., mediator.jar from classes folder.
    4) Restart the server.
    Regards,
    Srijith

  • Not able to load text master data for customer infoobject

    Hi Guys,
    I am not able  load master data text to the customer infoobject.
    I have a infoobject-A which is loaded with 1000 records, out of which only 100 records are with text and remaining are without text.
    I have run a repair full request(extraction from ECC) and
    i can see data till PSA(the 100 records which are with text are no more available in ECC now).remaining 900 records are available with text till PSA but not updating to target infoobject.
    I have 3.X flow and i have checked transfer rules update rules and tried everythign from side-but no use-still not not working.
    Please post your suggestions.
    Thanks in advance
    Regards,
    Siva

    Hi Ramanjaneyulu,
    Transferrules screen shot:-
    update rules
    Regards,
    Siva

  • Can these forums NOT log me out in the middle of a reply.

    This is becoming a daily event for me.
    My work flow currently is something like this:
    1) At the beginning of my work day, I review my e-mails and RSS reader for new messages to the Forums I monitor.
    2) I'll usually find a couple to whichI feel I can contribute support.
    3) I'll click on a link to fire up a browsers for a reply, since the e-mail reply feature is too buggy for my taste and there is yet any other type of replacement for NTTP type interactions.
    4) Since it is usually about 24 hours since I last logged into the Forums, I am usually still logged in.  So I click a "Reply" link and bring up the form to post a message.
    5) During the time I am composing the message my 24 hour login period expires.  When done typing, I click the "Post Message" control and boom.  I am told I can not post a message.  That I must login again.
    Fine, I need to login again, but that message that I may have spent quite some effort composing is GONE!  I can not click the back button to retrieve it because of the DHTML nature of the message form.  The login process does not remember my post.  It is just gone and I have to re-compose it after I login again.
    This is just a really poor user experience.

    curt y wrote:
    There seems to be no set pattern for this.  Sometimes I am logged out during the day, especially if I disconnect from internet.
    But many days when I start my computer in the morning then visit bookmarked web page I am still logged in.  That is after about 11 hours of having compter off.
    So how does this compute?
    My own situation regarding logouts is a carbon copy of the above. With the exception that I have been logged out several times while writing a message, which I would think is a clear sign that I had been active for the last few minutes (no, I don't go out for lunch in the middle of writing a message). Last time this happened was earlier today, and there were changes in what happened afterwards which I think deserve reporting.
    When I finished writing my message and clicked on gthe Post Message button, I got this:
    I therefore used the Login/Register button to re-login, and when I finished, I got this:
    Please note that:
    1, My name is in both Welcomes.
    2. The first error message is asking me for a title, but there is one.
    3. The second error message (not shown, at the bottom of the message window) said something in the sense that I couldn't post a message without any text/content.
    I assumed that everything was lost, so I closed Explorer and went to do something else. About half an hour later, I came back, opened the same thread, and clicked on the Reply button of the same message I had been replying, and was surprised to get this:
    I naturately clicked on the Use Recovered button. Unfortunately, this time I was not so lucky, for I only recovered about the first half of my message. Which was of course much better than nothing.

  • Log4j not logging on App server

    I have created a JSP/Servlet application using JDeveloper. When I run my app through JDev, all of my log4j logging works properly. The log file is updated and the database is updated as expected. When I move the app to the application server, the logging servlet is initialized through my web.xml and the log file is created, but nothing actually gets written to the file or the database. I've confirmed that the db settings are correct and the file location is correct (if it weren't it wouldn't have created the file). The logging level is currently set a debug.
    Any ideas?
    Thanks!
    Teri Kemple

    Hi,
    I suppose you are using IAS.
    Anyway, try to log to a file. ie: using log4j and FileAppender. See log4j docs for configuring log4j.properties with FileAppender.
    Then just look at the log file!
    Hope it helps.
    EloyIV.

  • I am trying to open my Nightmare 2.jar file but java will not open. It says check console for error messages but there appears to be none. I have the latest version of java and I have both the 64 bit and 34 bit se6 set to the top of the list.

    Just like in the title of this discussion the file will not open. Any suggestions? That would be grrreat.

    Hi,
    The D810 requires Camera Raw 8.6 or later - the latest version that is compatible with Photoshop Elements 12 is Camera Raw 8.5 as far as I can see.
    You need to either buy a new version of Photoshop Elements or use the free Adobe DNG converter.
    DNG  Converter 8.8
    Win – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5888
    Mac – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5887
    Useful Tutorial
    http://www.youtube.com/watch?v=0bqGovpuihw
    Brian

  • HELP! my mac has logged me out and now asking for a name and password?

    I was logged on shopping on top-shop online and suddenly the mac shut down.
    It seems it has reset its self! My icon has disappeared and its now asking  for a name and password.
    i have tried my log in but it is not working.
    Is there another way to reset the password?
    can i reset it to log back in what can i do?
    I have rebooted the computer several times but i dont know what to do!

    First, make sure caps lock is not on.
    Another reason why your password might not be recognized is that the keyboard layout (input source) has been switched without your realizing it. At the login screen, you can cycle through the available layouts by pressing the key combination   command-space or command-option-space. See this support article.
    If the user account is associated with an Apple ID, and you know the Apple ID password, then maybe the Apple ID can be used to reset your user account password.
    Otherwise*, start up in Recovery mode. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. In the window that opens, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window opens. Close the Terminal window to get it out of the way.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Follow the prompts to reset the password. It's safest to choose a password that includes only the characters a-z, A-Z, and 0-9.
    Select
     ▹ Restart
    from the menu bar.
    You should now be able to log in with the new password, but your Keychain will be reset (empty.) If you've forgotten the Keychain password (which is ordinarily the same as your login password), there's no way to recover it.
    *Note: If you've activated FileVault, this procedure doesn't apply. Follow instead these instructions.

  • "File not Found" error in the admin console for dimension

    Hi All,
    We are onto the BPC7 MS version and recently we have started facing an error "File Not Found" while trying to access the dimension members from the admin console.
    I have checked the "adminapp" folder where all the dimension files should be placed in the system, the files are present in the folder.
    The mbr<DIMENSION>  tables are also present in the database and have the members intact.
    I have also tried with processing the dimensions (NOT processing from the membersheet) and it goes successful, but still face the same "File Not Found" Error.
    We have a single appset and a single application.
    Regards
    Raghav

    Hi Sorin,
    Where can I check the File path if it is set incorrect?
    I am recieving this message for all the dimensions, even when I click on the "maintain dimension members", try to process or even try to copy them i have this pop up showing "file not found".
    I have the dimension tables intact at the DB servers and they have the members in them.
    Regards
    Raghav

  • Undeployment of ear-file, "domain ... not registered" message in log

    Hello,
    We're developping a Java Web Application for SAP NetWeaver Web AS.
    It consists of an ear-file, which contains a webmodule (war-file).
    NetWeaver writes some error log messages in it's log file (defaultTrace.0.trc) when the software is undeployed from Web AS.
    That should not happen.
    The message looks like
    [permissions_collection_operator]: domain [apps//CN.com/CN Server/servlet_jsp/cn-server/root/WEB-INF/lib/log4j12.jar] not removed, because is not registered
    CN.com is the company name, cn-server the context-path.
    It seems, that Web AS logs this error for every jar file it finds in web-inf/lib and some additional things.
    How to avoid this message? How can the domain (or jar-file) be registered or what's needed?
    Surely some simple entries must be included in the ear-file... application.xml...
    application-j2ee-engine.xml...
    ... in any of those files. But where?
    Where can one obtain detail information about the log entries

    Nobody an idea?
    It must be possible to avoid those stupid log messages.
    What is needed for deploying a jar-file inside an ear-file into the famous WEB-INF/lib - directory?
    Any special steps necessary?

  • Problem with Deployments of web service Project as EAR in weblogic console

    Hi All :-)
    I was facing the problem with the Deployments of web service(java class) as EAR.I created the one web project associated with EAR project. After my development i exported this project as EAR and deployed the same on the weblogic console.....But time it will work fine and sometime it Deployments status will not become active (its running status) and failed after activate the changes.
    Can any body tell me the real problem with weblogic console for Deployments?
    Please tell me the solution...it?s urgent for me...If you know the answer please mail me on [email protected] or reply here on forum
    Thank you very much for your time.
    Rgds
    Ranjit

    I received the same message and resolved it by adding the following jars to the classpath. All these jars came from the weblogic92 directory:
    server/lib/ant/ant.jar
    common/lib/apache_xbean.jar
    server/lib/jsafe.jar
    server/lib/weblogic.jar
    server/lib/webservices.jar
    server/lib/webserviceclient.jar
    server/lib/webserviceclient+ssl.jar
    server/lib/schema/weblogic-container-binding.jar
    server/lib/xbean.jar
    hth,
    John

Maybe you are looking for

  • Can I set up a 2nd iTunes account for a new iPod on my iMac?

    How do you set it up?  If so, can the 2 accounts share music?  If they can share music, does it have to be the entire library or can you pick and choose what you want to share?  Lastly, can they have 2 different cards or iTunes cards linked to them? 

  • Application Not Responding Creative Suite

    Having major problems with Application Not Responding in Creative Suites 5 & 6. Whenever trying to quit applications, more than not have to force quit. Would like to be able to quit out of Adobe Apps without force quitting. Also get a lot of spinning

  • Error ORA-12154 TNS:  Could not resolve the connect identifier specified

    Hi. I'm getting the above error message as I'm trying to create a connection to my oracle 10g database from visual studio 2008. (it's not an ASP.NET app, but a windows forms) I've installed the Oracle Developer Tools for Visual Studio and am followin

  • Serial number for Photoshop CC

    I have never received a serial number after I paid for subscription for Photoshop CC. The Application run very well. Some places i have read that the serial number is mailed right after the payment is fullfilled. Do other users in this forum also not

  • ICloud tab in Safari

    Just upgraded my MacBook Pro to Mountain Lion and noticed the iCloud button in Safari. Can I just confirm that this won't show what's open on my iPhone till iOS 6?