Weblogic.system.home property

Hi,
I used to launch weblogic 5.1 from a directory other that the wl
installation directory by passing -Dweblogic.system.home=myDirectory when
launching the server. This doesn't work with 6.0. I get the following
exception (note that if I start wl from its installation directory,
everything is fine) :
$$$$$$$$$$$$$$$$ License Exception $$$$$$$$$$$$$$$$
Unable to start WebLogic Server !!
Improperly formatted license file: D:\license.bea
$$$$$$$$$$$$$$$$ License Exception $$$$$$$$$$$$$$$$
Is "weblogic.system.home" still valid ? If not, what is the new way of doing
this?
Thanks, Alexandre.

I don't know if this was a problem in beta-1.
Could you try beta-2 (download from bea.com) and re-post if you still
see the problem?.
I just tried with the latest source line and i can run the server by
specifying a different
weblogic home directory.
Kumar
Alexandre Vauthey wrote:
>
Hi,
I used to launch weblogic 5.1 from a directory other that the wl
installation directory by passing -Dweblogic.system.home=myDirectory when
launching the server. This doesn't work with 6.0. I get the following
exception (note that if I start wl from its installation directory,
everything is fine) :
$$$$$$$$$$$$$$$$ License Exception $$$$$$$$$$$$$$$$
Unable to start WebLogic Server !!
Improperly formatted license file: D:\license.bea
$$$$$$$$$$$$$$$$ License Exception $$$$$$$$$$$$$$$$
Is "weblogic.system.home" still valid ? If not, what is the new way of doing
this?
Thanks, Alexandre.

