Differences Between Weblogic 10 and Weblogic 11g

Hi,
I like to know the differnces b/w Weblogic 10 and Weblogic 11g, can someone provide those information.
your help will be highly appriciated!!
Regards,
Sarath

Here is a list that I understand as critical/major differences:
1. JDK has changed from 1.5 to 1.6 (WLS10.0 uses JDK 1.5 and WLS10.3 uses JDK 1.6)
2. Console has been improved with great improvements in performance and when it is deployed
3. WLS10.3 is fully JEE5.0 EJB compliant while WLS10.0 is only JEE5.0 Entity bean compliant
4. New deployment features like fast-swap and on-demand
5. WLDF enhancements
6. ASML2.0 support was introduced in 10.3 in terms of Security enhancements
7. JDBC4.0 supportability
AND a lot more (but the above are more significant to me)
(This is not a comprehensive list of all the differences)
Arun

Similar Messages

  • Difference Between OBIEE 10g and OBIEE 11g

    Hi everyone,
    I have a doubt when choosing two versions of OBIEE, 10g and 11g.
    Actually, is there any big difference between 10g and 11 version ?
    From the point of view of easiness finding tutorial in internet, simplicity of using the tool, and other considerations, which one is better ?
    I hope you guys could also explain with your arguments.
    Thanks

    Hi,
    Few differences..
    Architectures-
    OBIEE 11g architecture...http://www.rittmanmead.com/2010/07/09/obiee-11gr1-architecture-and-use-of-weblogic-server/
    OBIEE 10g architecture....http://gerardnico.com/wiki/dat/obiee/obiee_overview
    Features-
    New features in OBIEE11g...Re: OBIEE 11g
    http://blogs.oracle.com/robreynolds/2010/07/new_administration_features_of.html
    I have a doubt when choosing two versions of OBIEE, 10g and 11g.If you are new to OBIEE its best to start with 10g,there are lot changes in 11g.It takes time to get used to it and you many not get enough docs or material to read,may face some new issues also.
    Actually, is there any big difference between 10g and 11 version ? Yes there are some differences between them...you can see them in above links.(many things like graphs,server)
    From the point of view of easiness finding tutorial in internet, simplicity of using the tool, and other considerations, which one is better ?For sure obiee 10g as 11g is new many of them just started using it,so you may get less help on this if you face issues & may not get enough tutorial in internet and OBIEE10g is bit easy to use.
    Its best to you go for OBIEE10g,parallely you can try 11g.
    Regards,
    Srikanth
    Edited by: Srikanth Mandadi on Oct 7, 2010 11:08 AM

  • Differences between OCA 10g and OCA 11g

    Hi,
    I am currently studying the OCA 10g Administration I but I have not taken the exam yet. I am also taking the SQL Expert exam but I dont think that is version specific.
    I would like to know how different or what the differences are between the OCA 10g and 11g exams are as I fear that 10g will be out of date soon. I am considering just taking the 11g exam even though I have only studied 10g.
    I had a look at both the syllabuses and they look pretty similar and was hoping someone could add some personal notations of their experience. I suspect and hope that the major differences would come at the OCP level.
    I don't want to go to do OCP as I am only doing to obtain a good foundation for working on the functional side of financials.
    Thanks in advance.
    Luke

    differences are between the OCA 10g and 11g exams
    Different version different new features discussed. example : no ADR in the 10g, no invisible index in 10g, DRA etc.
    Syllabus maybe the same, but features is different.
    I suspect and hope that the major differences would come at the OCP level.
    OCP is deeper than OCA. mostly OCA cover all features of the Oracle, and the OCP discussed about more advanced technique like RMAN, ASM, Memory Management, etc. but again 10g and 11g have different features.
    That's why for 10g OCP who wants to upgrade become 11g OCP, has to follow 11g new features exam.
    HTH
    Edited by: HGDBA on Jan 14, 2011 1:17 PM

  • Xpath difference between Oracle 10g and Oracle 11g

    All,
    I'm working on moving our existing stored functions from Oracle 10g (10.2.0.4.0) to Oracle 11g (11.2.0.1.0) and so far, everything has worked just fine on Oracle 11g...execpt for one xpath statement.
    The statement below works fine in Oracle 10g (10.2.0.4.0):
    extractValue(inv_dtl_img, '/service//ground/sortKeyCode') AS "srt_key_cd",
    Please note: I need to use the double slash "//" in order to ignore the two different elements in the schema.
    However, in Oracle 11g (11.2.0.1.0), when this statement is executed in the stored function, I get this:
    ERROR at line 1:
    ORA-00932: inconsistent datatypes: expected - got -
    The extractValue command is pulling data out of an XMLType column, and the corresponding XML schema looks like:
    <service>
    <trans>
    <ground>
    <sortKeyCode>
    </sortKeyCode>
    </ground>
    </trans>
    <nontrans>
    <ground minOccurs=0>
    <sortKeyCode>
    </sortKeyCode>
    </ground>
    </nontrans>
    </service>
    Please note: In the XML message, the "trans" and "nontrans" elements are exclusive, so both will never be populated at the same time. A typical XML message would look like this:
    <service><trans><ground><sortKeyCode>3</sortKeyCode></ground></trans></service>
    or this:
    <service><nontrans><ground><sortKeyCode>5</sortKeyCode></ground></nontrans></service>
    In the schema, the sortKeyCode has been defined in both places as "string maxlen=3", so the datatype of that element is exactly the same in both the "trans" and "nontrans" sections of the schema. The only difference in the schema (outside of the trans and nontrans tags) is the fact that the second "ground" tag is defined with a "minOccurs=0". Could Oracle 11g be treating the schema differently than Oracle 10g, resulting in the error?
    Any thoughts would be appreciated.

    The only way to get an quick answer to that one is to file a service request with Oracle support. It could be a bug or a correct change regarding W3C behavior. Despite this, you moving to 11.2, the extract/extractvalue etc propriety Oracle solutions are deprecated from 11.2 and onwards. The more sensible way to move forward, although, I know more work intensive, is to apply the XQuery alternatives like xmlexist, xquery or xmltable functions.
    Moving to EXTRACT is a bad idea, because this alway will be treated as an XML fragment. If you unlucky then Oracle will deal with this in memory via DOM (the standard solution regarding XML parsing if every smart thing within Oracle can not be applied) and this will result in a performance downgrade due to high CPU and Memory consumption/overhead...
    Your pick...

  • Difference between Oracle 10g and Oracle 11g when using Distinct in SQL

    Hi All,
    When I use Distinct in Oracle 10g, the result would be sorted in ascending order automatically, while there is no sorting in the result set in Oracle 11g.
    I was using plsql developer to run my sql.
    May I know if anyone have the same experience before?
    Is there any kind of setting in 11g that I can make the result in order? Thanks!
    Edited by: user5810051 on 2011/4/6 下午 8:47

    As acadet says, if you want your result ordered you must specify an ORDER BY clause in your query. Just because previous versions of oracle included some ordering as part of the processing of a query, that was not a guaranteed ordering, but just a side-effect. Now that Oracle have improved the internal workings, they've removed the side-effect, and that's why you're not getting the ordering you want, because you were relying on that side-effect rather than explicitly stating the order you wanted.

  • What difference between weblogic 9.x,10.x and 11.x?

    can any body tell me
    what difference between weblogic 9.x,10.x and 11.x?
    Regards,
    Anil Kumar

    for 11g, here is the list of new features
    http://download.oracle.com/docs/cd/E14571_01/web.1111/e13852/toc.htm
    for the old versions, there must be a similar doc page somewhere...I am just too lazy to search for it :o)

  • Differences between Weblogic Server and Weblogic Server Suite?

    Hi
    What is the differences between Weblogic Server and Weblogic Server Suite, beside licens costs?
    Regards
    /Martin

    WebLogic server standard edition, you get the WebLogic with no clustering.
    Clustering is available in the WebLogic Enterprise Edition.
    The WebLogic Suite also gives you Coherence and JRockit real-time
    A desciption of the various products can be found here: http://www.oracle.com/us/products/middleware/application-server/index.html

  • Difference Between Weblogic & Auqalogic

    Hi,
    I am new to application/data integration. I have a question what is the difference between Weblogic server 9.0 and aqualogic 9.0 from application/data integration point of view.
    Could you please also point out difference between Aqualogic and similar tools/products available in market

    hi,
    Please check at http://www.oracle.com/appserver/weblogic/enterprise-edition.html and in the same page click and see Oracle WebLogic Server 10g Standard Edition.

  • Important differences between oracle 10g and 11g

    Hi friends, can anyone tell me (pointwise) what are the major (and minor) differences between Oracle 10g and 11g.
    Please point me to some documents if possible.
    Thanks in advance

    The name of the link says it all: "top_features."
    In short it is Oracle's list of what they have for marketing and sales reasons designated "top features."
    It is not intended to be, and is not, a complete list of features. Often the features Oracle does not
    talk about are the most important.
    Let me give you some examples. I have never seen Oracle announce DBMS_XPLAN as a new feature
    yet you should not run an explain plan without it. Neither have I ever seen Oracle announce the new
    NO_DATA_NEEDED predefined exception. I have listed literally hundreds of new features you will not
    find in Oracle's new features docs.
    I did a presentation at OpenWorld this year as part of the unconference titled "New Features in
    Database 11gR2 that Oracle will not announce." It was easy to prepare a one hour presentation with
    little fear of being proved incorrect. As I turned out only one of the features I presented was mentioned
    by Oracle.
    You can find the presentation slides here:
    http://www.morganslibrary.org/pres/oow09_ucnf.pdf

  • Difference between NetWeaver 2004 and NetWeaver 7.0 or 7.1

    I am little confused and curious to know the recent changes happening in SAP.
    Can you please tell me the differences between NetWeaver 2004 and NetWeaver 7.0 or 7.1
    NetWeaver 2004 is named because SAP has released it in 2004
    and then we have XI 3.0, XI.7.0(that is PI right) , EP6.0 etc as individual components have different versions released in NewtWeaver suite.
    But what is this NetWeaver 7.0.
    We have EE5 or ECC6 and WebAs 6.4 or GUI 6.4 or recently GUI 7.o or WebAs 7.0.
    How does all these differe, is individual component of NetWeaver upgraded with higher versions or total NetWever is upgraded with a higher version.
    Can any one please tell me the exact difference between versions.
    If some one has ECC6 installed in their environment does it mean that they have Netwaver components like XI, EP, MDM.. etc are installed or its only R/3, BI etc...
    How it works exactly?
    Thanks,
    Kiran.

    Pretty much everything is explained in here:
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/706005a3-3bd6-2910-91ae-a2016239bdcf">SAP NetWeaver Process Integration 7.1 – Overview of New Capabilities</a>
    I think there's a weblog with a concise list somewhere, but I dont have the link saved.
    Hope that helps.
    James.

  • Difference between HTTP adapter and SOAP adapter

    Hi All,
      Can any one tell me abt what is the main difference between HTTP adapter and SOAP  adapter.when we'll use these eactly?
    Thanks
    pullarao.

    Hi Rao,
    Please go through the below links to understand it:
    https://www.sdn.sap.com/sdn/weblogs.sdn?blog=/pub/wlg/1442 [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    More links for SOAP Adapter:
    /people/siva.maranani/blog/2005/09/03/invoke-webservices-using-sapxi
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/fdca3f01f33e1ce10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/69/a6fb3fea9df028e10000000a1550b0/frameset.htm
    More links on HTTP adapters.
    /people/siva.maranani/blog/2005/09/15/push-data-to-mvc-architectured-application-using-xi
    /people/prasadbabu.nemalikanti3/blog/2006/02/27/collecting-and-bundling-vendor-records-from-different-multiple-interfaces-file-systempeoplesoft-and-sending-to-sap-r3-system-part-2
    Regards,
    Subhasha

  • Difference between Qualified tables and tuples.

    What is he difference between Qualified tables and tuples.
    Does MDM 7.1 also support qualified tables? which is better out of 2.

    Hi Shekhar
    Qualified tables are special tables which have Non qualifiers and Qualifiers and for a single record we can have multiple values based on NQ. To explain further- Material can have different prices based on Region of sale, Lot size. This can be modeled using a qualified table where Price varies based on combination of Sales Area and Lot size(NQs).
    To read more please refer to link- https://weblogs.sdn.sap.com/pub/wlg/3417?page=last&x-showcontent=off&x-maxdepth=0 [original link is broken] [original link is broken] [original link is broken]
    Tuple is new data type introduced in MDM 7.1, it has many plus points over Qualified table. It supports multiple nesting and can contain many different data type fields. To read more please read- Difference between TUPLE and a look up table
    Thanks
    Ravi

  • Difference between sysout log and server log???

    Hi All,
    from the long time am trying to find out the difference between sysout log and server log, can anyone please share me the info regarding that?
    Thanks.

    Server Logs
    The server log records information about events such as the startup and shutdown of servers,the deployment of new applications, or the failure of one or more subsystems. The messages include information about the time and date of the event as well as the ID of the user who initiated the event.
    Standard output logs
    In addition to writing messages to a log file, each server instance prints a subset of its messages to standard out. Usually, standard out is the shell (command prompt) in which you are running the server instance.WebLogic Server administrators and developers configure logging output and filter log messages to troubleshoot errors or to receive notification for specific events.
    Regards
    Fabian

  • Difference between Personalized url and  Vanity url

    Hi All,
    Can any one plz let me know the difference between Personalized url and Vanity url interms of Weblogic Portal ?
    thanks,
    XXXXX

    I'm not familiar with these concepts of personalized URLs and vanity URLs, but after a little bit of research it appears to pose the same issues as Search Engine Optimization as it relates to informative URLs.
    Search on this forum for Search Engine Optimization or SEO and you'll find some ideas that should be equally applicable to personalized/vanity URLs.
    Brad

  • Differences between 4.6c and 4.7ee

    Hi All,
    Can anybody please send a document which depicts the differences between 4.6c and 4.7EE?
    Please send the same to
    [email protected]
    Thanks in advance.
    Sreeharsha Singuru

    hi,
    Chek these out
    Here is the link for the same
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5b/8c3842bb58f83ae10000000a1550b0/frameset.htm
    http://service.sap.com/releasenotes
    Check this link ... this link will definitely explin u clearly the difference between the two versions...
    http://www.stonewayinc.com/clients/sap/bestoftour/presentations/SAP_BOT_2_Furlan_IBM.ppt
    See this weblog:
    /people/thomas.jung3/blog/2005/05/15/abap-46c-to-640-delta-training
    Re: R/3 Enterprise v mySAP ERP 2003 v ECC 5.0 v mySAP ERP 2004
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000497320&_SCENARIO=01100035870000000112&_OBJECT=011000358700000810532004E
    Regards,
    Santosh

  • Differences between Oracle BAM and Oracle BI and Question BAM  Data Objects

    Hi,
    I have two questions.
    1. Can someone tell me differences between Oracle BAM and Oracle BI?
    My understanding about Oracle BAM is, we use BAM to build Dashboards or Reports.
    We can also build DashBoards or reports using Oracle BI.
    I am not able to understand why Oracle has two tools for same purpose?
    Which tool is more powerful and user friendly(Oracle BI or Oracle BAM)?
    2. Every time we plan to develop Dashboard or report in BAM, we need to create BAM ADC Data Object to store Data (i.e first step is to get data from external database or application and second step is to store data in BAM ADC data object).
    My understanding is we have an extra step(i.e creating Data Object) in Oracle BAM to develop a report or DashBoard
    I am wrong pl correct me?
    Regards,
    Shanti Nagulapalli.

    Oracle 11g has many advanced features in PL/SQL over Oracle 9i.
    refer here,
    http://www.oracle.com/technetwork/database/features/manageability/9i-to-11g-real-world-customer-exper-133754.pdf
    http://www.oracle.com/global/de/upgradecommunity/artikel/upgrade11gr2_workshop2.pdf
    http://www.compuworks.com/events/view/233.pdf
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getCourseDesc?dc=D52601GC10&p_org_id=15942&lang=US
    Thanks

Maybe you are looking for

  • Personal Change Request (PCR) in MSS

    Hi All, Please help with a PDF/wiki links for configuring Personal Change Request (PCR) scenarios in MSS through ADOBE FORMS. I need to start from scratch. Thanks

  • Value attributes order in the table

    hi experts,        i want to design a table as per the client specific.all i need is order is..after creating value attributes in the context,dragging from node to view,am not getting as required by the client.i want to set the table colums as specif

  • Mendelson AS2 - Not able to receive messages- error 302 response code.

    Team , Our scenario is IDOC ( Delivery )  to  AS2 ( Mendelson ) . Not able to Receive AS2 message on mendelson tool. The tool is installed on the server . Receiving the error : Message processing failed. Cause: javax.resource.ResourceException: Messa

  • SAP and  maxdb integration

    Dear all we have our DMS server on Maxdb and our r/3 db on oracle , can we integrate with db59 and lc10 t-codes and other related maxdb t-codes so that i can manage maxdb database please assist me thanks in advance George

  • Limited tools in iMovie for iphone6?

    Hi, I just began using iMovie on my iphone 6 and was initially really excited until I realized I am missing editing tools.  All my videos I put into my movies are zoomed in to the center of the frame and are cutting the heads of people off.  Reading