Unknown state or association field with @Transformation

I have a class that uses a Transformation mapping for the IP address field. The IP address is the string dot notation in the class, but is a long integer in the database. My entity class looks like this:
@Entity
@Table(name="LOCATION_MAP")
public class LocationMap implements Serializable {
bq.      @Transformation \\          @ReadTransformer(IPAttributeTransformer.class) \\          @WriteTransformer(IPAttributeTransformer.class) \\          @Column(name="IP_ADDR") \\          protected String ipAddr; \\          ...
IPAttributeTransformer is a class that implements both org.eclipse.persistence.mappings.transformers.AttributeTransfomer and org.eclipse.persistence.mappings.transformers.FieldTransformer.
When I attempt to execute the query, "select location.ipAddr from LocationMap location", it gives me the error Error compiling the query [(select location.ipAddr from LocationMap location|http://select location.ipAddr from LocationMap location]), line 1, column 16: unknown state or association field (ipAddr) of class (com.example.LocationMap).
If I comment out the @Transformation, @ReadTransformer, and @WriteTransformer annotations, then I don't get the error, but of course I also don't get the transformed IP address.
This mapping worked with TopLink 10g and the XML descriptor file, but I am trying to migrate to 11g and JPA with annotations.
Josh Davis
Edited by: user603300 on Mar 12, 2009 12:22 PM, forum software tried to turn square brackets into URL's.

Hello Ryan,
The example I have does the following:
@ReadTransformer(method="buildNormalHours")
@WriteTransformers({
@WriteTransformer(method="getStartTime", column=@Column(name="START_TIME")),
@WriteTransformer(method="getEndTime", column=@Column(name="END_TIME"))
@Property(name="attributeName", value="normalHours")
protected Time[] getNormalHours() {
return normalHours;
where buildNormalHours looks like:
/** IMPORTANT: This method builds the value but does not set it.
* The mapping will set it using method or direct access as defined in the descriptor.
public Time[] buildNormalHours(Record row, Session session) {
Time[] hours = new Time[2];
/** This conversion allows for the database type not to match, i.e. may be a Timestamp or String. */
hours[0] = (Time) session.getDatasourcePlatform().convertObject(row.get("START_TIME"), java.sql.Time.class);
hours[1] = (Time) session.getDatasourcePlatform().convertObject(row.get("END_TIME"), java.sql.Time.class);
return hours;
Another uses a transformer class for the read:
@ReadTransformer(transformerClass=org.eclipse.persistence.testing.models.jpa.advanced.AdvancedReadTransformer.class)
which extends the org.eclipse.persistence.mappings.transformers.AttributeTransformer class and implements a buildAttributeValue method.
Hope this helps,
Chris

Similar Messages

  • Unknown state or association field

    Hi,
    I have a table "client" that has many "request", both have an id attribute that´s the primary key. I need to query the request of a type that belong to a certain type of client. In the Request entity I have the following named query:
    @NamedQuery(name="Request.findByTypeAndClient", query="Select r from Request where r.type = :type and r.client.clientType= :clientType")
    The app server starts fine, but when I try just get to the index page I get the following error:
    javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Can't instantiate class: 'com.app.web.backing.Index'.. class com.app.web.backing.Index : javax.ejb.EJBException:
    Exception Description: Unknown state or association field [clientType] of class [com.app.entity.Request].; nested exception is: Exception [TOPLINK-8030] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EJBQLException
    Exception Description: Unknown state or association field [clientType] of class [com.app.entity.Request].
         at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:190)
    Caused by: javax.ejb.EJBException: Exception Description: Unknown state or association field [clientType] of class [com.app.entity.Request].; nested exception is: Exception [TOPLINK-8030] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EJBQLException
    Exception Description: *Unknown state or association field [clientType] of class [com.app.entity.Request].*
    I've made sure I don't even use that query at the index page.
    Why does it happen and how could I fix it?
    I'm using jdev 10.1.3
    Thanks in advance

    That could be a hint...
    The Client entity has a list of Requests, and the Request entity keeps a reference to the Client it belongs to. Since what I'm trying to list are the requests, and not the clients, I was expecting I could use the Client reference in the Request entity to make the query. Isn't it possible?

  • Unknown state or association field exception

    I meet the above exception on my project, but not know where my problem lies. Please help. Thank you.
    Here is the exception message:
    Exception Description: Unknown state or association field [projectNoSub] of class [database.SfcWip].
    Here is the entity class:
    @Entity
    @Table(name = "SFC_WIP")
    @NamedQueries( {
    @NamedQuery(name = "SfcWip.findByProjectNoSub", query = "SELECT s FROM SfcWip s WHERE s.sfcWipPK.projectNoSub = :projectNoSub"),
    @NamedQuery(name = "SfcWip.findByPcbPartNo", query = "SELECT s FROM SfcWip s WHERE s.sfcWipPK.pcbPartNo = :pcbPartNo"),
    @NamedQuery(name = "SfcWip.findByPcbQty", query = "SELECT s FROM SfcWip s WHERE s.pcbQty = :pcbQty"),
    @NamedQuery(name = "SfcWip.findByFlowId", query = "SELECT s FROM SfcWip s WHERE s.flowId = :flowId"),
    @NamedQuery(name = "SfcWip.findByStatus", query = "SELECT s FROM SfcWip s WHERE s.status = :status"),
    @NamedQuery(name = "SfcWip.findByRemarks", query = "SELECT s FROM SfcWip s WHERE s.remarks = :remarks")
    public class SfcWip implements Serializable {
    * EmbeddedId primary key field
    @EmbeddedId
    protected SfcWipPK sfcWipPK;
    @Column(name = "PCB_QTY")
    private BigDecimal pcbQty;
    @Column(name = "FLOW_ID")
    private String flowId;
    @Column(name = "STATUS")
    private String status;
    @Column(name = "REMARKS")
    private String remarks;
    @OneToMany(cascade = CascadeType.ALL, mappedBy = "sfcWip")
    private Collection<SfcWiptran> sfcWiptranCollection;
    /** Creates a new instance of SfcWip */
    public SfcWip() {
    public SfcWip(SfcWipPK sfcWipPK) {
    this.sfcWipPK = sfcWipPK;
    public SfcWip(String pcbPartNo, String projectNoSub) {
    this.sfcWipPK = new SfcWipPK(pcbPartNo, projectNoSub);
    public SfcWipPK getSfcWipPK() {
    return this.sfcWipPK;
    public void setSfcWipPK(SfcWipPK sfcWipPK) {
    this.sfcWipPK = sfcWipPK;
    public BigDecimal getPcbQty() {
    return this.pcbQty;
    public void setPcbQty(BigDecimal pcbQty) {
    this.pcbQty = pcbQty;
    public String getFlowId() {
    return this.flowId;
    public void setFlowId(String flowId) {
    this.flowId = flowId;
    public String getStatus() {
    return this.status;
    public void setStatus(String status) {
    this.status = status;
    public String getRemarks() {
    return this.remarks;
    public void setRemarks(String remarks) {
    this.remarks = remarks;
    public Collection<SfcWiptran> getSfcWiptranCollection() {
    return this.sfcWiptranCollection;
    public void setSfcWiptranCollection(Collection<SfcWiptran> sfcWiptranCollection) {
    this.sfcWiptranCollection = sfcWiptranCollection;
    @Override
    public int hashCode() {
    int hash = 0;
    hash += (this.sfcWipPK != null ? this.sfcWipPK.hashCode() : 0);
    return hash;
    @Override
    public boolean equals(Object object) {
    // TODO: Warning - this method won't work in the case the id fields are not set
    if (!(object instanceof SfcWip)) {
    return false;
    SfcWip other = (SfcWip)object;
    if (this.sfcWipPK != other.sfcWipPK && (this.sfcWipPK == null || !this.sfcWipPK.equals(other.sfcWipPK))) return false;
    return true;
    @Override
    public String toString() {
    return "database.SfcWip[sfcWipPK=" + sfcWipPK + "]";
    @Embeddable
    public class SfcWipPK implements Serializable {
    @Column(name = "PROJECT_NO_SUB", nullable = false)
    private String projectNoSub;
    @Column(name = "PCB_PART_NO", nullable = false)
    private String pcbPartNo;
    /** Creates a new instance of SfcWipPK */
    public SfcWipPK() {
    public SfcWipPK(String pcbPartNo, String projectNoSub) {
    this.pcbPartNo = pcbPartNo;
    this.projectNoSub = projectNoSub;
    public String getProjectNoSub() {
    return this.projectNoSub;
    public void setProjectNoSub(String projectNoSub) {
    this.projectNoSub = projectNoSub;
    public String getPcbPartNo() {
    return this.pcbPartNo;
    public void setPcbPartNo(String pcbPartNo) {
    this.pcbPartNo = pcbPartNo;
    @Override
    public int hashCode() {
    int hash = 0;
    hash += (this.pcbPartNo != null ? this.pcbPartNo.hashCode() : 0);
    hash += (this.projectNoSub != null ? this.projectNoSub.hashCode() : 0);
    return hash;
    @Override
    public boolean equals(Object object) {
    // TODO: Warning - this method won't work in the case the id fields are not set
    if (!(object instanceof SfcWipPK)) {
    return false;
    SfcWipPK other = (SfcWipPK)object;
    if (this.pcbPartNo != other.pcbPartNo && (this.pcbPartNo == null || !this.pcbPartNo.equals(other.pcbPartNo))) return false;
    if (this.projectNoSub != other.projectNoSub && (this.projectNoSub == null || !this.projectNoSub.equals(other.projectNoSub))) return false;
    return true;
    @Override
    public String toString() {
    return "database.SfcWipPK[pcbPartNo=" + pcbPartNo + ", projectNoSub=" + projectNoSub + "]";
    }

    The problem lies in the NamedQuery that I found in the end.

  • Query on field of embedded object - "Unknown state or association"

    I'm trying to define a query which selects entities on the basis of a field nested in an embedded field of the entity class.
    The query looks like:
    select inv from Invoice inv where inv.weekNo.year = :year AND inv.weekNo.weekNo = :week AND
    inv.member.id = :memberCode
    where:
        @Embedded
        public BusinessDate getWeekNo() {And the BusinessDate class has a year and weekNo field defined for persistence.
    The result is :
    Exception Description: Unknown state or association field [year] of class [com.cc.ei.model.data.BusinessDate].
    Hibernate compiles this query OK but toplink rejects it.
    What I'd like to do is put this under the Member entity as a filtered query (I need Invoices for a specific week for a given member) but there's no @Filter in the javax.persistence stuff, that I can find.

    Toplink essentials.
    The year attribute is simply an integer field, mapped to a "YEAR_NUMBER" column.
    The @Filter I'm talking about is an extra facility in Hibernate annotations (outside of the javax.persistence stuff). The idea is that when you've got a one-to-many relationship you don't always want every child record, in this case, for example, I want the invoices under a Member limited to a specific business week (matching week number and year).
    It's not very elegant to have to, effectively, ignore the existing relationship and use a stand-alone Query.
    As to the original problem I've concluded the best way is probably to put the year and week number fields in the Invoice entity separately, and build my BusinessDate object from them. Using BuisnessDate as an embeddable would have been more elegant, but it's not the end of the world.

  • Error: unknown state or association

    hi:
    I want to call a jpql sate ""select model from Webusercontact model where model.weblogon = :firstParam", I don't think there is the syntax error for the statement, but it allways displays: " Error compiling the query [select model from Webusercontact model where model.weblogon = :firstParam], line 1, column 52: unknown state or association field [weblogon] of class".
    I am new for JPA, could I get any help?
    I use myeclipse, the class Webusercontact is built by system, it also creates the classes: WebusercontactId, WebusercontactDAO, IWebusercontact, AbstractWebusercontact and EntityManagerHelper.

    "weblogon" must be the variable or property name for the class (not the database column name). Perhaps include your class.
    -- James : http://www.eclipselink.org

  • The field "GLTPC" is unknown, but there is a field with the similar name*

    Hi all
    When i am running the report painter reports in SAP
    i am getting this error .
    Syntax error in program    SAPFGRWG
    in include                  FGRWGE60
    in line                      19
    Last changed by            SAP
    Author                     SAP
    The field "GLTPC" is unknown, but there is a field with the similar name
    "GLTPC".*
    Please help me whenever
    Regards,
    suchithra
    Edited by: Rob Burbank on May 22, 2009 9:00 AM

    Hi All
    All 8A group Report painter reports i.e GLPCt table Reports are not executed properly
    Can you please help me out
    Regards,
    suchithra

  • Data association with transformation causes ORABPEL-75003

    Hi,
    I have a BPM process (11g) with a Service task.
    I have configured a data association using a transformation for the output.
    When I run the process I get this error:
    Exception: java.security.PrivilegedActionException: ORABPEL-75003
    Runtime error in XML Transformation.
    Runtime error in transformation. XSL filename is xsl/personenCollection_to_resultaatProcDO.xsl. Source node name is personenCollection
    The transformation file or source nodes may be incorrect.
    Verify that the XSL file is correct and source inputs are of correct type as used in XSL file.
    I am confused by this PrivilegedActionException, which suggests some security problem, while the error text suggests there might be a problem with my XSLT.
    Anyone any idea where to look?
    I can not see XML payloads in Fusion Middleware Control 11g...
    Groeten,
    HJH

    Although I have not yet been able to prove it, I think that the problem is in the filename of the XSL file.
    I've had the same issue if my filename:
    1. Contained an ampersand (&)
    2. Contained more than 1 underscore (_)
    I thnk that the length of the filename may also be an issue...
    This doesn't seem to be a problem in SOA, only BPM.

  • How associating an XMLSchema to an XMLType Field with the database model ?

    How can I precise the XMLSchema to an XMLType Field with the database model ?
    I know how to do it in a SQL Syntax :
    CREATE TABLE xwarehouses (
    warehouse_id NUMBER,
    warehouse_spec XMLTYPE)
    XMLTYPE warehouse_spec STORE AS OBJECT RELATIONAL
    XMLSCHEMA "http://www.oracle.com/xwarehouses.xsd"
    ELEMENT "Warehouse";
    , but we have decided to generate the script with the Jdeveloper database modeler tools, and we don't how to precise this with using this tools ?
    Anyone could help me ?

    I'm not sure that it answers your question but under the tools menu there is an option called register schema with XDB.

  • Weblogic servers - Unknown state - Coherence error - OutOfMemory

    Dear members,
    Weblogic  servers are going to unknown state after the failure of ORA-OSB-Deployments(which is used by Oracle Coherence) and OutOfMemory exception.
    Server version - 10.3.6.0
    Coherence Version - Oracle Coherence 3.7.1.1
    Scenario - While retrieving the value from coherence cache via sb protocol.
    Error Stack
    com.bea.wli.sb.service.resultcache.ResultCacheException: An unexpected exception was thrown while using the result cache: java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED) The exception message should provide more detail.
        java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED)
                at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.waitAcceptingClients(Service.CDB:12)
                at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:9)
                at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:11)
                at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$BinaryMap.get(PartitionedCache.CDB:26)
                at com.tangosol.util.ConverterCollections$ConverterMap.get(ConverterCollections.java:1655)
                at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ViewMap.get(PartitionedCache.CDB:1)
                at com.tangosol.coherence.component.util.SafeNamedCache.get(SafeNamedCache.CDB:1)
                at com.bea.alsb.coherence.impl.CoherenceCache.get(CoherenceCache.java:83)
                at com.bea.wli.sb.service.resultcache.ResultCache.get(ResultCache.java:201)
                at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.checkCache(ServiceResultCacheImpl.java:148)
                at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.processRequest(ServiceResultCacheImpl.java:68)
                at com.bea.wli.sb.pipeline.PipelineContextImpl.doDispatchCachedResponse(PipelineContextImpl.java:730)
                at com.bea.wli.sb.pipeline.PipelineContextImpl.doDispatch(PipelineContextImpl.java:611)
                at com.bea.wli.sb.pipeline.PipelineContextImpl.dispatchSync(PipelineContextImpl.java:560)
                at stages.transform.runtime.WsCalloutRuntimeStep$WsCalloutDispatcher.dispatch(WsCalloutRuntimeStep.java:1391)
                at stages.transform.runtime.WsCalloutRuntimeStep.processMessage(WsCalloutRuntimeStep.java:236)
                at com.bea.wli.sb.stages.StageMetadataImpl$WrapperRuntimeStep.processMessage(StageMetadataImpl.java:346)
                at com.bea.wli.sb.pipeline.PipelineStage.processMessage(PipelineStage.java:84)
                at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
                at com.bea.wli.sb.pipeline.Pipeline.processMessage(Pipeline.java:141)
                at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
                at com.bea.wli.sb.pipeline.PipelineNode.doRequest(PipelineNode.java:55)
                at com.bea.wli.sb.pipeline.Node.processMessage(Node.java:67)
        Caused By: java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED)
                at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.waitAcceptingClients(Service.CDB:12)
                at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:9)
                at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:11)
                at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$BinaryMap.get(PartitionedCache.CDB:26)
                at com.tangosol.util.ConverterCollections$ConverterMap.get(ConverterCollections.java:1655)
        <Notice> <Diagnostics> <BEA-320068> <Watch 'UncheckedException' with severity 'Notice' on server 'SERVER_NAME' has triggered at 25-Mar-2015 14:04:50 o'clock GMT. Notification details:
        WatchRuleType: Log
        WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'WL-101020') OR (MSGID = 'WL-101017') OR (MSGID = 'WL-000802') OR (MSGID = 'BEA-101020') OR (MSGID = 'BEA-101017') OR (MSGID = 'BEA-000802'))
        WatchData: DATE = 25-Mar-2015 14:03:55 o'clock GMT SERVER = SERVER_NAME MESSAGE = ExecuteRequest failed
         java.lang.OutOfMemoryError: allocLargeObjectOrArray: [B, size 4K.
        java.lang.OutOfMemoryError: allocLargeObjectOrArray: [B, size 4K
                at weblogic.utils.io.Chunk.<init>(Chunk.java:318)
                at weblogic.utils.io.Chunk.getChunk(Chunk.java:153)
                at weblogic.utils.io.ChunkedOutputStream.<init>(ChunkedOutputStream.java:28)
                at weblogic.utils.io.ChunkedDataOutputStream.<init>(ChunkedDataOutputStream.java:15)
                at weblogic.servlet.internal.ResponseHeaders$1.<init>(ResponseHeaders.java:397)
                at weblogic.servlet.internal.ResponseHeaders.writeHeaders(ResponseHeaders.java:397)
                at weblogic.servlet.internal.ServletResponseImpl.writeHeaders(ServletResponseImpl.java:1288)
                at weblogic.servlet.internal.ServletOutputStreamImpl.sendHeaders(ServletOutputStreamImpl.java:281)
                at weblogic.servlet.internal.ServletOutputStreamImpl.flush(ServletOutputStreamImpl.java:118)
                at weblogic.servlet.internal.ServletOutputStreamImpl.commit(ServletOutputStreamImpl.java:491)
                at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1531)
                at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1498)
                at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
                at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Kindly help
    Regards
    Ram

    Sri - Thanks for your response.
    Please find below the JVM memory setting of the managed server where the OSB application is deployed
                   -Xms:2048m -Xmx:2048m -Xns:700m -Xgc:gencon -XX:+UseNewHashFunction
    I don't think there is any problem with the JVM settings as it is working in other domains. PFB full stack trace
    <25-Mar-2015 13:36:20 o'clock GMT> <Error> <WebLogicServer> <BEA-000337> <[STUCK] ExecuteThread: '248' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "633" seconds working on the request "Workmanager: weblogic.kernel.Default, Version: 1, Scheduled=false, Started=true, Started time: 633240 ms
    ", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
    Thread-819 "[STUCK] ExecuteThread: '248' for queue: 'weblogic.kernel.Default (self-tuning)'" <alive, suspended, parked, priority=1, DAEMON> {
        java.util.concurrent.locks.LockSupport.park(LockSupport.java:154)
        java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:811)
        java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireSharedInterruptibly(AbstractQueuedSynchronizer.java:957)
        java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1278)
        java.util.concurrent.Semaphore.acquire(Semaphore.java:286)
        com.bea.wli.sb.transports.sb.bean.SBDispatcherBean.invoke(SBDispatcherBean.java:118)
        com.bea.wli.sb.transports.sb.bean.SBDispatcherBean.invokeNoTxWithImmutable(SBDispatcherBean.java:518)
        com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl.__WL_invoke(Unknown Source)
        weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:21)
        com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl.invokeNoTxWithImmutable(Unknown Source)
        com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl_WLSkel.invoke(Unknown Source)
        weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:136)
        weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:338)
        weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:237)
        com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl_1036_WLStub.invokeNoTxWithImmutable(Unknown Source)
        com.bea.wli.sb.transports.client.impl.SBClientConnection.invoke(SBClientConnection.java:152)
        com.bea.wli.sb.transports.sb.SBOutboundConnection.invoke(SBOutboundConnection.java:159)
        com.bea.wli.sb.transports.client.impl.SBConnectionBase.send(SBConnectionBase.java:67)
        com.bea.wli.sb.transports.sb.SBOutboundMessageContext$SBInvokeHelper$1.run(SBOutboundMessageContext.java:567)
        weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:350)
        weblogic.security.service.SecurityManager.runAs(SecurityManager.java:142)
        weblogic.security.Security.runAs(Security.java:60)
        com.bea.wli.sb.transports.sb.SBOutboundMessageContext$SBInvokeHelper.invoke(SBOutboundMessageContext.java:583)
        com.bea.wli.sb.transports.sb.SBOutboundMessageContext.send(SBOutboundMessageContext.java:178)
        com.bea.wli.sb.transports.sb.SBTransportProvider.sendMessageAsync(SBTransportProvider.java:1017)
        sun.reflect.GeneratedMethodAccessor29293.invoke(Unknown Source)
        sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        java.lang.reflect.Method.invoke(Method.java:575)
        com.bea.wli.sb.transports.Util$1.invoke(Util.java:57)
        com.sun.proxy.$Proxy127.sendMessageAsync(Unknown Source)
        com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageAsync(LoadBalanceFailoverListener.java:135)
        com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToServiceAsync(LoadBalanceFailoverListener.java:477)
        com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToService(LoadBalanceFailoverListener.java:444)
        com.bea.wli.sb.transports.TransportManagerImpl.sendMessageToService(TransportManagerImpl.java:528)
        com.bea.wli.sb.transports.TransportManagerImpl.sendMessageAsync(TransportManagerImpl.java:432)
        com.bea.alsb.flow.messaging.dispatcher.servicebus.TransportDispatcherDelegate.send(TransportDispatcherDelegate.java:54)
        com.bea.alsb.flow.messaging.dispatcher.servicebus.TransactionalDispatcherDelegate.send(TransactionalDispatcherDelegate.java:47)
        com.bea.alsb.flow.messaging.dispatcher.servicebus.ResultCacheDispatcherDelegate.send(ResultCacheDispatcherDelegate.java:47)
        com.bea.alsb.flow.messaging.dispatcher.ServiceBusDispatcherHandler.send(ServiceBusDispatcherHandler.java:80)
        com.bea.bpel.services.messaging.OutboundDispatcherServiceImpl.send(OutboundDispatcherServiceImpl.java:72)
        com.bea.bpel.internal.dispatcher.OutboundDispatcherImpl.dispatch(OutboundDispatcherImpl.java:83)
        com.bea.bpel.interpreter.internal.instruction.messaging.InvokeRequest.enter(InvokeRequest.java:63)
        com.bea.bpel.interpreter.internal.process.ProcessNodeImpl.enter(ProcessNodeImpl.java:181)
        com.bea.bpel.interpreter.internal.Interpreter.interpret(Interpreter.java:141)
        com.bea.bpel.interpreter.internal.Interpreter.invoke(Interpreter.java:79)
        com.bea.bpel.internal.dispatcher.EngineManagerImpl.dispatch(EngineManagerImpl.java:56)
        com.bea.bpel.internal.dispatcher.EngineManagerImpl.dispatch(EngineManagerImpl.java:44)
        com.bea.bpel.internal.dispatcher.SchedulerServiceContextImpl.fireEventJobScheduled(SchedulerServiceContextImpl.java:79)
        com.bea.bpel.internal.dispatcher.SchedulerServiceContextImpl.fireEvent(SchedulerServiceContextImpl.java:65)
        com.bea.alsb.flow.scheduler.SchedulerServiceImpl$1.run(SchedulerServiceImpl.java:33)
        weblogic.work.ContextWrap.run(ContextWrap.java:39)
        com.bea.alsb.platform.weblogic.WlsWorkManagerServiceImpl$WorkAdapter.run(WlsWorkManagerServiceImpl.java:152)
        weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
        weblogic.work.ExecuteThread.execute(ExecuteThread.java:250)
        weblogic.work.ExecuteThread.run(ExecuteThread.java:213)
    >
    <25-Mar-2015 13:38:13 o'clock GMT> <Error> <Socket> <BEA-000405> <Uncaught Throwable in processSockets
    java.lang.OutOfMemoryError: allocLargeObjectOrArray: [B, size 4K.
    java.lang.OutOfMemoryError: allocLargeObjectOrArray: [B, size 4K
            at weblogic.utils.io.Chunk.<init>(Chunk.java:318)
            at weblogic.utils.io.Chunk.getChunk(Chunk.java:153)
            at weblogic.servlet.internal.ChunkOutput.<init>(ChunkOutput.java:114)
            at weblogic.servlet.internal.ChunkOutput.create(ChunkOutput.java:160)
            at weblogic.servlet.internal.ServletOutputStreamImpl.<init>(ServletOutputStreamImpl.java:102)
            Truncated. see log file for complete stacktrace
    >
    <25-Mar-2015 13:38:36 o'clock GMT> <Error> <OSB Transform> <BEA-382515> <Callout to java method "public static final void com.bt.util.logging.E2EStaticTransaction.startInboundCall(com.bt.util.logging.E2ETransaction)" resulted in exception: null
    java.lang.reflect.InvocationTargetException
            at sun.reflect.GeneratedMethodAccessor180625.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at stages.transform.runtime.JavaCalloutRuntimeStep$1.run(JavaCalloutRuntimeStep.java:183)
            at stages.transform.runtime.JavaCalloutRuntimeStep.processMessage(JavaCalloutRuntimeStep.java:205)
            Truncated. see log file for complete stacktrace
    Caused By: java.lang.OutOfMemoryError: allocLargeObjectOrArray: [C, size 2224
            at com.bt.util.logging.TextFileLogDriver.log(TextFileLogDriver.java:539)
            at com.bt.util.logging.LogDirector.logAsync(LogDirector.java:143)
            at com.bt.util.logging.LogDirector.log(LogDirector.java:79)
            at com.bt.util.logging.LogManager.log(LogManager.java:363)
            at com.bt.util.logging.MessagesBundle.log(MessagesBundle.java:69)
            Truncated. see log file for complete stacktrace
    >
    <25-Mar-2015 13:46:44 o'clock GMT> <Warning> <OSB Kernel> <BEA-398300> <Checking result cache for service BusinessService CoherenceCache caused an exception:
    com.bea.wli.sb.service.resultcache.ResultCacheException: An unexpected exception was thrown while using the result cache: java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED) The exception message should provide more detail.
    java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.waitAcceptingClients(Service.CDB:12)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:9)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:11)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$BinaryMap.get(PartitionedCache.CDB:26)
            at com.tangosol.util.ConverterCollections$ConverterMap.get(ConverterCollections.java:1655)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ViewMap.get(PartitionedCache.CDB:1)
            at com.tangosol.coherence.component.util.SafeNamedCache.get(SafeNamedCache.CDB:1)
            at com.bea.alsb.coherence.impl.CoherenceCache.get(CoherenceCache.java:83)
            at com.bea.wli.sb.service.resultcache.ResultCache.get(ResultCache.java:201)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.checkCache(ServiceResultCacheImpl.java:148)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.processRequest(ServiceResultCacheImpl.java:68)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.doDispatchCachedResponse(PipelineContextImpl.java:730)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.doDispatch(PipelineContextImpl.java:611)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.dispatchSync(PipelineContextImpl.java:560)
            at stages.transform.runtime.WsCalloutRuntimeStep$WsCalloutDispatcher.dispatch(WsCalloutRuntimeStep.java:1391)
            at stages.transform.runtime.WsCalloutRuntimeStep.processMessage(WsCalloutRuntimeStep.java:236)
            at com.bea.wli.sb.stages.StageMetadataImpl$WrapperRuntimeStep.processMessage(StageMetadataImpl.java:346)
            at com.bea.wli.sb.pipeline.PipelineStage.processMessage(PipelineStage.java:84)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.Pipeline.processMessage(Pipeline.java:141)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.PipelineNode.doRequest(PipelineNode.java:55)
            at com.bea.wli.sb.pipeline.Node.processMessage(Node.java:67)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.Router.processMessage(Router.java:214)
            at com.bea.wli.sb.pipeline.MessageProcessor.processRequest(MessageProcessor.java:101)
            at com.bea.wli.sb.pipeline.RouterManager$1.run(RouterManager.java:597)
            at com.bea.wli.sb.pipeline.RouterManager$1.run(RouterManager.java:595)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at com.bea.wli.sb.security.WLSSecurityContextService.runAs(WLSSecurityContextService.java:55)
            at com.bea.wli.sb.pipeline.RouterManager.processMessage(RouterManager.java:594)
            at com.bea.wli.sb.transports.TransportManagerImpl.receiveMessage(TransportManagerImpl.java:398)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean$SBRequestTask.run(SBDispatcherBean.java:822)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean.invoke(SBDispatcherBean.java:282)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean.invokeNoTxWithImmutable(SBDispatcherBean.java:522)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl.__WL_invoke(Unknown Source)
            at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl.invokeNoTxWithImmutable(Unknown Source)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl_WLSkel.invoke(Unknown Source)
            at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
            at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
            at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl_1036_WLStub.invokeNoTxWithImmutable(Unknown Source)
            at com.bea.wli.sb.transports.client.impl.SBClientConnection.invoke(SBClientConnection.java:169)
            at com.bea.wli.sb.transports.sb.SBOutboundConnection.invoke(SBOutboundConnection.java:165)
            at com.bea.wli.sb.transports.client.impl.SBConnectionBase.send(SBConnectionBase.java:81)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext$SBInvokeHelper$1.run(SBOutboundMessageContext.java:567)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at weblogic.security.Security.runAs(Security.java:61)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext$SBInvokeHelper.invoke(SBOutboundMessageContext.java:606)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext.send(SBOutboundMessageContext.java:266)
            at com.bea.wli.sb.transports.sb.SBTransportProvider.sendMessageAsync(SBTransportProvider.java:1026)
            at sun.reflect.GeneratedMethodAccessor29293.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.wli.sb.transports.Util$1.invoke(Util.java:83)
            at com.sun.proxy.$Proxy127.sendMessageAsync(Unknown Source)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageAsync(LoadBalanceFailoverListener.java:148)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToServiceAsync(LoadBalanceFailoverListener.java:510)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToService(LoadBalanceFailoverListener.java:445)
            at com.bea.wli.sb.transports.TransportManagerImpl.sendMessageToService(TransportManagerImpl.java:582)
            at com.bea.wli.sb.transports.TransportManagerImpl.sendMessageAsync(TransportManagerImpl.java:449)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.TransportDispatcherDelegate.send(TransportDispatcherDelegate.java:66)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.TransactionalDispatcherDelegate.send(TransactionalDispatcherDelegate.java:51)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.ResultCacheDispatcherDelegate.send(ResultCacheDispatcherDelegate.java:50)
            at com.bea.alsb.flow.messaging.dispatcher.ServiceBusDispatcherHandler.send(ServiceBusDispatcherHandler.java:93)
            at com.bea.bpel.services.messaging.OutboundDispatcherServiceImpl.send(OutboundDispatcherServiceImpl.java:73)
            at com.bea.bpel.internal.dispatcher.OutboundDispatcherImpl.dispatch(OutboundDispatcherImpl.java:91)
            at com.bea.bpel.interpreter.internal.instruction.messaging.InvokeRequest.enter(InvokeRequest.java:90)
            at com.bea.bpel.interpreter.internal.process.ProcessNodeImpl.enter(ProcessNodeImpl.java:181)
            at com.bea.bpel.interpreter.internal.Interpreter.interpret(Interpreter.java:155)
            at com.bea.bpel.interpreter.internal.Interpreter.invoke(Interpreter.java:87)
            at com.bea.bpel.internal.dispatcher.EngineManagerImpl.dispatch(EngineManagerImpl.java:66)
            at com.bea.bpel.internal.dispatcher.EngineManagerImpl.dispatch(EngineManagerImpl.java:44)
            at com.bea.bpel.internal.dispatcher.SchedulerServiceContextImpl.fireEventJobScheduled(SchedulerServiceContextImpl.java:87)
            at com.bea.bpel.internal.dispatcher.SchedulerServiceContextImpl.fireEvent(SchedulerServiceContextImpl.java:68)
            at com.bea.alsb.flow.scheduler.SchedulerServiceImpl$1.run(SchedulerServiceImpl.java:33)
            at weblogic.work.ContextWrap.run(ContextWrap.java:41)
            at com.bea.alsb.platform.weblogic.WlsWorkManagerServiceImpl$WorkAdapter.run(WlsWorkManagerServiceImpl.java:152)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    com.bea.wli.sb.service.resultcache.ResultCacheException: An unexpected exception was thrown while using the result cache: java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED) The exception message should provide more detail.
    java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.waitAcceptingClients(Service.CDB:12)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:9)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:11)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$BinaryMap.get(PartitionedCache.CDB:26)
            at com.tangosol.util.ConverterCollections$ConverterMap.get(ConverterCollections.java:1655)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ViewMap.get(PartitionedCache.CDB:1)
            at com.tangosol.coherence.component.util.SafeNamedCache.get(SafeNamedCache.CDB:1)
            at com.bea.alsb.coherence.impl.CoherenceCache.get(CoherenceCache.java:83)
            at com.bea.wli.sb.service.resultcache.ResultCache.get(ResultCache.java:201)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.checkCache(ServiceResultCacheImpl.java:148)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.processRequest(ServiceResultCacheImpl.java:68)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.doDispatchCachedResponse(PipelineContextImpl.java:730)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.doDispatch(PipelineContextImpl.java:611)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.dispatchSync(PipelineContextImpl.java:560)
            at stages.transform.runtime.WsCalloutRuntimeStep$WsCalloutDispatcher.dispatch(WsCalloutRuntimeStep.java:1391)
            at stages.transform.runtime.WsCalloutRuntimeStep.processMessage(WsCalloutRuntimeStep.java:236)
            at com.bea.wli.sb.stages.StageMetadataImpl$WrapperRuntimeStep.processMessage(StageMetadataImpl.java:346)
            at com.bea.wli.sb.pipeline.PipelineStage.processMessage(PipelineStage.java:84)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.Pipeline.processMessage(Pipeline.java:141)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.PipelineNode.doRequest(PipelineNode.java:55)
            at com.bea.wli.sb.pipeline.Node.processMessage(Node.java:67)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.Router.processMessage(Router.java:214)
            at com.bea.wli.sb.pipeline.MessageProcessor.processRequest(MessageProcessor.java:101)
            at com.bea.wli.sb.pipeline.RouterManager$1.run(RouterManager.java:597)
            at com.bea.wli.sb.pipeline.RouterManager$1.run(RouterManager.java:595)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at com.bea.wli.sb.security.WLSSecurityContextService.runAs(WLSSecurityContextService.java:55)
            at com.bea.wli.sb.pipeline.RouterManager.processMessage(RouterManager.java:594)
            at com.bea.wli.sb.transports.TransportManagerImpl.receiveMessage(TransportManagerImpl.java:398)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean$SBRequestTask.run(SBDispatcherBean.java:822)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean.invoke(SBDispatcherBean.java:282)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean.invokeNoTxWithImmutable(SBDispatcherBean.java:522)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl.__WL_invoke(Unknown Source)
            at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl.invokeNoTxWithImmutable(Unknown Source)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl_WLSkel.invoke(Unknown Source)
            at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
            at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
            at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl_1036_WLStub.invokeNoTxWithImmutable(Unknown Source)
            at com.bea.wli.sb.transports.client.impl.SBClientConnection.invoke(SBClientConnection.java:169)
            at com.bea.wli.sb.transports.sb.SBOutboundConnection.invoke(SBOutboundConnection.java:165)
            at com.bea.wli.sb.transports.client.impl.SBConnectionBase.send(SBConnectionBase.java:81)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext$SBInvokeHelper$1.run(SBOutboundMessageContext.java:567)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at weblogic.security.Security.runAs(Security.java:61)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext$SBInvokeHelper.invoke(SBOutboundMessageContext.java:606)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext.send(SBOutboundMessageContext.java:266)
            at com.bea.wli.sb.transports.sb.SBTransportProvider.sendMessageAsync(SBTransportProvider.java:1026)
            at sun.reflect.GeneratedMethodAccessor29293.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.wli.sb.transports.Util$1.invoke(Util.java:83)
            at com.sun.proxy.$Proxy127.sendMessageAsync(Unknown Source)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageAsync(LoadBalanceFailoverListener.java:148)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToServiceAsync(LoadBalanceFailoverListener.java:510)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToService(LoadBalanceFailoverListener.java:445)
            at com.bea.wli.sb.transports.TransportManagerImpl.sendMessageToService(TransportManagerImpl.java:582)
            at com.bea.wli.sb.transports.TransportManagerImpl.sendMessageAsync(TransportManagerImpl.java:449)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.TransportDispatcherDelegate.send(TransportDispatcherDelegate.java:66)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.TransactionalDispatcherDelegate.send(TransactionalDispatcherDelegate.java:51)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.ResultCacheDispatcherDelegate.send(ResultCacheDispatcherDelegate.java:50)
            at com.bea.alsb.flow.messaging.dispatcher.ServiceBusDispatcherHandler.send(ServiceBusDispatcherHandler.java:93)
            at com.bea.bpel.services.messaging.OutboundDispatcherServiceImpl.send(OutboundDispatcherServiceImpl.java:73)
            at com.bea.bpel.internal.dispatcher.OutboundDispatcherImpl.dispatch(OutboundDispatcherImpl.java:91)
            at com.bea.bpel.interpreter.internal.instruction.messaging.InvokeRequest.enter(InvokeRequest.java:90)
            at com.bea.bpel.interpreter.internal.process.ProcessNodeImpl.enter(ProcessNodeImpl.java:181)
            at com.bea.bpel.interpreter.internal.Interpreter.interpret(Interpreter.java:155)
            at com.bea.bpel.interpreter.internal.Interpreter.invoke(Interpreter.java:87)
            at com.bea.bpel.internal.dispatcher.EngineManagerImpl.dispatch(EngineManagerImpl.java:66)
            at com.bea.bpel.internal.dispatcher.EngineManagerImpl.dispatch(EngineManagerImpl.java:44)
            at com.bea.bpel.internal.dispatcher.SchedulerServiceContextImpl.fireEventJobScheduled(SchedulerServiceContextImpl.java:87)
            at com.bea.bpel.internal.dispatcher.SchedulerServiceContextImpl.fireEvent(SchedulerServiceContextImpl.java:68)
            at com.bea.alsb.flow.scheduler.SchedulerServiceImpl$1.run(SchedulerServiceImpl.java:33)
            at weblogic.work.ContextWrap.run(ContextWrap.java:41)
            at com.bea.alsb.platform.weblogic.WlsWorkManagerServiceImpl$WorkAdapter.run(WlsWorkManagerServiceImpl.java:152)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
            at com.bea.wli.sb.service.resultcache.ResultCache.get(ResultCache.java:205)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.checkCache(ServiceResultCacheImpl.java:148)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.processRequest(ServiceResultCacheImpl.java:69)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.dispatchSync(PipelineContextImpl.java:560)
            at stages.transform.runtime.WsCalloutRuntimeStep$WsCalloutDispatcher.dispatch(WsCalloutRuntimeStep.java:1394)
            Truncated. see log file for complete stacktrace
    Caused By: java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.waitAcceptingClients(Service.CDB:12)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:9)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:11)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$BinaryMap.get(PartitionedCache.CDB:26)
            at com.tangosol.util.ConverterCollections$ConverterMap.get(ConverterCollections.java:1655)
            Truncated. see log file for complete stacktrace
    >
    <25-Mar-2015 13:47:06 o'clock GMT> <Warning> <OSB Kernel> <BEA-398300> <Checking result cache for service BusinessService CoherenceCache caused an exception:
    com.bea.wli.sb.service.resultcache.ResultCacheException: An unexpected exception was thrown while using the result cache: java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED) The exception message should provide more detail.
    java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.waitAcceptingClients(Service.CDB:12)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:9)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:11)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$BinaryMap.get(PartitionedCache.CDB:26)
            at com.tangosol.util.ConverterCollections$ConverterMap.get(ConverterCollections.java:1655)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ViewMap.get(PartitionedCache.CDB:1)
            at com.tangosol.coherence.component.util.SafeNamedCache.get(SafeNamedCache.CDB:1)
            at com.bea.alsb.coherence.impl.CoherenceCache.get(CoherenceCache.java:83)
            at com.bea.wli.sb.service.resultcache.ResultCache.get(ResultCache.java:201)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.checkCache(ServiceResultCacheImpl.java:148)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.processRequest(ServiceResultCacheImpl.java:68)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.doDispatchCachedResponse(PipelineContextImpl.java:730)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.doDispatch(PipelineContextImpl.java:611)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.dispatchSync(PipelineContextImpl.java:560)
            at stages.transform.runtime.WsCalloutRuntimeStep$WsCalloutDispatcher.dispatch(WsCalloutRuntimeStep.java:1391)
            at stages.transform.runtime.WsCalloutRuntimeStep.processMessage(WsCalloutRuntimeStep.java:236)
            at com.bea.wli.sb.stages.StageMetadataImpl$WrapperRuntimeStep.processMessage(StageMetadataImpl.java:346)
            at com.bea.wli.sb.pipeline.PipelineStage.processMessage(PipelineStage.java:84)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.Pipeline.processMessage(Pipeline.java:141)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.PipelineNode.doRequest(PipelineNode.java:55)
            at com.bea.wli.sb.pipeline.Node.processMessage(Node.java:67)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.Router.processMessage(Router.java:214)
            at com.bea.wli.sb.pipeline.MessageProcessor.processRequest(MessageProcessor.java:101)
            at com.bea.wli.sb.pipeline.RouterManager$1.run(RouterManager.java:597)
            at com.bea.wli.sb.pipeline.RouterManager$1.run(RouterManager.java:595)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at com.bea.wli.sb.security.WLSSecurityContextService.runAs(WLSSecurityContextService.java:55)
            at com.bea.wli.sb.pipeline.RouterManager.processMessage(RouterManager.java:594)
            at com.bea.wli.sb.transports.TransportManagerImpl.receiveMessage(TransportManagerImpl.java:398)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean$SBRequestTask.run(SBDispatcherBean.java:822)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean.invoke(SBDispatcherBean.java:282)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean.invokeNoTxWithImmutable(SBDispatcherBean.java:522)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl.__WL_invoke(Unknown Source)
            at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl.invokeNoTxWithImmutable(Unknown Source)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl_WLSkel.invoke(Unknown Source)
            at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
            at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
            at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl_1036_WLStub.invokeNoTxWithImmutable(Unknown Source)
            at com.bea.wli.sb.transports.client.impl.SBClientConnection.invoke(SBClientConnection.java:169)
            at com.bea.wli.sb.transports.sb.SBOutboundConnection.invoke(SBOutboundConnection.java:165)
            at com.bea.wli.sb.transports.client.impl.SBConnectionBase.send(SBConnectionBase.java:81)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext$SBInvokeHelper$1.run(SBOutboundMessageContext.java:567)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at weblogic.security.Security.runAs(Security.java:61)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext$SBInvokeHelper.invoke(SBOutboundMessageContext.java:606)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext.send(SBOutboundMessageContext.java:266)
            at com.bea.wli.sb.transports.sb.SBTransportProvider.sendMessageAsync(SBTransportProvider.java:1026)
            at sun.reflect.GeneratedMethodAccessor29293.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.wli.sb.transports.Util$1.invoke(Util.java:83)
            at com.sun.proxy.$Proxy127.sendMessageAsync(Unknown Source)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageAsync(LoadBalanceFailoverListener.java:148)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToServiceAsync(LoadBalanceFailoverListener.java:510)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToService(LoadBalanceFailoverListener.java:445)
            at com.bea.wli.sb.transports.TransportManagerImpl.sendMessageToService(TransportManagerImpl.java:582)
            at com.bea.wli.sb.transports.TransportManagerImpl.sendMessageAsync(TransportManagerImpl.java:449)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.TransportDispatcherDelegate.send(TransportDispatcherDelegate.java:66)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.TransactionalDispatcherDelegate.send(TransactionalDispatcherDelegate.java:51)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.ResultCacheDispatcherDelegate.send(ResultCacheDispatcherDelegate.java:50)
            at com.bea.alsb.flow.messaging.dispatcher.ServiceBusDispatcherHandler.send(ServiceBusDispatcherHandler.java:93)
            at com.bea.bpel.services.messaging.OutboundDispatcherServiceImpl.send(OutboundDispatcherServiceImpl.java:73)
            at com.bea.bpel.internal.dispatcher.OutboundDispatcherImpl.dispatch(OutboundDispatcherImpl.java:91)
            at com.bea.bpel.interpreter.internal.instruction.messaging.InvokeRequest.enter(InvokeRequest.java:90)
            at com.bea.bpel.interpreter.internal.process.ProcessNodeImpl.enter(ProcessNodeImpl.java:181)
            at com.bea.bpel.interpreter.internal.Interpreter.interpret(Interpreter.java:155)
            at com.bea.bpel.interpreter.internal.Interpreter.invoke(Interpreter.java:87)
            at com.bea.bpel.internal.dispatcher.EngineManagerImpl.dispatch(EngineManagerImpl.java:66)
            at com.bea.bpel.internal.dispatcher.EngineManagerImpl.dispatch(EngineManagerImpl.java:44)
            at com.bea.bpel.internal.dispatcher.SchedulerServiceContextImpl.fireEventJobScheduled(SchedulerServiceContextImpl.java:87)
            at com.bea.bpel.internal.dispatcher.SchedulerServiceContextImpl.fireEvent(SchedulerServiceContextImpl.java:68)
            at com.bea.alsb.flow.scheduler.SchedulerServiceImpl$1.run(SchedulerServiceImpl.java:33)
            at weblogic.work.ContextWrap.run(ContextWrap.java:41)
            at com.bea.alsb.platform.weblogic.WlsWorkManagerServiceImpl$WorkAdapter.run(WlsWorkManagerServiceImpl.java:152)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    com.bea.wli.sb.service.resultcache.ResultCacheException: An unexpected exception was thrown while using the result cache: java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED) The exception message should provide more detail.
    java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.waitAcceptingClients(Service.CDB:12)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:9)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:11)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$BinaryMap.get(PartitionedCache.CDB:26)
            at com.tangosol.util.ConverterCollections$ConverterMap.get(ConverterCollections.java:1655)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ViewMap.get(PartitionedCache.CDB:1)
            at com.tangosol.coherence.component.util.SafeNamedCache.get(SafeNamedCache.CDB:1)
            at com.bea.alsb.coherence.impl.CoherenceCache.get(CoherenceCache.java:83)
            at com.bea.wli.sb.service.resultcache.ResultCache.get(ResultCache.java:201)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.checkCache(ServiceResultCacheImpl.java:148)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.processRequest(ServiceResultCacheImpl.java:68)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.doDispatchCachedResponse(PipelineContextImpl.java:730)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.doDispatch(PipelineContextImpl.java:611)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.dispatchSync(PipelineContextImpl.java:560)
            at stages.transform.runtime.WsCalloutRuntimeStep$WsCalloutDispatcher.dispatch(WsCalloutRuntimeStep.java:1391)
            at stages.transform.runtime.WsCalloutRuntimeStep.processMessage(WsCalloutRuntimeStep.java:236)
            at com.bea.wli.sb.stages.StageMetadataImpl$WrapperRuntimeStep.processMessage(StageMetadataImpl.java:346)
            at com.bea.wli.sb.pipeline.PipelineStage.processMessage(PipelineStage.java:84)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.Pipeline.processMessage(Pipeline.java:141)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.PipelineNode.doRequest(PipelineNode.java:55)
            at com.bea.wli.sb.pipeline.Node.processMessage(Node.java:67)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:1095)
            at com.bea.wli.sb.pipeline.Router.processMessage(Router.java:214)
            at com.bea.wli.sb.pipeline.MessageProcessor.processRequest(MessageProcessor.java:101)
            at com.bea.wli.sb.pipeline.RouterManager$1.run(RouterManager.java:597)
            at com.bea.wli.sb.pipeline.RouterManager$1.run(RouterManager.java:595)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at com.bea.wli.sb.security.WLSSecurityContextService.runAs(WLSSecurityContextService.java:55)
            at com.bea.wli.sb.pipeline.RouterManager.processMessage(RouterManager.java:594)
            at com.bea.wli.sb.transports.TransportManagerImpl.receiveMessage(TransportManagerImpl.java:398)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean$SBRequestTask.run(SBDispatcherBean.java:822)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean.invoke(SBDispatcherBean.java:282)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcherBean.invokeNoTxWithImmutable(SBDispatcherBean.java:522)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl.__WL_invoke(Unknown Source)
            at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl.invokeNoTxWithImmutable(Unknown Source)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl_WLSkel.invoke(Unknown Source)
            at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
            at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
            at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
            at com.bea.wli.sb.transports.sb.bean.SBDispatcher_nwlqik_EOImpl_1036_WLStub.invokeNoTxWithImmutable(Unknown Source)
            at com.bea.wli.sb.transports.client.impl.SBClientConnection.invoke(SBClientConnection.java:169)
            at com.bea.wli.sb.transports.sb.SBOutboundConnection.invoke(SBOutboundConnection.java:165)
            at com.bea.wli.sb.transports.client.impl.SBConnectionBase.send(SBConnectionBase.java:81)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext$SBInvokeHelper$1.run(SBOutboundMessageContext.java:567)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at weblogic.security.Security.runAs(Security.java:61)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext$SBInvokeHelper.invoke(SBOutboundMessageContext.java:606)
            at com.bea.wli.sb.transports.sb.SBOutboundMessageContext.send(SBOutboundMessageContext.java:266)
            at com.bea.wli.sb.transports.sb.SBTransportProvider.sendMessageAsync(SBTransportProvider.java:1026)
            at sun.reflect.GeneratedMethodAccessor29293.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.wli.sb.transports.Util$1.invoke(Util.java:83)
            at com.sun.proxy.$Proxy127.sendMessageAsync(Unknown Source)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageAsync(LoadBalanceFailoverListener.java:148)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToServiceAsync(LoadBalanceFailoverListener.java:510)
            at com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToService(LoadBalanceFailoverListener.java:445)
            at com.bea.wli.sb.transports.TransportManagerImpl.sendMessageToService(TransportManagerImpl.java:582)
            at com.bea.wli.sb.transports.TransportManagerImpl.sendMessageAsync(TransportManagerImpl.java:449)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.TransportDispatcherDelegate.send(TransportDispatcherDelegate.java:66)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.TransactionalDispatcherDelegate.send(TransactionalDispatcherDelegate.java:51)
            at com.bea.alsb.flow.messaging.dispatcher.servicebus.ResultCacheDispatcherDelegate.send(ResultCacheDispatcherDelegate.java:50)
            at com.bea.alsb.flow.messaging.dispatcher.ServiceBusDispatcherHandler.send(ServiceBusDispatcherHandler.java:93)
            at com.bea.bpel.services.messaging.OutboundDispatcherServiceImpl.send(OutboundDispatcherServiceImpl.java:73)
            at com.bea.bpel.internal.dispatcher.OutboundDispatcherImpl.dispatch(OutboundDispatcherImpl.java:91)
            at com.bea.bpel.interpreter.internal.instruction.messaging.InvokeRequest.enter(InvokeRequest.java:90)
            at com.bea.bpel.interpreter.internal.process.ProcessNodeImpl.enter(ProcessNodeImpl.java:181)
            at com.bea.bpel.interpreter.internal.Interpreter.interpret(Interpreter.java:155)
            at com.bea.bpel.interpreter.internal.Interpreter.invoke(Interpreter.java:87)
            at com.bea.bpel.internal.dispatcher.EngineManagerImpl.dispatch(EngineManagerImpl.java:66)
            at com.bea.bpel.internal.dispatcher.EngineManagerImpl.dispatch(EngineManagerImpl.java:44)
            at com.bea.bpel.internal.dispatcher.SchedulerServiceContextImpl.fireEventJobScheduled(SchedulerServiceContextImpl.java:87)
            at com.bea.bpel.internal.dispatcher.SchedulerServiceContextImpl.fireEvent(SchedulerServiceContextImpl.java:68)
            at com.bea.alsb.flow.scheduler.SchedulerServiceImpl$1.run(SchedulerServiceImpl.java:33)
            at weblogic.work.ContextWrap.run(ContextWrap.java:41)
            at com.bea.alsb.platform.weblogic.WlsWorkManagerServiceImpl$WorkAdapter.run(WlsWorkManagerServiceImpl.java:152)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
            at com.bea.wli.sb.service.resultcache.ResultCache.get(ResultCache.java:205)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.checkCache(ServiceResultCacheImpl.java:148)
            at com.bea.wli.sb.service.resultcache.ServiceResultCacheImpl.processRequest(ServiceResultCacheImpl.java:69)
            at com.bea.wli.sb.pipeline.PipelineContextImpl.dispatchSync(PipelineContextImpl.java:560)
            at stages.transform.runtime.WsCalloutRuntimeStep$WsCalloutDispatcher.dispatch(WsCalloutRuntimeStep.java:1394)
            Truncated. see log file for complete stacktrace
    Caused By: java.lang.RuntimeException: Failed to start Service "ORA-OSB-deployments" (ServiceState=SERVICE_STOPPED)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.waitAcceptingClients(Service.CDB:12)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:9)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.poll(Grid.CDB:11)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$BinaryMap.get(PartitionedCache.CDB:26)
            at com.tangosol.util.ConverterCollections$ConverterMap.get(ConverterCollections.java:1655)
            Truncated. see log file for complete stacktrace
    >
    <25-Mar-2015 14:05:06 o'clock GMT> <Notice> <Diagnostics> <BEA-320068> <Watch 'UncheckedException' with severity 'Notice' on server 'SERVER_NAME' has triggered at 25-Mar-2015 14:04:50 o'clock GMT. Notification details:
    WatchRuleType: Log
    WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'WL-101020') OR (MSGID = 'WL-101017') OR (MSGID = 'WL-000802') OR (MSGID = 'BEA-101020') OR (MSGID = 'BEA-101017') OR (MSGID = 'BEA-000802'))
    WatchData: DATE = 25-Mar-2015 14:03:55 o'clock GMT SERVER = SERVER_NAME MESSAGE = ExecuteRequest failed
    java.lang.OutOfMemoryError: allocLargeObjectOrArray: [B, size 4K.
    java.lang.OutOfMemoryError: allocLargeObjectOrArray: [B, size 4K
            at weblogic.utils.io.Chunk.<init>(Chunk.java:318)
            at weblogic.utils.io.Chunk.getChunk(Chunk.java:153)
            at weblogic.utils.io.ChunkedOutputStream.<init>(ChunkedOutputStream.java:28)
            at weblogic.utils.io.ChunkedDataOutputStream.<init>(ChunkedDataOutputStream.java:15)
            at weblogic.servlet.internal.ResponseHeaders$1.<init>(ResponseHeaders.java:397)
            at weblogic.servlet.internal.ResponseHeaders.writeHeaders(ResponseHeaders.java:397)
            at weblogic.servlet.internal.ServletResponseImpl.writeHeaders(ServletResponseImpl.java:1288)
            at weblogic.servlet.internal.ServletOutputStreamImpl.sendHeaders(ServletOutputStreamImpl.java:281)
            at weblogic.servlet.internal.ServletOutputStreamImpl.flush(ServletOutputStreamImpl.java:118)
            at weblogic.servlet.internal.ServletOutputStreamImpl.commit(ServletOutputStreamImpl.java:491)
            at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1531)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1498)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    SUBSYSTEM = Kernel USERID = <WLS Kernel> SEVERITY = Error THREAD = [STUCK] ExecuteThread: '26' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-000802 MACHINE = blp10865069 TXID =  CONTEXTID = 582d5d390322c8f7:-346f60f0:14ae3e7dc81:-7ffd-0000000000897f09 TIMESTAMP = 1427292235779
    WatchAlarmType: AutomaticReset
    WatchAlarmResetPeriod: 30000
    Many thanks in advance
    Ram

  • Less source fields in transformation than in the source DSO

    Hi,
    I'm in a business content flow DSO 0GN_BP (consolidated BP) to fill master data attribut 0GN_VENDOR.
    In the transformation source fields I only have a part of the fields in the DSO.
    17 fields in DSO and only 10 in the source fields in the transformation.
    <b>How can I get all the fields of the DSO as source fields in the transformation ?</b>
    Regards,

    I've log out log in, refresh the hierarchy etc. Nothing.
    I hit the right DSO with the transformation.
    The DSO is activated as well as the infoobject inside.
    I've tried to reactivated it just to be sure ... but still missing fields in transformation.
    I've also reactivate the DSO. Run RSRT on DTP, DSO ... all green.
    I've check the structure tables of the DSO and they all got the right number of fields.
    This is really weird. I'm going through a customer message.
    Thanks for your help. I'll come back here if SAP found a solution.

  • How to update session state from form field values without submitting page?

    Hi,
    I am new to Oracle APEX. I am using Oracle Apex 4.2 on Oracle 11g release 2. The problem is that when I am entering data on a form, when I enter a value in one field and move to the next field, how can I use the value of first field in the validation procedure of next field? I know that when we enter data in fields, the session state is not updated with these values until we submit the page... right... but I have seen that if there is a control of List box type, then Apex gives an option "Action When List changes" where we can choose option to update corresponding session state field with the value of list box item, without submitting the page.
    Now my questions is why this option is only available for List box items? why not for other item types like Text box, Check box,... ? can someone please help me with this?
    (the issue with update of session state depending on page submitting, is that we need a complete network round trip from client to server in order for it. However if we can update session state variables without submitting page, then we can avoid this network traffic).
    Any help will be greatly appreciated. Thanks in advance.

    Create a dynamic action on change and run a PL/SQL process there with the following code:
    BEGIN
       NULL;
    END;Page items to submit > your item.
    This will set the session state without submitting the form.
    Further examples here:
    http://apex.oracle.com/pls/apex/f?p=31517:229
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Adding fields with data type "TIMS" to the BP transaction

    hi all,
      This  is Anil regarding the addition of fields to the BP transaction.
    here my problem is for BP transaction I could not find any BADI or screen exit  to add the fields. Even EEWB tool does not allow us to cretate the fields with data type "TIMS". so could you please suggest any other way to add these fields to BP?
    when I enter the values to the time fields in BP transaction, they must reflect in
    BUT000 table also?
    Regards,
    Anil .

    In the physical layer, Column Properties change the data type to int.
    If still problem exists, In the Business Model, write a case statement like
    case when column1=1 then 1 end
    and apply count aggregation on the new calculated column,add the column to presentation table, use that new calculated column for report.
    - Madan

  • Services in unknown state

    Hello All,
    I have a 2 node RAC cluster running on Oracle 11G on Windows 2003. Everything appears to be working fine, but I have some services in an unknown state.
    If I stop all services using CRSCTL STOP CRS on any node, all services go offline as expected and OEM shows the fact that one of the nodes (instances) is no longer available.
    If I then issue CRSCTL START CRS on any node all services start up OK except for the .INST and .DB services. Issuing the CRS_STAT -T the .INST service shows as 'online' but its state is 'unknown'. The .DB service for the database shows as 'offline'.
    The stopped DB Instance does not start up automatically. If I try to start it using SRVCTL I get a CRS-0223 'Placement' error message . To get my stopped DB Instance to startup the only way I have found is to log on to sqlplus as SYS and issue the startup command. The instance then starts up with no problems
    I'm confused as to why the above mentioned .INST and .DB services dont appear to be in a correct state yet my RAC cluster appears to function correctly. Any advice on this would be greatly appreciated .
    Thanks,
    Shaun

    I wouldn't use crsctl stop crs to stop the services, that shutdown the entire clusterware environment. Use "crs_stop -all" instead.
    As for your issue, did you check the alert log just after clusterware tries to start up the db?
    Check the alert log on the databases that are not coming up automatically. There's probably an error in there.

  • Statements in calculation fields

    Can you use sql statements in calculated fields, for instance can you use a statement like IF(GL_SEGMENT-04='401000'TO'409999'THEN SUM(GL_BALANCE_PERIOD_BAL_DB-GL_BALANCE_PERIOD_BAL_CR)
    I would think that you could use statements within calculated fields but I am having no luck.
    Thanks in advance

    You are so close, I guess. An alternative syntax you may try:
    SUM(CASE WHEN SEGMENT3 BETWEEN '401010' AND '405999' THEN PERIOD_NET_DR-PERIOD_NET_CR ELSE 0 END)
    You may get error message for not using table prefix. In that case, use the table prefix with each field. As you have seen, Discoverer takes care of the prefix when it first executes the formula. Regarding 0 balance, make sure that the sum is not zero for that range. You may also try with a bigger range. Good luck!

  • Linking/Grouping Text Fields with a Check Box Field

    Disclaimer: I know nothing about coding/scripting in Acrobat (or in any language, for that matter).
    I have 4 sets of text fields, call them A, B, C, and D. All of the fields in set A will have a value entered. There are 10 fields in set A while sets B, C, and D may have as many as 104. Sets B, C, and D will always have a one-to-one-to-one correspondence with each other (B1 is associated with C1 and D1 only and so on). My dilemma/desire is two fold:
    First:
    I want to be able to group 3 to 4 of the fields in set C if I tick a check box/radio button/whatever field type works. When the fields are grouped, I want their values to be the same within the grouping. These fields should also be ungrouped when the marker field is unchecked/deactivated. No field will ever be in any more than one group.
    Second:
    I want values for set B to equal a value of set A if there is a value entered in that B's corresponding C field.
    Please don't hesitate to point out where I can make any of this clearer.
    Thank you in advance,
    Joseph
    P.S.
    If one or both of these is not doable in Acrobat, would you please kindly point me to a program that can do this?

    Steve,
    Sorry, I referenced InDesign and this file was created in Illustrator. (I have been working with numerous files created in both InDesign and Illustrator, with numerous challenges). I do not have the native document nor Illustrator software, only Acrobat. When I previously loaded the InDesign-created pdf file(s) into Acrobat, I was unable to use the Text TouchUp Tool because I do not have the fonts on my system that were used to create the documents in InDesign, thus I am denied access to the text. With this file, created in Ilustrator; I assume because the text resides within the image created that encompasses the entire page, the Text TounchUp Tool and Object Tool have no response when I click on the page after activating the tools with a click, although the Tool Bar allows me to click on the icons to activate the functions.
    I have read elsewhere that InDesign and Illustrator files are exported as images, thus requiring either Photoshop or Illustrator to fully edit outside of the originating software. However, I was hoping that I could create interactive forms by overlaying fields with Live Cycle Designer - I did not anticipate the default setting of the check box labels being unchangeable. Sounds like I am at a dead-end with this issue??
    Linda

Maybe you are looking for

  • Stock quantity for a Z report

    Hi Experts I am looking for a report which should display the unrestricted stock of a material in a Particular Plant / storage location. They have an existing Z report for the ATP Quantity for a material taking into consideration of all Open Sales Or

  • GRC 10.0 Access request Management Audit

    Hello All, Can Anyone let me know what  Auditors Check When they Audit GRC 10.0 Access request Management (excluding Configuration). Thanks Mohammed Wasim

  • The default PDF viewer does not work

    I understand Firefox has a default PDF viewer, but it is not working on my Mac OS 10.6.8. When I click on a pdf document, nothing happens.

  • Converting an include filename prior to including

    Hi, I have several include files that have the .shtml extension in the filename. The .shtml files, however, only contain simple html. I need to use the shtml file extension because of a requirement from my host. Long story. Anyway, I use the followin

  • Relationship between Install base and functional location

    Hi , I have been trying to establish way to find realtionship between Install base ( in PM module ) and fucntional locations. I have tried everything from Debugging to SQL trace to find out this realtionship but it does not surface. I am talking abou