Similar Messages

  • Use of weblogic.system.home property

    Hi,
    I am working on Windows 2000, with weblogic 6.0.
    I am trying to launch the default weblogic server with the
    script startWebLogic.cmd, but I modified the original script
    to set the current directory as the script directory.
    So I commented the cd ..\.. command and set the weblogic.system.home on the java
    weblogic.Server, as it is
    written in the adminguide page 2-6
    But it seems that weblogic can no longer find the config.xml file.
    In fact the exception I got is the following "weblogic.management.configuration.ConfigurationException:
    XmlRepository directory .\config does not exist" and the startup.log file contains
    the following warning : "####<Feb 10, 2001 12:12:51 PM EST> <Warning> <Management>
    <nicolas> <myserver> <main> <> <> <000000> <Unrecognized property: system.home>"
    So I am just wondering if the system.home property is still supported or if it is
    a documentation mistake (or misunderstanding)
    Else is there any way to start a weblogic server with the home dir different than
    the installation root.
    Thanks
    But

    "-Dweblogic.RootDirectory=c:\bea\wlserver6.0sp1" . . . Thank you Vijay at BEA
    "David Brown" <[email protected]> wrote:
    >
    Does any have any more information regarding using the new 'ServerMBean.RootDirectory'
    property ? I really need to find a way to tell weblogic 6.0sp1 where
    to find
    it's XmlRepository. (./config)
    In our instalaltion, "./config" is under c:\bea\wlserver6.0sp1\, but
    we are launching
    the JVM from a directory outside of c:\bea\wlserver6.0sp1, so I need
    to tell the
    VM where to look for ./config
    Thanks,
    David
    "Sanjeev Chopra" <[email protected]> wrote:
    Nicolas GANDRIAU <[email protected]> wrote in message
    news:3a859168$[email protected]..
    Hi,
    I am working on Windows 2000, with weblogic 6.0.
    I am trying to launch the default weblogic server with the
    script startWebLogic.cmd, but I modified the original script
    to set the current directory as the script directory.
    So I commented the cd ..\.. command and set the weblogic.system.homeon
    the java
    weblogic.Server, as it is
    written in the adminguide page 2-6
    But it seems that weblogic can no longer find the config.xml file.
    In fact the exception I got is the following"weblogic.management.configuration.ConfigurationException:
    XmlRepository directory .\config does not exist" and the startup.logfile
    contains
    the following warning : "####<Feb 10, 2001 12:12:51 PM EST> <Warning><Management>
    <nicolas> <myserver> <main> <> <> <000000> <Unrecognized property:system.home>"
    So I am just wondering if the system.home property is still supportedor
    if it is
    a documentation mistake (or misunderstanding)This is a bug in 6.0 (system.home does not work).
    This will be fixed for upcoming ServicePack 1, which defines a new
    property - ServerMBean.RootDirectory
    Else is there any way to start a weblogic server with the home dirdifferent than
    the installation root.
    Thanks
    But

  • How to change location for config files in WLS6.0 (like weblogic.home and weblogic.system.home in 5.1)

    Hi,
    I would like to point weblogic to a directory NOT under c:\bea\... for it's configuration.
    I used to do this on WLS 5.1 by setting:
    weblogic.home=/weblogic and weblogic.system.home=/projects/wlsconfig
    This way my config was NOT coupled to the weblogic install.
    I want to do the same thing, and have the config directory located in /projects/domainconfig
    for example.
    weblogic.system.home etc doesn't seem to do anything. The
    only variable that does anything is bea.home, but I need weblogic to find it's
    libs etc in /bea, but ONLY the config should be elsewhere.
    Any help would be great.
    Thanks,
    Dion

    From SP1 and beyond, you can use
    -Dweblogic.RootDirectory=<dirname>
    * The property for specifying configuration location:
    * The directory name of the domain from which to load the specified
    * configuration. The default is ".".
    * -Dweblogic.RootDirectory=<dirname>
    * The directory must exist.
    Dion Almaer wrote:
    Hi,
    I would like to point weblogic to a directory NOT under c:\bea\... for it's configuration.
    I used to do this on WLS 5.1 by setting:
    weblogic.home=/weblogic and weblogic.system.home=/projects/wlsconfig
    This way my config was NOT coupled to the weblogic install.
    I want to do the same thing, and have the config directory located in /projects/domainconfig
    for example.
    weblogic.system.home etc doesn't seem to do anything. The
    only variable that does anything is bea.home, but I need weblogic to find it's
    libs etc in /bea, but ONLY the config should be elsewhere.
    Any help would be great.
    Thanks,
    Dion[att1.html]

  • Retrieve system properties, eg. weblogic.system.home

    Hi!
    I am trying to retrieve the value of the system property weblogic.system.home. Note
    that it is not defined in the weblogic.properties file in WL5.1 with SP8, but specified
    in a start WL batch script.
    The code snippet
    .. System.getProperty("weblogic.system.home") ...
    returns null.
    Any ideas on what I'm doing wrong?
    Regards,
    Jan

    T3ServicesDef t3 = T3Services.getT3Services();
    home = t3.config().getProperty("weblogic.system.home");
    Mike
    It is weblogic.system.home - do not confuse.
    Fri May 11 11:40:26 PDT 2001:<I> <Config> Property name: 'weblogic.system.home',
    current value: '/home/weblogic/weblogic51_lab'
    "Giri Alwar" <[email protected]> wrote:
    The property is called "weblogic.home" not "weblogic.system.home".
    Giri
    "Jan Nygaard Nielsen" <[email protected]> wrote in message
    news:3b028e0b$[email protected]..
    Hi!
    I am trying to retrieve the value of the system propertyweblogic.system.home. Note
    that it is not defined in the weblogic.properties file in WL5.1 with SP8,but specified
    in a start WL batch script.
    The code snippet
    .. System.getProperty("weblogic.system.home") ...
    returns null.
    Any ideas on what I'm doing wrong?
    Regards,
    Jan

  • Weblogic.system.home

    I need help getting WL6.0 to do what Ihave been doing in 5.1. I have a piece of servlet code that uses:T3ServicesDef services = T3Services.getT3Services();services.config().getProperty("weblogic.system.home")to get the weblogics root directory. This no longer seems to work in 6.0 (getProperty is gone). What object do I need to reference to get the root directory of the installation w/ 6.0??

    I need help getting WL6.0 to do what Ihave been doing in 5.1. I have a piece of servlet code that uses:T3ServicesDef services = T3Services.getT3Services();services.config().getProperty("weblogic.system.home")to get the weblogics root directory. This no longer seems to work in 6.0 (getProperty is gone). What object do I need to reference to get the root directory of the installation w/ 6.0??

  • Weblogic.system.listenPort property in Weblogic 6.0?

    There is any property for manually indicate listen port like:
    weblogic.system.listenPort
    Baco, por siempre loado,
    os libre del cirrotico mal
    y del advenimiento gonococico.
    [att1.html]

    In 6.0, there is a "ListenPort" attribute in the <Server> tag in the config.xml file of the domain that a server belongs to.
    Giri
    "Paco Avila - Desarrollo" <[email protected]> wrote in message news:[email protected]..
    There is any property for manually indicate listen port like:
    weblogic.system.listenPort
    Baco, por siempre loado,
    os libre del cirrotico mal
    y del advenimiento gonococico.
    [att1.html]

  • Weblogic.system.DNSName

    -----BEGIN PGP SIGNED MESSAGE-----
    Hash: SHA1
    Is there any way to get WLS 5.1 (without clustering) to honor the
    weblogic.system.DNSName property? I don't want to enable http tunneling
    since: it's slow and I don't need http in any case.
    My situation is this. I'd like to use a virtual IP on a BigIP (F5) load
    balancer which sits between the WL clients and the WL servers. The home
    interface the servers send back to the client however, seems to contain the
    WLS real IP address (the weblogic.system.bindAddr). When the client
    reconnects to the server the stub uses this address instead of the virtual
    ip address which it needs to use.
    weblogic.system.DNSName is documented
    http://search.bea.com/weblogic/go50/query.html?col=weblogic&qp=url%3Ahttp%3A
    %2F%2Fwww.weblogic.com%2Fdocs51%2F&qt=weblogic.system.DNSName&qs=&qc=&pw=100
    %25&ws=0&qm=0&st=1&nh=10&lk=1&rf=0&rq=0
    to do exactly what I wish. However, it seems that this is only supported
    when running a cluster. I don't have a need for clusters since all requests
    are stateless. I'm only interested in gaining better load balancing
    support.
    Thanks,
    Bryan Talbot
    -----BEGIN PGP SIGNATURE-----
    Version: PGP Personal Privacy 6.5.2
    iQA/AwUBOiMogUzuKKcxAa+OEQI5CwCeMa4AkMUBFJhXlbMfeCyB7RoD4iQAniV0
    hbesDuOZlPj6PIG4gl5XiBag
    =AtM+
    -----END PGP SIGNATURE-----

    Yes, many people are running in this configuration (and support should NOT
              have told you this).
              In your scenario, A and B should be the "external IP addresses" of the
              firewall that are exposed to the web servers (the firewall would be
              configured to map requests to A and B to the "internal IP addresses of the
              servers where WLS is running). You still need to set the
              weblogic.system.DNSName parameter on one weblogic server to A and on the
              other server to B so that the session IDs are generated with A and B
              encoded in them rather than the "internal IPs" of the machines where
              weblogic is running.
              Hope this helps,
              Robert
              Arunanand Addepalli wrote:
              > Has anyone successfully implemented weblogic (510SP8) clustering thru
              > DMZ, where the webservers are in DMZ (we are using NAT) and weblogic
              > servers are in the local network. Using Solaris 2.7 and NES as
              > webservers. The problem i am facing is that when i am defining the DNS
              > names as "A:7001,B:7001" in the obj.conf where A and B are teh DNS
              > names of the weblogic servers. i also defined weblogic.system.DNSName
              > parameter.
              >
              > Six months back i logged this call at bea support and they closed the
              > call suggesting me to push my weblogic servers in to the DMZ.
              >
              > If somebody can help, thanks in advance.
              >
              > Regards
              > Arun
              

  • Weblogic.system.AdminListenPort

    Friends,
    Can anyone tell me about the weblogic.system.AdminListenPort property?
    It is referred to in the admin console for WLS 5.1 but I cannot find any
    info about the property at
    http://www.weblogic.com/docs51/resources.html. Even a website search
    turned up nothing.
    I am hoping to be able to use it to cause my server to accept console t3
    connections on the adminListenPort and reject them on port 80. port 80
    is outside the firewall and I do not want joe blow to be trying to point
    a console at our server.
    - Kevin

    It is not a publicly available port and the fact that it is mentioned in the
    console is a defect. We are planning to officially add such functionality
    in the future. Though, if you want to use it today, you can specify a
    separate port for administration and functionality using the property in
    your properties file. However, since it is not a official feature,
    technical support will likely not be able to help you if there are problems.
    Thanks,
    Michael
    Michael Girdley
    Product Manager, WebLogic Server & Express
    BEA Systems Inc
    "Kevin McEntee" <[email protected]> wrote in message
    news:[email protected]..
    Friends,
    Can anyone tell me about the weblogic.system.AdminListenPort property?
    It is referred to in the admin console for WLS 5.1 but I cannot find any
    info about the property at
    http://www.weblogic.com/docs51/resources.html. Even a website search
    turned up nothing.
    I am hoping to be able to use it to cause my server to accept console t3
    connections on the adminListenPort and reject them on port 80. port 80
    is outside the firewall and I do not want joe blow to be trying to point
    a console at our server.
    - Kevin

  • Weblogic.system.logFile wont use absolute path

    I set my
    weblogic.system.logFile=/deploy/weblogic.log
    and it always prepends this with weblogic.system.home.
    The docs say this should be a fully-qualified pathname, but the server
    doesn't behave that way. I'm using 4.5.0.
    Is this bug known, and has it been fixed? I'd really like to specify an
    absolute path (not something relative to weblogic.system.home).
    thanks,
    david
    David Michaels <[email protected]>
    Director of Technology
    ShockMarket Corporation (650) 330-4665
    [david.vcf]

    I second this request!!
    So far, I've only been able to symbolically link out of
    weblogic.system.home.
    -joe
    David Michaels <[email protected]> wrote in message
    news:[email protected]..
    I set my
    weblogic.system.logFile=/deploy/weblogic.log
    and it always prepends this with weblogic.system.home.
    The docs say this should be a fully-qualified pathname, but the server
    doesn't behave that way. I'm using 4.5.0.
    Is this bug known, and has it been fixed? I'd really like to specify an
    absolute path (not something relative to weblogic.system.home).
    thanks,
    david
    David Michaels <[email protected]>
    Director of Technology
    ShockMarket Corporation (650) 330-4665

  • Cannot set a weblogic system property in batch

    Hello All,
    I'm running an weblogic application on weblogic 8.1 SP1. The application uses
    UTF-8 data from a mssql database. The problem is that weblogic 8.1 SP1 does not
    show UTF-8 data correctly. I've read docs and found that in order to make sure
    that weblogic's output is in UTF-8 I can configure a weblogic system property
    like that:
    add -Dweblogic.webservice.i18n.charset="utf-8" into JAVA_OPTIONS in startweblogic.cmd
    batch file. But during the process of starting it shows me the following:
    <10.10.2003 20:08:50 NOVST> <Warning> <Management> <BEA-141087> <Unrecognized
    pr
    operty: webservice.i18n.charset.>
    I also do not see changes in weblogic's behaviour (IMHO it should add charset=utf-8
    to Content-type header of each response to clients.
    However on weblogic 7.0 SP1 everything works without adding this option, but when
    I add it the server claims again that it's unrecognized and I see no effect in
    the HTTP headers of the server response.
    PLease help me to investigate this issue!
    Thanks for any help
    Dmitry.

    Hello,
    You are setting the charset value (UTF-8) correctly. The <Warning>
    message from the server startup can be safely ignored.
    The server should respond to the charset provided by the client. You
    can also set the charset on the web service using charset attribute of
    the <web-service> element in the web-services.xml file. See:
    http://e-docs.bea.com/wls/docs81/webserv/i18n.html
    Have you tried setting the "-Dweblogic.webservice.i18n.charset=utf-8" on
    the client?
    Use the "-Dweblogic.webservice.verbose=true" flag to help diagnose this
    issue. See: http://e-docs.bea.com/wls/docs81/webserv/trouble.html
    Hope this helps,
    Bruce
    Dmitry wrote:
    >
    Hello All,
    I'm running an weblogic application on weblogic 8.1 SP1. The application uses
    UTF-8 data from a mssql database. The problem is that weblogic 8.1 SP1 does not
    show UTF-8 data correctly. I've read docs and found that in order to make sure
    that weblogic's output is in UTF-8 I can configure a weblogic system property
    like that:
    add <Warning> into JAVA_OPTIONS in startweblogic.cmd
    batch file. But during the process of starting it shows me the following:
    <10.10.2003 20:08:50 NOVST> <Warning> <Management> <BEA-141087> <Unrecognized
    pr
    operty: webservice.i18n.charset.>
    I also do not see changes in weblogic's behaviour (IMHO it should add charset=utf-8
    to Content-type header of each response to clients.
    However on weblogic 7.0 SP1 everything works without adding this option, but when
    I add it the server claims again that it's unrecognized and I see no effect in
    the HTTP headers of the server response.
    PLease help me to investigate this issue!
    Thanks for any help
    Dmitry.

  • How do I get the Weblogic system name in WLS 6.1 sp2 without creating T3Client

    Hi Folks,
    In Weblogic Server 5.1, I get the weblogic.system.name using the following code:
    T3ServicesDef t3services = T3Services.getT3Services();
    String systemName t3services.config().getProperty("weblogic.system.name");
    What is the counterpart for Weblogic Server 6.1?
    Thanks in advance for your help.
    Bill

    The class doesn't seem to be documented in the normal documentation, but
    you can get an overview of the methods by executing
    javap weblogic.management.Admin
    with weblogic.jar in your classpath.
    Hope that helps,
    Nils
    Bill Lam wrote:
    >
    Jim,
    Can you tell me where I can find documentation for
    weblogic.management.Admin?
    Thank you.
    Bill
    "Bill Lam" <[email protected]> wrote:
    Jim,
    Thanks. I appreciate your help.
    Bill
    Jim Brown <[email protected]> wrote:
    Bill:
    The weblogic.server.name property in WLS 5.1 has been replaced by the
    property weblogic.Name in WLS 6.X. Although it is possible to retrieve
    this value by calling System.getProperty(), I would encourage you to
    use
    the new JMX services which have replaced our proprietary management
    interfaces (T3ServicesDef, et. al.). For example, you could write aJMX
    client to read the various properties of ServerMBean. To get started,
    here is the link to our WebLogic JMX documentation:
    Programming WebLogic JMX Services
    <http://e-docs.bea.com/wls/docs61/jmx/index.html>
    Please post any follow-up questions about JMX to the
    weblogic.developer.interest.management.general_and_jmx newsgroup.
    Besides writing a JMX client, you can also take advantage of the
    following short-cut for retrieving the server name. The remaining code
    for this example can be found in your WebLogic Server samples directory
    under: ./wlserver6.1/samples/examples/cluster/rmi/HelloClusterImpl.java
    private String getLocation(){
    String toReturn = null;
    try{
    toReturn = weblogic.management.Admin.getServerName();
    }catch(Exception e){
    System.out.println("HelloClusterImpl failed getLocation");
    e.printStackTrace();
    if(toReturn==null){
    return "";
    }else{
    return toReturn;
    Regards,
    Jim Brown
    Bill Lam wrote:
    Hi Folks,
    In Weblogic Server 5.1, I get the weblogic.system.name using the followingcode:
    T3ServicesDef t3services = T3Services.getT3Services();
    String systemName t3services.config().getProperty("weblogic.system.name");
    What is the counterpart for Weblogic Server 6.1?
    Thanks in advance for your help.
    Bill--
    Jim Brown
    Developer Relations Engineer
    BEA Support
    ============================
    [email protected]

  • Which is weblogic serevr home directory

    Hi All
    i installed weblogic 10.3 in my system.
    i am deploying ADF jdev10.1.3 application on weblogic server.
    while installing ADF runtime libraries it is asking for weblogic server home directory.
    i gave F:\bea .(which is Bea home directory)
    but the wizard is saying that is not a "weblogic server home directory".
    Can you help me which path we can call weblogic server home directory.

    The [JDev 10.1.3 Guide for Forms/4GL Programmers|http://download.oracle.com/docs/cd/B32110_01/web.1013/b25947/toc.htm] says here that WLS v8.1 SP1 and 9.0 are supported, not 10.3.
    This isn't to say it isn't technically possible to install a JDev 10.1.3 app on WLS, however the ADF Runtime Libraries feature in JDev 10.1.3 may not know how to identify previous versions of WLS.
    Hope this helps.
    CM.

  • Weblogic.system.weight

    Hi,
              I have a question about the property : weblogic.system.weight...........
              I have defined this in the per server properties file on the shared
              drive, and I have a cluster of 2 servers.......however, this setting
              does not seem to be having any effect, e.g below, the server 64 had
              twice the weight specified as the server35, but seems to be doing less
              work.........
              "server64" processed 20 (44%) of 45 invocations
              "server35" processed 25 (56%) of 45 invocations
              how could this be checked ??
              regards,
              farhat
              

    I didn't see anything wrong in the core dump. Additional comments inline.
              Cheers - Wei
              Muhammad Farhat Kaleem <[email protected]> wrote in message
              news:[email protected]...
              >
              >
              > Wei Guan wrote:
              >
              > > Could you post thread-dumps of theset two WLAS?
              > >
              >
              > the thread-dumps are attached...........
              > also, where does the following property have to be defined :
              > weblogic.httpd.session.enable
              > at the proxy, the weblogic/props or weblogic/cluster/props........
              In one of weblogic.properties
              > the servlet in this case checks if the ref to the sfsb is in the
              HttpSession, and if
              > not, it creates a sfsb and puts the ref in the HttpSession..........
              What do you put into HttpSession? Refernce to sfsb instance of handler of
              sfsb instance?
              > if i define the
              > above property to be true at the proxy level,
              Did not follow you, this property is defined in WLAS properties files. What
              is your proxy? NSAPI, ISAPI, or HttpClusterServlet?
              > and there is only one instacne in the
              > cluster,
              You have two servers, did you configure them in the same cluster?
              > as the server goes into the loop it does find the ref in the session after
              > the first time, however if there are two instances in the cluster, then
              the loops in
              > both do not find the ref, though randomly they do also..........
              > pls let me know in case u need any more info, or if there is some thing
              that i am not
              > doing right........
              >
              > thanks
              >
              >
              > Full thread dump:
              >
              > "Keep-Alive-Timer:archimedes" daemon prio=7 tid=0x8fa3f0 nid=0xd4 waiting
              on mon
              > itor [0x1700f000..0x1700fdc0]
              > at java.lang.Object.wait(Native Method)
              > at weblogic.net.http.ClientVector.run(KeepAliveCache.java:146)
              > at java.lang.Thread.run(Thread.java:479)
              >
              > "HighPriority TimeEventGenerator" daemon prio=9 tid=0x8ee100 nid=0x15a
              waiting o
              > n monitor [0x16f0f000..0x16f0fdc0]
              > at java.lang.Object.wait(Native Method)
              > at
              weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:252)
              > at
              weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerat
              > or.java:141)
              > at java.lang.Thread.run(Thread.java:479)
              >
              > "SSLListenThread" prio=5 tid=0x8ea8d0 nid=0xb1 runnable
              [0x16dff000..0x16dffdc0]
              >
              > at java.net.PlainSocketImpl.socketAccept(Native Method)
              > at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
              > at java.net.ServerSocket.implAccept(ServerSocket.java:240)
              > at java.net.ServerSocket.accept(ServerSocket.java:224)
              > at
              weblogic.security.SSL.SSLServerSocket.acceptNoHandshake(SSLServerSock
              > et.java:121)
              > at
              weblogic.security.SSL.SSLServerSocket.accept(SSLServerSocket.java:112
              > )
              > at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
              >
              > "ListenThread" prio=5 tid=0x8e9670 nid=0x7c runnable
              [0x16cff000..0x16cffdc0]
              > at java.net.PlainSocketImpl.socketAccept(Native Method)
              > at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
              > at java.net.ServerSocket.implAccept(ServerSocket.java:240)
              > at java.net.ServerSocket.accept(ServerSocket.java:224)
              > at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
              >
              > "ExecuteThread-11" daemon prio=5 tid=0x8c09d0 nid=0x55 waiting on monitor
              [0x159
              > ff000..0x159ffdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-10" daemon prio=5 tid=0x8bf210 nid=0xdc runnable
              [0x158ff000..0x1
              > 58ffdc0]
              > at java.net.PlainDatagramSocketImpl.peek(Native Method)
              > at java.net.DatagramSocket.receive(DatagramSocket.java:354)
              > at weblogic.cluster.TDMSocketIPM.receive(TDMSocketIPM.java:79)
              > at weblogic.cluster.TMSocket.execute(TMSocket.java:216)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              > "ExecuteThread-9" daemon prio=5 tid=0x8bfba0 nid=0x132 runnable
              [0x157ff000..0x1
              > 57ffdc0]
              > at weblogic.socket.NTSocketMuxer.getNextSocket(Native Method)
              > at
              weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:326)
              > at
              weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:
              > 23)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              > "ExecuteThread-8" daemon prio=5 tid=0x8bced0 nid=0xdb waiting on monitor
              [0x156f
              > f000..0x156ffdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-7" daemon prio=5 tid=0x8ba820 nid=0x175 runnable
              [0x155ff000..0x1
              > 55ffdc0]
              > at weblogic.socket.NTSocketMuxer.getNextSocket(Native Method)
              > at
              weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:326)
              > at
              weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:
              > 23)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              > "ExecuteThread-6" daemon prio=5 tid=0x8ba3a0 nid=0x164 runnable
              [0x154ff000..0x1
              > 54ffdc0]
              > at java.io.Win32FileSystem.getLength(Native Method)
              > at java.io.File.length(File.java:659)
              > at weblogic.logging.FileStreamLogger.log(FileStreamLogger.java:34)
              > at weblogic.logging.LogManager.log(LogManager.java:112)
              > at weblogic.logging.LogOutputStream.info(LogOutputStream.java:63)
              > at
              weblogic.servlet.internal.ServletContextImpl.log(ServletContextImpl.j
              > ava:441)
              > at
              servletcontrolxml.ControllerServlet.log(ControllerServlet.java:346)
              > at
              servletcontrolxml.ControllerServlet.displayReceiptByQuantityLimit(Con
              > trollerServlet.java:471)
              > at
              servletcontrolxml.ControllerServlet.doGet(ControllerServlet.java:289)
              >
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              > pl.java:124)
              > at
              weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispat
              > cherImpl.java:153)
              > at
              weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:96)
              >
              > at
              jsp_servlet.jsp.receiptbyquantity._jspService(receiptbyquantity.java:
              > 89)
              > at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              > pl.java:124)
              > at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              > textImpl.java:744)
              > at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              > textImpl.java:692)
              > at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
              > ContextManager.java:251)
              > at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
              > a:363)
              > at
              weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
              >
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              > "ExecuteThread-5" daemon prio=5 tid=0x8ba100 nid=0x14b waiting on monitor
              [0x153
              > ff000..0x153ffdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-4" daemon prio=5 tid=0x8bab30 nid=0x1b2 waiting on monitor
              [0x152
              > ff000..0x152ffdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-3" daemon prio=5 tid=0x8b98c0 nid=0x10c waiting on monitor
              [0x151
              > ff000..0x151ffdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-2" daemon prio=5 tid=0x8b9570 nid=0x120 waiting on monitor
              [0x150
              > ff000..0x150ffdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-1" daemon prio=5 tid=0x8b9300 nid=0xde waiting on monitor
              [0x14ff
              > f000..0x14fffdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-0" daemon prio=5 tid=0x8b9c50 nid=0x1b7 waiting on monitor
              [0x14e
              > ff000..0x14effdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "TimeEventGenerator" daemon prio=5 tid=0x8bf800 nid=0x71 waiting on
              monitor [0x1
              > 4dff000..0x14dffdc0]
              > at java.lang.Object.wait(Native Method)
              > at
              weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:252)
              > at
              weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerat
              > or.java:141)
              > at java.lang.Thread.run(Thread.java:479)
              >
              > "SpinnerRandomSource" daemon prio=5 tid=0x8bb800 nid=0x130 waiting on
              monitor [0
              > x14cff000..0x14cffdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.security.SpinnerThread.stopSpinning(SpinnerRandomBitsSource.
              > java:104)
              > at
              weblogic.security.SpinnerThread.run(SpinnerRandomBitsSource.java:121)
              >
              >
              > "Signal Dispatcher" daemon prio=10 tid=0x805cc0 nid=0x11b waiting on
              monitor [0.
              > .0]
              >
              > "Finalizer" daemon prio=9 tid=0x804640 nid=0xb4 waiting on monitor
              [0x1395f000..
              > 0x1395fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:112)
              > at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
              > at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:174)
              >
              > "Reference Handler" daemon prio=10 tid=0x804250 nid=0x172 waiting on
              monitor [0x
              > 1385f000..0x1385fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              java.lang.ref.Reference$ReferenceHandler.run(Reference.java:114)
              >
              > "main" prio=5 tid=0x7c1c20 nid=0xed waiting on monitor
              [0x12f000..0x12fe80]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:1791)
              > at java.lang.reflect.Method.invoke(Native Method)
              > at weblogic.Server.startServerDynamically(Server.java:107)
              > at weblogic.Server.main(Server.java:65)
              > at weblogic.Server.main(Server.java:55)
              >
              > "VM Thread" prio=5 tid=0x803a90 nid=0x178 runnable
              >
              > "VM Periodic Task Thread" prio=10 tid=0x805b50 nid=0x115 waiting on
              monitor
              > Compiler thread printing unimplemented.
              > Full thread dump:
              >
              > "Keep-Alive-Timer:archimedes" daemon prio=7 tid=0x908860 nid=0xdd waiting
              on mon
              > itor [0x11a2f000..0x11a2fdc0]
              > at java.lang.Object.wait(Native Method)
              > at weblogic.net.http.ClientVector.run(KeepAliveCache.java:146)
              > at java.lang.Thread.run(Thread.java:479)
              >
              > "HighPriority TimeEventGenerator" daemon prio=9 tid=0x8fd210 nid=0xf0
              waiting on
              > monitor [0x1192f000..0x1192fdc0]
              > at java.lang.Object.wait(Native Method)
              > at
              weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:252)
              > at
              weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerat
              > or.java:141)
              > at java.lang.Thread.run(Thread.java:479)
              >
              > "SSLListenThread" prio=5 tid=0x900e10 nid=0x1bd runnable
              [0x1181f000..0x1181fdc0
              > ]
              > at java.net.PlainSocketImpl.socketAccept(Native Method)
              > at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
              > at java.net.ServerSocket.implAccept(ServerSocket.java:240)
              > at java.net.ServerSocket.accept(ServerSocket.java:224)
              > at
              weblogic.security.SSL.SSLServerSocket.acceptNoHandshake(SSLServerSock
              > et.java:121)
              > at
              weblogic.security.SSL.SSLServerSocket.accept(SSLServerSocket.java:112
              > )
              > at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
              >
              > "ListenThread" prio=5 tid=0x900bd0 nid=0x14c runnable
              [0x1171f000..0x1171fdc0]
              > at java.net.PlainSocketImpl.socketAccept(Native Method)
              > at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
              > at java.net.ServerSocket.implAccept(ServerSocket.java:240)
              > at java.net.ServerSocket.accept(ServerSocket.java:224)
              > at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
              >
              > "ExecuteThread-11" daemon prio=5 tid=0x8c4bc0 nid=0x101 waiting on monitor
              [0x11
              > 50f000..0x1150fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-10" daemon prio=5 tid=0x8c47d0 nid=0x193 runnable
              [0x1140f000..0x
              > 1140fdc0]
              > at java.net.PlainDatagramSocketImpl.peek(Native Method)
              > at java.net.DatagramSocket.receive(DatagramSocket.java:354)
              > at weblogic.cluster.TDMSocketIPM.receive(TDMSocketIPM.java:79)
              > at weblogic.cluster.TMSocket.execute(TMSocket.java:216)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              > "ExecuteThread-9" daemon prio=5 tid=0x8c3c50 nid=0x142 waiting on monitor
              [0x113
              > 0f000..0x1130fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-8" daemon prio=5 tid=0x8c38d0 nid=0x18e runnable
              [0x1120f000..0x1
              > 120fdc0]
              > at weblogic.socket.NTSocketMuxer.getNextSocket(Native Method)
              > at
              weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:326)
              > at
              weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:
              > 23)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              > "ExecuteThread-7" daemon prio=5 tid=0x8c2110 nid=0x11b runnable
              [0x1110f000..0x1
              > 110fdc0]
              > at weblogic.socket.NTSocketMuxer.getNextSocket(Native Method)
              > at
              weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:326)
              > at
              weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:
              > 23)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              > "ExecuteThread-6" daemon prio=5 tid=0x8c2b70 nid=0x10d waiting on monitor
              [0x110
              > 0f000..0x1100fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-5" daemon prio=5 tid=0x8c2510 nid=0x1be waiting on monitor
              [0x10f
              > 0f000..0x10f0fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-4" daemon prio=5 tid=0x8c2240 nid=0x1ab waiting on monitor
              [0x10e
              > 0f000..0x10e0fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-3" daemon prio=5 tid=0x8c11f0 nid=0x188 waiting on monitor
              [0x10d
              > 0f000..0x10d0fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-2" daemon prio=5 tid=0x8c1d90 nid=0xc7 waiting on monitor
              [0x10c0
              > f000..0x10c0fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-1" daemon prio=5 tid=0x8d3340 nid=0x196 waiting on monitor
              [0x10b
              > 0f000..0x10b0fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "ExecuteThread-0" daemon prio=5 tid=0x8d3100 nid=0x1a7 waiting on monitor
              [0x10a
              > 0f000..0x10a0fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:90)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
              >
              > "TimeEventGenerator" daemon prio=5 tid=0x8d1290 nid=0xcb waiting on
              monitor [0x1
              > 090f000..0x1090fdc0]
              > at java.lang.Object.wait(Native Method)
              > at
              weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:252)
              > at
              weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerat
              > or.java:141)
              > at java.lang.Thread.run(Thread.java:479)
              >
              > "SpinnerRandomSource" daemon prio=5 tid=0x8cfd80 nid=0xef waiting on
              monitor [0x
              > f80f000..0xf80fdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              weblogic.security.SpinnerThread.stopSpinning(SpinnerRandomBitsSource.
              > java:104)
              > at
              weblogic.security.SpinnerThread.run(SpinnerRandomBitsSource.java:121)
              >
              >
              > "Signal Dispatcher" daemon prio=10 tid=0x815aa0 nid=0xfd waiting on
              monitor [0..
              > 0]
              >
              > "Finalizer" daemon prio=9 tid=0x814aa0 nid=0x199 waiting on monitor
              [0xe4ff000..
              > 0xe4ffdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:112)
              > at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
              > at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:174)
              >
              > "Reference Handler" daemon prio=10 tid=0x8146b0 nid=0x10b waiting on
              monitor [0x
              > e3ff000..0xe3ffdc0]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at
              java.lang.ref.Reference$ReferenceHandler.run(Reference.java:114)
              >
              > "main" prio=5 tid=0x7d2100 nid=0x19e waiting on monitor
              [0x12f000..0x12fe80]
              > at java.lang.Object.wait(Native Method)
              > at java.lang.Object.wait(Object.java:424)
              > at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:1791)
              > at java.lang.reflect.Method.invoke(Native Method)
              > at weblogic.Server.startServerDynamically(Server.java:107)
              > at weblogic.Server.main(Server.java:65)
              > at weblogic.Server.main(Server.java:55)
              >
              > "VM Thread" prio=5 tid=0x813f00 nid=0x153 runnable
              >
              > "VM Periodic Task Thread" prio=10 tid=0x815750 nid=0xfc waiting on monitor
              > Compiler thread printing unimplemented.
              

  • How do you determine weblogic.system.executeThreadCount

    we r doing load testing a web based application with the following setup.
    Two 1 Gb Ram servers, one hosting Database(oracle 8i) server and the other hosting
    Weblogic5.1 + Apache server.
    The system is stable upto 90 concurrent users. with response times well below 5 secs.
    with apprximately 20 deplyed stateless session beans
    weblogic.system.executeThreadCount=45
    connectionPool/maxconnections = 45.
    max heap allocated 512 MB
    weblogic.system.servletThreadCount=0
    but once the concurrent users cross 90, the system takes longer response times,and
    at arond 130 concurrent users the load testing tool gets timeouts.
    I am a bit confused on how to select the best value for executeThreadCount ?
    Is it better to set servletThreadCount also ? if so, are the
    parameters
    1) weblogic.system.executeThreadCount
    2) weblogic.system.servletThreadCOunt
    3) max. no concurrent users to be supported and
    4) RAM available
    related in any way ? I know these parameters depend on the application as well, but
    are there any max/min values for these parameters.best put, how do you work out weblogic.system.executeThreadCount
    value.
    u can pls. help.
    raghu

    The Core Duos can do 10.5.x or cheaper 10.6.x, they cannot do Lion/10.7.x
    To see if you need to upgrade anything first...
    At the Apple Icon at top left>About this Mac, then click on More Info, then click on Hardware> and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 6 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B03
    SMC Version (system): 1.21f4
    Leopard requirements/10.5.x...
        *  Mac computer with an Intel, PowerPC G5, or PowerPC G4 (867MHz or faster) processor
    minimum system requirements
        * 512MB of memory (I say 1.5GB for PPC at least, 2-3GB minimum for IntelMacs)
        * DVD drive for installation
        * 9GB of available disk space (I say 30GB at least)
    Snow Leopard/10.6.x Requirements...
    General requirements
       * Mac computer with an Intel processor
        * 1GB of memory (I say 2GB at least)
        * 5GB of available disk space (I say 30GB at least)
        * DVD drive for installation
        * Some features require a compatible Internet service provider; fees may apply.
        * Some features require Apple’s MobileMe service; fees and terms apply.
    Which apps work with Mac OS X 10.6?...
    http://snowleopard.wikidot.com/
    It looks like they might still have it...
    http://store.apple.com/us/product/MC573Z/A?fnode=MTY1NDAzOA
    If it's a core Duo & not a Core2Duo, then it'll only run in 32 bit mode.

  • The percentage of available space in the file system /home/SIDadm is low???

    The percentage of available space in the file system /home/SIDadm is low (8.404541015625 percent)
    I listed the directories in the file system
    plaixlps089:dv2adm 5> ls
    VertexDB                dev_rfc                 startbc.sh
    VertexVTXD              lib                     startdb.log
    WmRepository2           logs                    startsap_DVEBMGS01.log
    abin                    lost+found              stopdb.log
    bin                     mbox                    stopsap_DVEBMGS01.log
    config                  nohup.out               trans.log
    datastore               scripts
    dev_dpmon               sqlnet.log
    Can we delete some of the files inside any of the directories???
    help appreciated

    Dear Ameya,
    Yes you can delete the dev_rfc (Developer rfc traces). You may check the below links for more info on Dev traces in general and how to disable it:
    Developer Traces:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/1f/8311664bc511d189750000e8322d00/content.htm
    Activating and Deactivating Developer Traces:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/be/3723f3d41b41a9bc2ec54d03618948/content.htm
    Please mark the question as answered if my post(s) solved your question.
    Regards,
    Veera

Maybe you are looking for

  • How to create alert when some record are deleted

    HI to all, i am new to alert having req like if salary is deleted in the HRMS form then alert has to fired. how to do it. pls help.

  • Qosmio X300-11S - How long for processing order?

    Hello, I just purchased a Qosmio X300-11S and 3 year warranty. I got an e-mail saying "Thank you for purchasing from Toshiba, your order has been received and is now being processed." Does this mean my product is being still being looked at or is bei

  • Fwsm - active/standby - "Vlan configuration mismatch between peers"

    Hi, A FWSM pair fall in to active active sittuation due to a vlan configuration mismatch. What would be the best way to synchronize configurations and return to the normal active/standbay? There is a new vlan on the primary fwsm and at present both a

  • OSX 10.9.2 iMac won't scan for new Wifi networks.

    Sometimes I will tether the mac to my cell phone (because roomates hog bandwidth).  The problem is that when I click the Wi-fi icon in the upper-right hand corner, it shows Wifi networks it has found before but it will not scan for new ones (such as

  • Oracle Start up

    I have downloaded the Oracle 9i Personel edition for window98. After installation while starting the database it is asking for a password. I don't know which password has to be given. Please help me