11gR1 Patchset 2 ~ 11.1.1.3.0 (SOA) features ..

Start your engines - here is a list of new SOA Suite 11g PS2 features (all of the below, except BPEL 2.0 are production ready and supported)

  • SOA Infra's Spring C&I implementation (based on weblogic sca for java) becomes full production.
    • Inbound / outbound EJB 2|3.0 binding for composite services
    • Transparent wsdl2java and vice versa mapping (including async callbacks) at design time and runtime, including support for SCA's "interface.java"

      Buildfile: C:\JDeveloper\11.1.1.3\jdeveloper\bin\ant-sca-compile.xml
      scac:
           [scac] Validating composite "C:\_Business\11g\samples_new\soa_samples_spring\spring-105-AsyncInterations\composite.xml"
           [scac] ### clazz: interface asyncinteractions.spring_105_asyncinterations.com.example.AsyncInteractions
           [scac] ### qname: {http://example.com/spring_105_asyncInterations/AsyncInteractions}AsyncInteractions
           [scac] ### clazz: interface asyncinteractions.spring_105_asyncinterations.com.example.AsyncInteractionsCallback
           [scac] ### qname: {http://example.com/spring_105_asyncInterations/AsyncInteractions}AsyncInteractionsCallback

  • External EJB data-binding mapping support (based on toplink's external mapping facility)
    • This allows to specify type mappings (e.g. list -> list ) without code modifications, just by adding a side file like the below into the classpath 

         xmlns:oxm="http://www.eclipse.org/eclipselink/xsds/persistence/oxm" databinding="toplink.jaxb">
       
           
       

       
          
            
              
                 
               

            

          

        

  • Additional component implementation / bindings in the designer
  • Full support for sync / async interfaces, mapping between the component's interface & callback interface and "sca:service -> bean -> sca:reference" to adhere to spring's development model and don't force developers into a BPEL' alike model
  • Audit-trail / flow trace support for new components and addition to Fusion Order Demo [partner supplier composite]
      
Full and complete support for BPEL 2.0 (runtime, seriously) ~ PREVIEW in this release
  • Additions for EM / flow trace
  • and of course ..
        xmlns:tns="http://samples.otn.com/bpel2.0/ch11.4"
        xmlns:ora="http://schemas.oracle.com/xpath/extension"
        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
      
      
        
      
      
        
        
        
      
    [..]
Reintroduction of "BPEL domains" - this time, because of the obvious [weblogic domains], we had to name them "Partitions"

  • default "partition" always exists, others can be created on demand via wlst / ant / EM

     
  • Note that partitions in the first incarnation only support grouping features, and no tuning of threads or alike (yet)
Enhancements to BPEL's transactional behavior and audit-trail (which will serve the upcoming BPM process core as well)

  • Audit trail saving can be configured

    syncLocalTransaction

    10000


    5


    10

  • Conceptually  

    • sync (same thread / local transaction)
    • aysnc (single / batched)
  • This allows us to provide a complete trail, especially in the case of rollbacks or unhandled faults - no matter what happened to the underlying "working" transaction. At this point we are also adding  "global" messages as the ones below to signal what happened with the working transaction, below is the native trace that gets rendered by the UI 



      "BPELFault" has not been caught by a catch block.






      The transaction was rolled back. The work performed for bpel instance "2" was rolled back, but the audit trail has been saved for this instance.



Unified model of checkpoints (that is dehydration points) allowing you to design idempotency w/o all my favorite (=magic) knobs (e.g. bpel.config.idempotentReply, ..)

  • was introduced, which will return the thread in order to have the engine hydrate and the instance will be continued by an engine thread later.
Fixes for transaction semantic bugs and cornercases, such as

  • Bug 9384859 - idempotent reply / invoke not working (which adds )
  • Bug 9379373 - faults not persisted when not caught. (which adds async audittrail persistence)
  • Bug 9432292 - transactions: engine rolls back over tx boundary if global retry fault is thrown (which fixes a transaction / fault propagation issue when a child process gets or creates a RuntimeException)
  • Bug 9366706 - tracking bug for [exposed] bpel transaction semantics (fixed for various scenarios around master / detail calls with rollbacks, fault handling)
Oracle Mediator

  • Support for re-sequencing (at operation level), this was a regression from 10.1.3.5 where we introduced this feature.
XML / http - get and post support on binding level

  • We introduced extensions to ws> - to enable support for xml / http support, inbound and outbound
Support for direct/>
  • This is helpful for two use-cases

    • fast, high performance, secure & transactional inbound invocation of a composite service (including a very lightweight client API)
    • the integration with the upcoming OSB 11g release, including support for async callbacks
BPMN 2.0 support (as part of BPM 11g which runs on top of 11g PS2 SOA core), including design time and runtime


  • Full editor and simulator in JDeveloper (Business Analyst and Implementation Perspective)
  • Web based (browser) customization, process portal and declarative metrics

Warning: the above is a non-exhaustive list and there are features that ship in preview mode (e.g. the BPEL 2.0 runtime) in this release.

We encourage you to test and experiment with those "preview" features, but there is no production support for those.

转载于:https://www.cnblogs.com/mengheyun/archive/2011/03/10/1979822.html

你可能感兴趣的:(11gR1 Patchset 2 ~ 11.1.1.3.0 (SOA) features ..)