JVM timezone property in websphere

If I set the user.timezone system property for an application deployed in Websphere appserver, does it affect any other apps using the same JVM? Anyone, please let me know. I set this system property using Websphere Admin console. The steps are below.
Start the administrative console.
In the topology tree, expand Servers and click Application Servers.
Click the name of the application server for which you want to set the time zone.
On the application server page, click Process Definition.
On the Process Definition page, click Java Virtual Machine.
On the Java Virtual Machine page, click Custom Properties.
On the Custom Properties page, click New.
Specify user.timezone in the Name field and timezone in the Value field, where timezone is the supported value for your time zone.
Click Apply.
Save the configuration
Thanks in advance!!

> can fail if the user does not have the rights to access the JVMs parameter.
Not sure what that means but I am pretty sure it is false.  Perhaps it was in reference to a customer security manager.
f) You could find and fix the JVM code itself. Easier of course if it is a java code bug rather than a binary bug.  If java code only then you could use a bootclass loader option to put your fix in place when the VM starts.
But I would probably go for a.

Similar Messages

  • Oracle's JVM Timezone x sessiontimezone x dbtimezone (how would they match?)

    hello all,
    I wonder if Oracle's JVM gets its default timezone from Oracle's timezone ... and if it does.. would it get from dbtimezone or sessiontimezone?
    how would I alter dbtimzone to test if this works out?
    thanks for now
    Rodrigo

    hello all,
    I wonder if Oracle's JVM gets its default timezone from Oracle's timezone ... and if it does.. would it get from dbtimezone or sessiontimezone?
    how would I alter dbtimzone to test if this works out?
    thanks for now
    Rodrigo

  • DB timestamp value with JVM TimeZone

    Hi all,
    If we have database timestamp "*1970-01-01T16:00:00*", no matter what Time Zone the jvm is running with, we get the java.sql.Timestamp object representing the time "1970-01-01T16:00:00" locally(Shang Hai, Las Vegas, London...). So, the UTC time will be different as well.
    I need to do some conversion work to make database timestamp "1970-01-01T16:00:00" as UTC time. Although it will be different in jvms with different time zones, they all mean the same time(UTC time, same million seconds from UTC Time 1970-01-01T00:00:00.000) and will be consistent.
    For how to do the conversion, do you have any suggestion?

    Seems like an odd request.
    1. If your database does NOT specify a timezone then the jdbc connection string would have a way to do that explicitly.
    2. If you database DOES specify a timezone then you would need to write SQL (not java) that returned a unspecified timezone value, probably a string, which you would use to create a java timestamp (for example via SimpleDateFormat).
    The above or course presumes that you understand that the jdbc has perfectly acceptable ways of getting correct timestamps from databases and that displaying a timestamp value has nothing to do with that.

  • Coherence Extend: is remote address a JVM/System property?

    Hello,
    I want to pass remote address and port as a JVM argument (not really being part of the cache configuration of the extend clients), is it possible?
    <remote-addresses>
    <socket-address>
    <address>192.168.0.2</address>
    <port>9099</port>
    </socket-address>
    <socket-address>
    <address>192.168.0.3</address>
    <port>9099</port>
    </socket-address>
    </remote-addresses>
    is it possible to Dynamically inject the Address into the cache configuration file?
    <socket-address>
    *<address>{IPAddress}</address>*
    <port>9099</port>
    </socket-address>
    </remote-addresses>
    Thanks
    Prab

    Hi Prab,
    You do it like this:
    <socket-address>
          <address system-property="my.extend.address"></address>
          <port system-property="my.extend.port"></port>
    </socket-address>You then specify the properties when you start up
    -Dmy.extend.address=192.168.0.2 -Dmy.extend.port=9099JK

  • System.setProperty not being recognised by JVM

    Hi,
    I am trying to change my heap size for an Applet without having to
    get my users to set -Xmx in their plugIns.
    To do this I am trying to set the System Parameter javaplugin.maxHeapSize programmatically using:-
    System.out.println("MaxHeapSIze = " + System.getProperty("javaplugin.maxHeapSize"));
    System.setProperty("javaplugin.maxHeapSize", "100m");
    System.out.println("MaxHeapSIze = " + System.getProperty("javaplugin.maxHeapSize"));
    This appears to work in that it prints out a trace to say heap was 64m
    before and 100m after the setProperty. However the JVM is still using
    a heap of 64m as I get an OutOfMemory Error when the heap gets to 64m.
    Presumable this is because the JVM is still using the value it had at
    start-up.
    Is there a way to tell it to use the new value ?
    Sue

    Shouldn't the user have their own local timezone value
    where the applet is downloaded to?Yes they do, but since we have server side code in a different timezone from some of our clients, any Date objects passed from server to client are interpreted incorrectly on these clients. I figured that setting the timezone on the client to be equal to the server's timezone would solve this problem (I'm talking JVM timezone here, not OS timezone).
    SecurityException - if a security manager exists and
    its checkPermission method doesn't allow setting of
    the specified property. Yes, but it doesn't seem to be throwing any exceptions when I call setProperty. Plus, when I call getProperty to inspect the value I just set, it shows the new value. However, the JVM still behaves as if the old value was still in use.
    Alternatively, is it possible to set JVM parameters such as "-Duser.timezone = xxxx" from within the APPLET tag on the HTML page, so I don't have to use setProperty at all in the code?
    Thanks,
    Ken

  • TimeZone initialization

    Hi,
    I understand that TimeZone.getDefault() returns the time zone according to teh user.timezone property value. When I change the time zone on my machine and restart the JVM I see the change reflected in the getDefault return value.
    Here are my questions:
    1) Is it guaranteed that upon start-up the JVM reads the timezone and interprets it into the user.timezone property on all platforms?
    2) Is using setDefault() the only way to invoke a change in the machines default timezone?
    3) When using TimeZone.setDefault(), will the default time zone change for all threads running in the JVM instance?
    Thanx

    1) No; user.timezone is not mentioned anywhere in the public documentation so other implementations of the platform might not use it.
    2) AFAIK
    3) Yes, as far as I know

  • Setting user.timezone in jnlp

    I have no success in setting the user.timezone property through the jnlp-file. I have seen a similar experience reported a couple of years ago:
    http://forum.java.sun.com/thread.jspa?forumID=38&threadID=431709
    Is it doable?
    I can't set it in the code, because we are suffering from a timezone/thread-related bug reported (for instance) here:
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6352812
    Right now we are using aspects for the sole purpose of fixing this problem, but apparently that has it problems as well from time to time at the customer site.
    Thanks!
    /Claes

    I think the "user.timezone" is consided as "unsafe" and cannot be set by JNLP; similar complain can be found when setting user.language see: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4683242
    In fast there are only six properties considered to be �safe�:
    sun.java2d.noddraw
    javaws.cfg.jauthenticator
    swing.useSystemFontSettings
    swing.metalTheme
    http.agent
    http.keepAlive
    See http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/syntax.html

  • JVM System Properties - how to set?

    Is there a way to set JVM system property values for
    an Oracle instance from "outside" the jvm? I need the
    equivalent of specifying -Dproperty=value on the JVM
    launch command, but for the JVM running inside Oracle 9.
    Is this possible?

    382891,
    As far as I know, this cannot be done. Perhaps the "java.lang.System.setProperty()" method will suffice?
    Good Luck,
    Avi.

  • Local timezone is ignored

    I can do whatever I want, my oracle javavm always uses datetimes as "GMT". I can even set ZONE_OFFSETS manually, set locales etc., but nothing changes.
    the easiest example is to try :
    System.out.println(new Date()).toString());
    where oracles jvm incorectly outputs :
    Fri May 04 10:48:48 GMT 2001
    but suns jvm outputs :
    Fri May 04 13:04:00 CEST 2001
    When calling System.getproperty(user.timezone) suns jvm says
    "Europe/Berlin"
    and oracle reports
    "CET"
    Any help is realy appreciated
    Stefan Kost
    null

    Stefan,
    I've seem to be with the same problem you've got..
    what I've done was setting the default JVM timezone in my
    application using the SimpleTimeZone class as follow:
    TimeZone tz = TimeZone.getDefault();
    SimpleTimeZone stz = new SimpleTimeZone(tz.getRawOffset(),tz.getID());
    System.out.println("Timezone = "+stz.toString());
    stz.setRawOffset(-10800000); //put your offset in miliseconds from GMT
    TimeZone.setDefault(stz);
    Notice this will only work for the application that implements
    this piece of code.. once it is finished.. the JVM timezone returns
    to be the wrong one..
    I'm still looking for a better solution than that (maybe set the
    timezone offset for the JVM directly).. but can't find how
    if you have something else that might help.. I would appreciate it.
    Rodrigo
    please, reply to: [email protected]

  • Back up time stamp?

    Hello team,
    Actually i was taking Back up time stamp of ABAP system using DB12 and from OS level , i found that from DBserver time is 21:18 GMt and from SAp gui it is 20:00 gmt , may i know why there is the difference in time stamp but my sap is completely in synchronise with DATABASE server.
    Can anyone let me know shall i go for sapnote ?

    Hi,
    On the SAP side, run transaction /nSTZAC. The system time zone is client independent and uses default time zone (client  dependent).
    The OS time and SAP system time should be the same.
    The tables for time zone customizing are client dependent and therefore it is necessary to change the time zone settings in each client to receive a correct date/time calculation. It is necessary to update the DST rules in all clients including 000.
    In terms of Java please check.
    834520    Mapping of time zones between UME and ABAP
    You can change the timezone of the JVMs using the -Duser.timezone parameter
    So you should add -Duser.timezone=<timezone> to all dispatcher and server processes in your systems, using the configtool
    1) open config tool
    2) select yes
    3) select "cluster-data->instanceXXX->serverXXX/Dispatcher"
    4) in "Java parameters" add new line "-Duser.timezone=<timezone>"
    5) click "Apply changes"
    6) restart your instance
    Please refer to following link which gives you the list of
    user.timezone supported by JVM 1.4
    Supported user.timezone property values for the Development Kit for Java
    http://publib.boulder.ibm.com/infocenter/wsdoc400/v6r0/index.jsp
    ?topic=/com.ibm.websphere.iseries.doc/info/ae/ae/adrtzval.htm
    This should resolve your issue..
    Best Regards,
    Hemanth

  • Better options for defining config directory than in JSP?

    String defaultConfigPath = "/opt/WebSphere/AppServer/properties/config";
    final String APP_CONFIG_DIR = "appConfigDir";
    String configPath = System.getProperty(APP_CONFIG_DIR, defaultConfigPath);This is all fine and dandy, however, the configuration default path is for a WebSphere 4.0 configuration; there is talk down the pipeline to upgrade to WebSphere 6.1, whereby the default configuration path is subject to change.
    This will not affect "appConfigDir" as that is ultimately pulled from the JVM, but what if we have some non-understanding admin that doesn't know to set that JVM system property and relies on the default directory which itself could be wrong? If so, wouldn't it be better to set defaultConfigDir somewhere other than the JSP which requires redeploying the entire EAR file to make the change?
    What suggestions do you have?
    Thanks

    I think you're out of luck as you said.
    This is a Verizon function, not of the BlackBerry. The voicemail system lies in their servers somewhere.
    I don't know of any line-in function. It's not available.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Error while deploying P6.ear file in Oracle Weblogic installing P6 R8 web

    Hi,
    I am trying to install Primavera P6 R8 web and while deploying the P6.ear file into Oracle Weblogic getting the following error:
    "<Error> <Deployer> <BEA - 149202> <Encountered an exception while attempting to commit the 7 task for the application 'pm6'.>
    weblogic.application.ModuleException: :com.primavera.PhoenixException: ERROR: BREBootstrap.xml was not found. Please make sure that the JVM system property primavera.bootstrap.home is defined and set to the location of the directory containing BREBootstrap.xml
    Thanks & Regards,
    Ashwani

    Hello
    did you configure the startweblogic file as mentioned in the admin guide ?

  • Deployment Fails For EPPM 8.3

    Dear Experts,
    I am trying to deploy the EPPM 8.3,p6.ear file on the managed server on which I want to deploy the EPPM application but it Fails with the following error :
    ####<Dec 12, 2013 3:53:33 PM IST> <Warning> <HTTP> <ecmintapp.oracle.com> <EPPM_Server> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1386843813194> <BEA-101162> <User defined listener com.primavera.pvweb.listeners.PVContextListener failed: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'registryService' defined in class path resource [/com/primavera/pvweb/servlet/webconf.xml]: Invocation of init method failed; nested exception is com.primavera.PhoenixException: ERROR: BREBootStrap.xml was not found. Please make sure the JVM system property primavera.bootstrap.home is defined and set to the location of the directory containing BREBootStrap.xml..
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'registryService' defined in class path resource [/com/primavera/pvweb/servlet/webconf.xml]: Invocation of init method failed; nested exception is com.primavera.PhoenixException: ERROR: BREBootStrap.xml was not found. Please make sure the JVM system property primavera.bootstrap.home is defined and set to the location of the directory containing BREBootStrap.xml.
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1338)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
        at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
        at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
        at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
        at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728)
        at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)
        at com.primavera.bre.Initializer.start(Unknown Source)
        at com.primavera.bre.Application.start(Unknown Source)
        at com.primavera.pvweb.listeners.PVContextListener.contextInitialized(Unknown Source)
        at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
        at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1868)
        at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
        at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
        at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
        at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
        at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
        at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
        at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
        at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
        at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: com.primavera.PhoenixException: ERROR: BREBootStrap.xml was not found. Please make sure the JVM system property primavera.bootstrap.home is defined and set to the location of the directory containing BREBootStrap.xml.
        at com.primavera.infr.admin.MetaCfg.a(Unknown Source)
        at com.primavera.infr.admin.MetaCfg.getMetaJDBCURL(Unknown Source)
        at com.primavera.infr.srvcs.RegistryServiceImpl.init(Unknown Source)
        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:597)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java:1414)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1375)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1335)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
        at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
        at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
        at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
        at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728)
        at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)
        at com.primavera.bre.Initializer.start(Unknown Source)
        at com.primavera.bre.Application.start(Unknown Source)
        at com.primavera.pvweb.listeners.PVContextListener.contextInitialized(Unknown Source)
        at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
        at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1868)
        at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
        at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
        at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
        at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
        at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
        at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
        at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
        at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
        at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
        at java.io.FileInputStream.open(Native Method)
        at java.io.FileInputStream.<init>(FileInputStream.java:120)
        at java.io.FileInputStream.<init>(FileInputStream.java:79)
        at com.primavera.infr.admin.MetaCfg.a(Unknown Source)
        at com.primavera.infr.admin.MetaCfg.getMetaJDBCURL(Unknown Source)
        at com.primavera.infr.srvcs.RegistryServiceImpl.init(Unknown Source)
        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:597)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java:1414)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1375)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1335)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
        at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
        at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
        at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
        at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728)
        at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)
        at com.primavera.bre.Initializer.start(Unknown Source)
        at com.primavera.bre.Application.start(Unknown Source)
        at com.primavera.pvweb.listeners.PVContextListener.contextInitialized(Unknown Source)
        at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
        at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1868)
        at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
        at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
        at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
        at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
        at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
        at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
        at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
        at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
        at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.io.FileNotFoundException: /App_ECM_Intg/Primavera/EPPM_83_P6/p6/BREBootStrap.xml (No such file or directory)
        at java.io.FileInputStream.open(Native Method)
        at java.io.FileInputStream.<init>(FileInputStream.java:120)
        at java.io.FileInputStream.<init>(FileInputStream.java:79)
        at com.primavera.infr.admin.MetaCfg.a(Unknown Source)
        at com.primavera.infr.admin.MetaCfg.getMetaJDBCURL(Unknown Source)
        at com.primavera.infr.srvcs.RegistryServiceImpl.init(Unknown Source)
        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:597)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java:1414)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1375)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1335)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
        at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
        at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
        at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
        at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728)
        at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)
        at com.primavera.bre.Initializer.start(Unknown Source)
        at com.primavera.bre.Application.start(Unknown Source)
        at com.primavera.pvweb.listeners.PVContextListener.contextInitialized(Unknown Source)
        at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
        at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1868)
        at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
        at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
        at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
        at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
        at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
        at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
        at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
        at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
        at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    Also,if I try to connect to the EPPM DB using admuser for dbconfig.sh ,it throws a invalid password error while the same password for admuser works good if connected via SQL Plus
    Please Help
    Thanks
    Raj

    Hello Sachin,
    I tried the steps but still it shows me the same error.
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> conn privuser
    Enter password:
    Connected.
    SQL>
    IN P6HOME ,there is no databaselogins.sh ,listing of P6HOME
    /App_ECM_Intg/Primavera/EPPM_83_P6/p6
    [oracle@ecmintapp p6]$ ls -l
    total 334712
    -rwxrwxr-x 1 oracle oinstall      1597 Dec 12 12:46 adminpv.cmd
    -rwxrwxr-x 1 oracle oinstall       876 Dec 12 12:46 adminpv.sh
    -rwxrwxr-x 1 oracle oinstall      1524 Dec 12 12:46 dbconfigpv.cmd
    -rwxrwxr-x 1 oracle oinstall       843 Dec 12 12:46 dbconfigpv.sh
    -rwxrwxr-x 1 oracle oinstall       952 Nov 26  2012 eppmconfig.cmd
    -rwxrwxr-x 1 oracle oinstall      1002 Dec 12 12:46 eppmconfig.sh
    drwxrwxr-x 2 oracle oinstall      4096 Dec 12 12:46 lib
    drwxrwxr-x 2 oracle oinstall      4096 Dec 12 12:46 license
    drwxrwxr-x 2 oracle oinstall      4096 Dec 12 12:46 migration_lib
    -rwxrwxr-x 1 oracle oinstall      2051 Dec  3  2012 migrationtool.cmd
    -rwxrwxr-x 1 oracle oinstall      1158 Dec 12 12:46 migrationtool.sh
    -rwxrwxr-x 1 oracle oinstall 308223629 Dec 12 12:46 p6.ear
    drwxrwxr-x 2 oracle oinstall      4096 Dec 12 12:45 p6help
    -rwxrwxr-x 1 oracle oinstall   8812615 Dec 12 12:46 P6Reports.zip
    -rwxrwxr-x 1 oracle oinstall  25293065 Dec 12 12:46 p6services.jar
    drwxrwxr-x 2 oracle oinstall      4096 Dec 12 12:46 precompile_utility
    [oracle@ecmintapp p6]$
    Got it in ,
    /App_ECM_Intg/installfiles/Primavera/EPPM/P6_R83/p6suite/database
    [oracle@ecmintapp database]$ ls -l
    total 68
    drwxrwxr-x 2 oracle oinstall 4096 Mar 20  2013 data
    -rwxrwxr-x 1 oracle oinstall  934 Mar  6  2013 databaselogins.bat
    -rwxrwxr-x 1 oracle oinstall  957 Mar  6  2013 databaselogins.sh
    -rwxrwxr-x 1 oracle oinstall 1620 Mar  6  2013 dbsetup.bat
    -rwxrwxr-x 1 oracle oinstall 1177 Mar  6  2013 dbsetup.properties
    -rwxrwxr-x 1 oracle oinstall 1366 Mar  6  2013 dbsetup.sh
    -rw-r--r-- 1 oracle oinstall    0 Dec 12 11:32 default.log
    drwxrwxr-x 2 oracle oinstall 4096 Mar 20  2013 docs
    drwxrwxr-x 2 oracle oinstall 4096 Mar 20  2013 lib
    -rwxrwxr-x 1 oracle oinstall 1202 Mar  6  2013 migrate.bat
    -rwxrwxr-x 1 oracle oinstall 1199 Mar  6  2013 migrate.sh
    -rwxrwxr-x 1 oracle oinstall 1128 Mar  6  2013 rundataloader.bat
    -rwxrwxr-x 1 oracle oinstall 1023 Mar  6  2013 rundataloader.sh
    -rwxrwxr-x 1 oracle oinstall  784 Mar  6  2013 runscript.bat
    -rwxrwxr-x 1 oracle oinstall  555 Mar  6  2013 runscript.sh
    drwxrwxr-x 6 oracle oinstall 4096 Mar 20  2013 scripts
    -rwxrwxr-x 1 oracle oinstall 1215 Mar  6  2013 validate.bat
    -rwxrwxr-x 1 oracle oinstall 1207 Mar  6  2013 validate.sh
    Followed the steps above but still the same error.
    Thanks
    Raj

  • Need to use Xalan in place of Oracle XSLT processor

    We are working with Oracle BPEL 10.1.3.3. We have a requirement to use Xalan as the XSLT processor to preserve existing investment into transformation maps built using Contivo (which is certified to work with Xalan).
    That said, we are having some trouble getting the Xalan processor to kick in going the java:exec route. For some reason, we end up with Oracle's XSLT processor in spite of asking for the Xalan implementation.
    TransformerFactory tFactory = new org.apache.xalan.processor.TransformerFactoryImpl();
    Transformer transformer = tFactory.newTransformer(new StreamSource(xslInURI));
    System.out.println(tFactory.toString()+transformer.toString());
    Strangely enough, the above snippet prints:
    [email protected]Transformer@e39f6b
    Wondering if anybody else has used Xalan successfully in conjunction with 10.1.3.3 bits. Appreciate your help.

    please copy and paste the following in your xpath-functions.xml file
    <function id="processXSLT" arity="2">
    <classname>com.collaxa.cube.xml.xpath.functions.xml.GetElementFromXSLTFunction</classname>
    <property id="namespace-uri">
    <value>http://schemas.oracle.com/xpath/extension/xalan/xslt</value>
    </property>
    <property id="namespace-prefix">
    <value>xalan</value>
    </property>
    </function>
    This function would try to find the default transformer factory using
    TransformerFactory.newInstance()
    so you might need to place the xalan transformer factory properties file in the beginning of your classpath (server.xml ) or pass it as jvm system property like below:
    -Djavax.xml.transform.TransformerFactory=org.apache.xalan.processor.TransformerFactoryImpl

  • FileWriter & UTF-16

    Hi, after making an instance of FileWriter, a simple file to go along with it e.g., :
    FileWriter writer = new FileWriter("AFile.txt");
    and then returning the encoding via:
    String aStringHere = writer.getEncoding();
    When I display this string it is "Cp1252", which from looking around is "Windows Latin". Could someone tell me why is this the default (I need UTF-16, is it supported?!?) and is it possible to change the encoding for FileWriter?
    Thanks :-)
    necro_ignis

    I do not recommend changing that...
    If you want to, you will have to change JVM envioronment property... so when you start your java, do this:
    -Dfile.encoding=ISO-8859-1

