WLDF in WebLogic 12.1.1 - Is it part of Standard Edition (without additional cost)?

I know Mission Control is not allowed in production for WebLogic Standard Edition without additional licensing costs.  How about WLDF? 
I haven't been able to find any documentation to state one way or the other and I don't want to assume since it took me quite a while to understand the JRMC licensing back in WL10 and WL11 versions.
Thanks,
Bill

http://www.oracle.com/us/products/middleware/application-server/oracle-weblogic-server-ds-1391360.pdf
"The WebLogic Management Framework includes the administration
server, its communication with managed servers, lifecycle
management via the Node Manager, and the WebLogic
Administration Console. The console provides the starting point for
essential operations, administration, automation and management. It
enables access to all the functions of Oracle WebLogic Server and
includes built-in intelligence to help prevent human configuration
errors. The WebLogic Scripting Tool enables command-line and
scriptable control over Oracle WebLogic Server. The WebLogic
Diagnostic Framework enables users to instrument applications for
monitoring and diagnostic purposes."
According to this (the way I read it) WLDF belongs to the WebLogic Management Framework, which is part of the standard edition (so from this you would assume no additional costs are needed when using WLDF).

Similar Messages

  • Weblogic Enterprise or Standard Edition

    Hello there,
    Could anyone please advise if it's possible to find out whether you're running Weblogic 11g Standard or Enterprise edition?
    There doesn't seem to be any details in the console apart from the version (10.3.1).
    Any help greatly appreciated !

    Hi,
    There is only one WebLogic Server software download. Whether you need a WebLogic Server Enterprise Edition or a WebLogic Suite license depends on whether you use the premium components which are included in the WebLogic Server Enterprise Edition or WebLogic Suite licenses.
    For WebLogic Server 11g, the packaging is as follows:
    WebLogic Server Standard Edition:
                 includes WebLogic Server
                             Kodo Enterprise
                             TopLink and ADF
                             JDeveloper
                             Enterprise Pack for Eclipse
    WebLogic Server Enterprise Edition:
                 includes WebLogic Server Standard Edition
                              + Clustering
                              +Enterprise Manager Diagnostics Pack
    WebLogic Suite:
                 includes WebLogic Server Enterprise Edition
                              + Coherence EE
                              + JRockit Real Time
                              + Management Pack for Coherence
                              + iAS EE (on WebLogic)
                              + WL Operations Control
    Thanks,
    Sharmela

  • Weblogic 10gR3 standard edition and enterprise edition

    Difference between weblogic 10gR3 standard edition and enterprise edition ??

    WebLogic Server software is the same in all of the various download distributions available that vary on platform and 32/64 bit architecture. However, which features are licensed for use vary by the edition customers license, which is covered here:
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14860/products.htm#i1041725
    That link is for WLS 11g, but it applies generally to WLS 10.3.0 as well.

  • Find Weblogic server is Enterprise or Standard Edition

    Hi,
    I need to find if the Weblogic server version in my windows server is standards or enterprise edition.
    My  weblogic version 10.3.6.0 which was configured earlier and now we have got the enterprise version lisence
    Regards,
    Gaurav

    Hi,
    There is only one WebLogic Server software download. Whether you need a WebLogic Server Enterprise Edition or a WebLogic Suite license depends on whether you use the premium components which are included in the WebLogic Server Enterprise Edition or WebLogic Suite licenses.
    For WebLogic Server 11g, the packaging is as follows:
    WebLogic Server Standard Edition:
                 includes WebLogic Server
                             Kodo Enterprise
                             TopLink and ADF
                             JDeveloper
                             Enterprise Pack for Eclipse
    WebLogic Server Enterprise Edition:
                 includes WebLogic Server Standard Edition
                              + Clustering
                              +Enterprise Manager Diagnostics Pack
    WebLogic Suite:
                 includes WebLogic Server Enterprise Edition
                              + Coherence EE
                              + JRockit Real Time
                              + Management Pack for Coherence
                              + iAS EE (on WebLogic)
                              + WL Operations Control
    Thanks,
    Sharmela

  • Oracle Standard Edition 1 / Oracle WebLogic Server 11g Standand Edition

    Can anyone tell me if WebLogic Server 11g Standard Edition can be used for installations that use the "Oracle Standard Edition 1" of the database?
    If so what sort of licensing costs would be associated with Oracle WebLogic Server 11g Standard Edition?
    Thanks!

    Can anyone tell me if WebLogic Server 11g Standard Edition can be used for installations that use the "Oracle Standard Edition 1" of the database?
    If so what sort of licensing costs would be associated with Oracle WebLogic Server 11g Standard Edition?
    Thanks!

  • Weblogic 8.1 compatibility with oracle database 10.2 standard edition.

    Hi,
    We need to use standard edition 10 g database for weblogic 8.1 . is it compatible with it?
    we are currently using enterprise edition.
    Thanks

    Please check following link
    http://docs.oracle.com/cd/E13196_01/platform/suppconfigs/configs81/81_over/supported_db.html#1143800
    My recommendation to upgrade to latest versions.

  • WLDF in weblogic 10,3,5

    Hi ,
    Please some one help how to configure wldf 10.3.5 . is there is any sample script?
    Thanks,

    Hi,
    For Email notification for stuck threads on your Server, you need to first create a Diagnostic
    Module. Within this you have to configure the Watches and Notifications.
    In this example, we are setting up a watch on the server log to look for the MaxStuckThread warning being reported. We do this be setting the Rule Expression to be equal to the message ID for this warning, when examining the output of the server log.
    Within the notification, we can set up any type of notification, but in this example we are setting up an SMTP (mail notification), so that when the rule expression matches the mail notification is sent.
    Below is the content of the Diagnostic_module.xml file created after completing the above tasks:
    <?xml version='1.0' encoding='UTF-8'?>
    <wldf-resource xmlns="http://www.bea.com/ns/weblogic/weblogic-diagnostics"
    xmlns:sec="http://www.bea.com/ns/weblogic/90/security"
    xmlns:wls="http://www.bea.com/ns/weblogic/90/security/wls"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-diagnostics
    http://www.bea.com/ns/weblogic/weblogic-diagnostics/1.1/weblogic-diagnostics.xsd">
    <name>Module-0</name>
    <watch-notification>
    <watch>
    <name>Serverlog</name>
    <enabled>true</enabled>
    <rule-type>Log</rule-type>
    <rule-expression>(SERVER = 'AdminServer') AND (MSGID =
    'BEA-000337')</rule-expression>
    <alarm-type>None</alarm-type>
    <notification>mailNotification</notification>
    </watch>
    <smtp-notification>
    <name>mailNotification</name>
    <enabled>true</enabled>
    <mail-session-jndi-name>myMailSession</mail-session-jndi-name>
    <subject>stuck thread problem</subject>
    <body>testing</body>
    <recipient>[email protected]</recipient>
    </smtp-notification>
    </watch-notification>
    </wldf-resource>
    Further details on creating a diagnostic module can be found here -
    http://download.oracle.com/docs/cd/E13222_01/wls/docs103/ConsoleHelp/taskhelp/diagnostics/UseDiagnosticModulesToMonitorServers.html
    and further details on how to create watches and notifications can be found here
    http://download.oracle.com/docs/cd/E13222_01/wls/docs103/ConsoleHelp/taskhelp/diagnostics/ConfigureWatchesAndNotifications.html
    Regards,
    Kal

  • OS/hw based failover cluster for WebLogic Server 9.2 Standard Edition

    Hi
    Is it possible to run WebLogic Server 9.2 SE on OS/hardware based cluster?
    I want to get an simple failover environment on a cluster of 2 nodes (active-passive).
    Oracle Database can be run in such scenario with one license with a limit of up time for passive instance.
    Is it the same with WLS licences?
    Regards
    WD

    The problem doesn't look like it has anything to do with wappers per se. The stack indicates that the JVM died when the persistent store tried to invoke a standard Java synchronize operation. JVM crashes need to be analyzed by a JVM expert, so I second the suggestion to solicit help from JVM experts and/or filing a case with customer support. In the mean-time, you can probably work-around the issue by either (A) ensuring you have a recent version of the JVM installed, or (B) temporarily switching to the Sun JVM.
    Regards,
    tom
    Edited by: TomB on Sep 17, 2010 2:33 PM

  • You may need to reinstall supported java virtual machine to load.

    Friends,
    I am getting below message, when i am running PSMPPIAInstall to build the PIA.
    could not find hava virtual machine to load.
    You may need to reinstall supported java virtual machine to load.
    I have downloaded and install jrockit present in PT 8.52 at the location d:\bea\jrocket*
    I can see java -version
    D:\psoft\PT8.52>java -version
    java version "1.6.0_20"
    Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
    Oracle JRockit(R) (build R28.1.0-123-138454-1.6.0_20-20101014-1351-windows-x86_6
    4, compiled mode)
    weblogic is installed correctly.
    kindly guide.

    Datacenter, hmm ...
    I have always installed it on Enterprise or Standard edition without any issues with the software delivered from eDelivery.
    But why use Datacenter, this is more to be used for virtualisations?

  • Custom weblogic instrumentation does not work for me :(

    Hello.
    First of all excuse me about my english.
    I have developed a simple class, I have compile it, and I have packaged it into a war file.
    The application Works ok when I do a request: http://192.168.1.5:7100/simple/hello
    But when I want to instrumentalize it, it cannot works. I have enabled instrumentation, but it I don't see anything in: Request Performance.
    Can you help me?.
    These are the files:
    simple_temp3
    |
    +- hello.html
    |
    +- WEB-INF
         +- web.xml
         |
    +- META-INF
         +- weblogic-diagnostics.xml
              |
         +- classes
             +- edu
                 +- ucla
                     +- hello.class
    [weblogic@localhost simple_temp3]$ cat hello.html
    <html>
        <head><title>Hello World</title></head>
        <body><h1>Hello World</h1></body>
    </html>
    [weblogic@localhost simple_temp3]$ cat META-INF/weblogic-diagnostics.xml
    <wldf-resource xmlns="http://www.bea.com/ns/weblogic/90/diagnostics"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.bea.com/ns/weblogic/90/diagnostics.xsd">
        <name>Sample WLDF resource</name>
        <instrumentation>
              <enabled>true</enabled>
                  <wldf-instrumentation-monitor>
                      <name>sample</name>
                      <enabled>true</enabled>
                      <action>TraceElapsedTimeAction</action>
                      <location-type>around</location-type>
                  </wldf-instrumentation-monitor>
        </instrumentation>
    </wldf-resource>
    [weblogic@localhost simple_temp3]$ cat WEB-INF/web.xml
    <web-app id="simple" version="2.4">
        <welcome-file-list>
                <welcome-file>hello.html</welcome-file>
        </welcome-file-list>
    <servlet>
        <servlet-name>Hello</servlet-name>
            <servlet-class>Hello</servlet-class>
    </servlet>
    <servlet-mapping>
         <servlet-name>Hello</servlet-name>
             <url-pattern>/hello</url-pattern>
    </servlet-mapping>
    </web-app>
    [weblogic@localhost simple_temp3]$ cat WEB-INF/classes/edu/ucla/Hello.java  (this is the source Class)
    import javax.servlet.Servlet;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.IOException;
    import java.io.PrintWriter;
    public class Hello extends HttpServlet implements Servlet {
        public Hello() {}
        protected void doGet(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException
            PrintWriter out = response.getWriter();
            out.println("<HTML>");
            out.println("<HEAD><TITLE>Hello World</TITLE></HEAD>");
            out.println("<BODY>");
            out.println("<H1>Hello World</H1>");
            out.println("Today is: " + (new java.util.Date().toString()) );
            out.println("</BODY></HTML>");
            out.close();

    Can anyone help me?

  • Error while starting weblogic 9.0 server .

    Hi ,
    When I start weblogic 9.0 server , I'm getting the following error and the server gets disconnected .
    JRockit dump produced after 0 days, 00:00:45 on Wed Jul 25 11:19:01 2007
    Additional information is available in:
    C:\bea92\user_projects\domains\dbAdapter\jrockit.1344.dump
    C:\bea92\user_projects\domains\dbAdapter\jrockit.1344.mdmp
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Error Message: Illegal memory access. [54]
    Exception Rec: EXCEPTION_ACCESS_VIOLATION (0xc0000005) at 0x0044CE73 - memory at 0x00000034 could not be read.
    Minidump : Wrote mdmp. Size is 173MB
    Version : BEA JRockit(R) R25.2.0-28 dra-45238-20050523-2021-win-ia32
    GC : System optimized over throughput (initial strategy singleparpar)
    : GC strategy for GC 0 was singleparpar
    : GC strategy for GC 1 was genparpar
    : mmHeap->data = 0x00620000, mmHeap->top = 0x10620000
    : mmStartCompaction = 0x0E622030, mmEndCompaction = 0x0F620000
    : Heap is not included in dumps.
    CPU : Intel Pentium 4 SSE SSE2 NetBurst
    Number CPUs : 1
    Tot Phys Mem : 1071628288
    OS version : Microsoft Windows XP Service Pack 2 (Build 2600)
    State : JVM is running
    I need to run embedded adapter using weblogic 9.0 .
    JRockit used is jrockit90_150_03.
    Please help me urgently.

    I have downloaded developer license ,but it's still throwing the error .
    To start WebLogic Server, use a username and *
    password assigned to an admin-level user. For *
    server administration, use the WebLogic Server *
    console at http:\\hostname:port\console *
    tarting weblogic with Java version:
    ava version "1.5.0_03"
    ava(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_03-b07)
    EA JRockit(R) (build dra-45238-20050523-2021-win-ia32, R25.2.0-28)
    tarting WLS with line:
    :\bea92\JROCKI~1\bin\java -jrockit -Xms256m -Xmx512m -Djrockit.codegen.optpriority=1 -Xverify:none -da -Dplatform.home
    \bea92\WEBLOG~1 -Dwls.home=C:\bea92\WEBLOG~1\server -Dwli.home=C:\bea92\WEBLOG~1\integration -Dweblogic.management.discov
    true -Dweblogic.ProductionModeEnabled= -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.di
    C:\bea92\patch_weblogic901\profiles\default\sysext_manifest_classpath -Dweblogic.Name=AdminServer -Djava.security.policy=C
    ea92\WEBLOG~1\server\lib\weblogic.policy weblogic.Server
    Jul 25, 2007 2:52:35 PM GMT+05:30> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with BEA JRockit(R) Vers
    dra-45238-20050523-2021-win-ia32 from BEA Systems, Inc.>
    Jul 25, 2007 2:52:37 PM GMT+05:30> <Info> <Management> <BEA-141107> <Version: WebLogic Server 9.0 Sun Jul 3 21:15:00 PDT
    5 598247 >
    Jul 25, 2007 2:52:40 PM GMT+05:30> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    nable to start WebLogic Server!
    xception occurred while reading the license file.
    lease make sure you have a valid license.bea
    ile in the BEA home directory associated with this
    nstallation. For more information about the license.bea
    ile, see the installation guide for the version of the
    oftware you are using at http://e-docs.bea.com.
    Jul 25, 2007 2:52:40 PM GMT+05:30> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    Jul 25, 2007 2:52:40 PM GMT+05:30> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut
    elf down>
    Jul 25, 2007 2:52:40 PM GMT+05:30> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    Could you please advise me as to what all I should inclde in the classpath to start weblogic 9.0 server.

  • How to change url of wsdl in weblogic 10.3

    Hello all. Now our team migrate big server application from JBoss to Weblogic 10.3.
    We have a lot of pure EJB3 web services (I mean web services implemented as Stateless beans)
    in EJB module (I.e. our services located in jar, not in war).
    We have no configuration files which described our services.
    For example we have service:
    @Stateless
    @WebService(endpointInterface = "com.softcomputer.totalqc.remotefacade.rich.browser.IBrowserWebService")
    @HandlerChain(file = "com/softcomputer/tqc/services/handler/authentifier-hc.xml")
    @CustomResolver
    public class BrowserWebServiceImpl implements IBrowserWebService
    // some methods
    By default JBoss map wsdl of this service to
    http://localhost:8080/TotalQCJPAApp-TQCServices/BrowserWebServiceImpl?wsdl
    where TotalQCJPAApp - is the name of ear file, TQCServices - name of jar file.
    but Weblogic map this service to another url:
    http://localhost:7001/BrowserWebServiceImpl/BrowserWebServiceImplService?WSDL
    And the question is: does have weblogic some config where we can simply define
    another url? For example we already migrated our project to OC4J and OC4J has such
    configs orion-web.xml and sun-jaxws.xml.
    I already spend near 5 hours to google some solution - but without result!
    It's very strange if weblogic do not have such simple feature..

    1) @WLHttpTransport
    We build our project using maven and do not want to have dependencies from code on weblogic specific libs.
    2) weblogic-webservices.xml
    When I create such decriptor weblogic start to ask that service defined in weblogic-webservices.xml should be also defined in webservices.xml, and webservices.xml have many obligatory fields, for example <port-component-name>, <wsdl-port>, <service-endpoint-interface>, <service-impl-bean> etc.. We don't want to redefine all this stuff! Only URL!!
    3) WebLogic Server - Web Services - I will try..
    Edited by: user12868964 on May 7, 2010 1:18 AM
    Edited by: user12868964 on May 7, 2010 1:19 AM

  • How to stop a web service inside a deployed EAR in Weblogic 10.3

    Hi,
    I want to stop a webservice from the weblogic UI console in Weblogic 10.3 but cannot find any link for the same kindly help me on the same.
    Scenario is as follows
    I can see my EAR deployed under Deployment tab, when I expand the same I can see the web service but there isn't any link available to explicitly stop only that particular web service.
    Can I do this at all in weblogic if yes? Please suggest.
    Thanks
    VR
    Edited by: sorry the page got stuck and refreshed filling details and re-submitting

    Hi VR
    From Weblogic Admin Console, Deployments, on right side click on the link named with your EAR Application. It opens detailed page with more tabs. Click on the tab named Targets. Here select your WebService module and click on Change Targets button. Uncheck the server where it is targetted (Deployed), click on Yes. And activate the changes.
    Thanks
    Ravi Jegga

  • Thread are gettin stuck causing the WebLogic server to hang

    We are developing an application for an US client which inclueds the following technology.
    - WebLogic 9.2 JMS (Foreign Server, Queue, Connection Factor, persistent Store)
    - Oracle 10g & Oracle 9i
    - J2EE (MDB)
    Different application uses different databases.
    After the server run for a few day it is getting a stuck thread and reported the same as a Hogging Thread in server -> monitoring -> thread. At this point the server hangs and stopped working with the status in 'warning' state (in the same page itself).
    The problem remains until the managed server is restarted.
    We have taken thread dump of different times and one of the error that we have got is attached below:
    "[STUCK] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" waiting for lock weblogic.rjvm.ResponseImpl@1279315 WAITING
         java.lang.Object.wait(Native Method)
         weblogic.rjvm.ResponseImpl.waitForData(ResponseImpl.java:82)
         weblogic.rjvm.ResponseImpl.getTxContext(ResponseImpl.java:109)
         weblogic.messaging.dispatcher.DispatcherProxy.unmarshalResponse(DispatcherProxy.java:238)
         weblogic.messaging.dispatcher.DispatcherProxy.dispatchSyncTranFuture(DispatcherProxy.java:131)
         weblogic.messaging.dispatcher.DispatcherWrapperState.dispatchSyncTran(DispatcherWrapperState.java:241)
         weblogic.messaging.dispatcher.DispatcherWrapperState.dispatchSyncNoTran(DispatcherWrapperState.java:266)
         weblogic.jms.dispatcher.DispatcherAdapter.dispatchSyncNoTran(DispatcherAdapter.java:59)
         weblogic.jms.client.JMSProducer.toFEProducer(JMSProducer.java:1061)
         weblogic.jms.client.JMSProducer.deliveryInternal(JMSProducer.java:670)
         weblogic.jms.client.JMSProducer.sendInternal(JMSProducer.java:455)
         weblogic.jms.client.JMSProducer.send(JMSProducer.java:337)
         weblogic.jms.client.WLProducerImpl.send(WLProducerImpl.java:966)
         com.ctb.dex.messagehost.InputMessageListener.onMessage(Unknown Source)
         weblogic.ejb.container.internal.MDListener.execute(MDListener.java:429)
         weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:335)
         weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:291)
         weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4072)
         weblogic.jms.client.JMSSession.execute(JMSSession.java:3962)
         weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:4490)
         weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Any body has any idea why this is happening? Please let me know in case you need to know more about the problem. Mail me at [email protected].

    Tom, we are experiencing the similar stuck thread max time out errors on our weblogic server(weblogic 8.1 sp5). Below is the thread dump:
    Blocked lock chains
    ===================
    Chain 4:
    "ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'" id=101 idx=0xca tid=19298 waiting for java/lang/String@0x9c1fb10 held by:
    "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" id=102 idx=0xcc tid=19299 in chain 3
    Open lock chains
    ================
    Chain 1:
    "ExecuteThread: '33' for queue: 'weblogic.kernel.Default'" id=62 idx=0x80 tid=19223 waiting for java/lang/String@0xbd00b10 held by:
    "ExecuteThread: '3' for queue: 'weblogic.kernel.Default'" id=32 idx=0x44 tid=19192 (waiting on notification)
    Chain 2:
    "ExecuteThread: '45' for queue: 'weblogic.kernel.Default'" id=74 idx=0x98 tid=19235 waiting for java/lang/String@0x1d1083a8 held by:
    "ExecuteThread: '11' for queue: 'weblogic.kernel.Default'" id=40 idx=0x54 tid=19200 (waiting on notification)
    Chain 3:
    "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" id=100 idx=0xc8 tid=19297 waiting for java/lang/String@0x9c1fb10 held by:
    "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" id=102 idx=0xcc tid=19299 (active)
    Can you help us in resolving the issue? This causes the weblogic server to hung and eventually non responsive.
    Below are our java version details:
    java version "1.4.2_13"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_13-b06)
    Java HotSpot(TM) Client VM (build 1.4.2_13-b06, mixed mode)
    Can you let me know how to proceed and what can be done to avoid this issue?
    Thanks a bunch Tom.
    Regards
    RV

  • APEX Listener on Weblogic licensing - SE or EE

    Does the APEX listener on Weblogic use any Weblogic Enterprise Edition features like clustering or is Weblogic Standard Edition good enough? I'm assuming you would need to license Welogic for the APEX listener right?
    Also do we have any sizing guidelines for APEX listener on Weblogic. The real question is if the APEX application we have met our SLA's on a 1 CPU box, without the APEX listener, after migrating to Weblogic - APEX Listener, would we be needing more, less or the same CPU capacity.

    Hello,
    the APEX Listener itself is stateless, so you can cluster it easily if you want or have to.
    APEX Listener is licensed with APEX, not with WLS. You can use a variety of J2EE containers that meet the requirements. In addition to WLS, Oracle supports the use of OC4J (either part of OAS or standalone) and GlassFish. In fact, the APEX Listener ships with an embedded version of GlassFish.
    Despite the support aspect, there are people who successfully run the Listener on the GlassFish's Open Source Edition or Apache Tomcat.
    Concerning your SLAs: The Listener will do something for you, so of course it will need the CPU. How much load it will generate depends on your usage scenario. Your post sounds like you already use APEX with a different web server than the Listener. If that guess is right, it would be helpful to know which web server you use now and how much CPU time it consumes.
    -Udo

Maybe you are looking for

  • Is anyone having trouble with smart groups being recognized in mail after the Maverick update?

    Since I updated my iOS to Mavericks, my smart groups are no longer recognized in Mail. Is anyone else having this problem?  How can I fix it?

  • Need information on Typical BI Apps Project

    Hi Experts, Wanted to understand how does a BI Apps project go and what is expected out of a BI apps Consultant we are using BI Apps 7964 with EBS R12 as the source. We have done the basic configurations for the BI Apps for Enterprise Asset Managemen

  • Dimensions of the screen changes burning in idvd

    I am having a problem burning Quicktime files from fcp5 on idvd. the quicktime files play fine, but once they are in idvd, they "shrink" vertically at a random point in the movie. (it looks kind of like widescreen tv.) Happens with everything I do no

  • Resolve Process Workflows

    Hi All, I've just implemented an activeSync resolve process that notifies helpdesk staff that there has been an identity collision, and includes some information about the incoming data and the clashing identities. For the time being this is adequate

  • RoboHelp HTML slow

    I am working on a RoboHelp project using v7. The output is quite fast when I access the Webhelp from my local folder. But when I place it in the central repository and access it from that sharepoint, it takes 5 to 6 seconds to open each topic. The pe