Maybe you are looking for

  • ML not compatible with desktop (Mac OS X 10.6.8)

    I want to purchase this new software for my desktop (OS X 10.6.8) but I kept having the message that my desktop is not compatible with the ML. Any comments? Thanks.

  • Field catalog not generated using semi automatic method

    Hi, I have this structure defined in my program. TYPE: BEGIN OF TY_OUTPUT,            BUKRS  TYPE BUKRS,            KUNNR  TYPE KUNNR,            NAME1  TYPE NAME1,            BUSAB  TYPE BUSAB,            KONZS  TYPE KONZS,            LAND1  TYPE LA

  • Set default Button and provide a KeyEvent to a component with focus !!!

    What is to do ??? I have following program: public class DefaultButton extends Frame implements ActionListener      private Button close;      public DefaultButton()           super("Default-Button");           setLayout(null);           setSize(400,

  • How to split stereo to 5.1 speakers (connect MP3)

    I need adaptor connect mp3 to 5.1 speakers. I want that it will be so: stereo signal on front and rear speakers and mono of the same signal on center,sub.

  • MacBook Air not recognizing Canon PowerShot

    I just got home from vacation excited to import photos to my MacBook Air (either using Picasa or iPhoto) from my Canon PowerShot SD3500IS. For the first time, my MacBook doesn't recognize the camera. I tried connecting to my old camera too and nothin