Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipselink-users] L2 Cache Question

Hi Leon,
The default L2 cache (shared cache) is owned by the Server session object which is owned by the EntityManagerImpl instance. For loading the entity classes, session and descriptor customizer classes and the JPA configuration and mapping files usually some application class loader is used.
With the configuration you have described webapp1 and webapp2 should use the same objects in the L2 cache if they use the same persistence unit.

Best regards,
Reinhard

-----Original Message-----
From: eclipselink-users-request@xxxxxxxxxxx [mailto:eclipselink-users-request@xxxxxxxxxxx] 
Sent: Freitag, 4. November 2011 13:50
To: eclipselink-users@xxxxxxxxxxx
Subject: eclipselink-users Digest, Vol 51, Issue 24

Send eclipselink-users mailing list submissions to
	eclipselink-users@xxxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
	https://dev.eclipse.org/mailman/listinfo/eclipselink-users
or, via email, send a message with subject or body 'help' to
	eclipselink-users-request@xxxxxxxxxxx

You can reach the person managing the list at
	eclipselink-users-owner@xxxxxxxxxxx

When replying, please edit your Subject line so it is more specific
than "Re: Contents of eclipselink-users digest..."


Today's Topics:

   1. Lazy loading performance problem (Warren Tang)
   2. L2 Cache Question (Leon Derks)
   3. Re: Lazy loading performance problem (Leon Derks)
   4. Re: Bug 362564 - WebSphere specific
      randomisedorg.eclipse.persistence.exceptions.JPQLException	error
      on startup (Nathan Drew)


----------------------------------------------------------------------

Message: 1
Date: Fri, 04 Nov 2011 17:36:42 +0800
From: Warren Tang <warren.c.tang@xxxxxxxxx>
To: EclipseLink <eclipselink-users@xxxxxxxxxxx>
Subject: [eclipselink-users] Lazy loading performance problem
Message-ID: <4EB3B22A.4080405@xxxxxxxxx>
Content-Type: text/plain; charset="gb2312"

Hi, everybody

I have an ExamPaper entity which has many ChoiceQuestions. The questions
are lazy loaded by default (fetch=LAZY).

Now I want to get all the quesitions that belong to a specific
ExamPaper, so I use the following JPQL:

"select p.questions from ExamPaper p where p.id=:paperId";

The problem is that questions are "lazy" loaded, so there is one
"SELECT" executed for *every single* question. But I want to select them
all in one go for performance reasons. What should I do?

------------------ Code listing -----------------------------------

@Entity
public class ExamPaper {
public static final String SELECT_QUESTION_BY_PAPER = "select
p.questions from ExamPaper p where p.id=:paperId";

@Id @GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String name;
@OneToMany(fetch = FetchType.LAZY, orphanRemoval = true, cascade =
{CascadeType.ALL})
List<ChoiceQuestion> questions;

... ...
}

query = em.createQuery(ExamPaper.SELECT_QUESTION_BY_PAPER,
ChoiceQuestion.class);
query.setParameter("paperId", examPaperId);
query.setFirstResult(startPosition);
query.setMaxResults(maxResult);
list = query.getResultList();

-- 
Regards,
Warren Tang <http://blog.tangcs.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dev.eclipse.org/mailman/private/eclipselink-users/attachments/20111104/5b802c27/attachment.htm>

------------------------------

Message: 2
Date: Fri, 4 Nov 2011 10:39:25 +0100
From: Leon Derks <leon.derks@xxxxxxxxxxxxxxx>
To: EclipseLink User Discussions <eclipselink-users@xxxxxxxxxxx>
Subject: [eclipselink-users] L2 Cache Question
Message-ID: <6981053D-FCF8-4450-B207-26AEDF50D8E7@xxxxxxxxxxxxxxx>
Content-Type: text/plain; charset=us-ascii

Hello all,

I have the following ear structure

ear
-lib
      -jpa-entities.jar
-webapp1.war
-webapp2.war


Is it correct that in this case the L2 cache from the EntityManager factory, which is managed by the container is the same for both webapp1 and webapp2?


And in case I would deploy the wars not packaged in an ear, but independently with the jpa-entities.jar in the war's WEB-INF/lib the wars each have their own L2 cache?

Leon





------------------------------

Message: 3
Date: Fri, 4 Nov 2011 10:43:32 +0100
From: Leon Derks <leon.derks@xxxxxxxxxxxxxxx>
To: EclipseLink User Discussions <eclipselink-users@xxxxxxxxxxx>
Subject: Re: [eclipselink-users] Lazy loading performance problem
Message-ID: <B6DA8F7A-0013-4C29-9FF5-BD827FDA9488@xxxxxxxxxxxxxxx>
Content-Type: text/plain; charset="us-ascii"

Hello.

I think you can do this with a fetch join like: 

SELECT pub FROM Publisher pub JOIN pub.magazines mag

Leon

On Nov 4, 2011, at 10:36 AM, Warren Tang wrote:

> Hi, everybody
> 
> I have an ExamPaper entity which has many ChoiceQuestions. The questions are lazy loaded by default (fetch=LAZY). 
> 
> Now I want to get all the quesitions that belong to a specific ExamPaper, so I use the following JPQL:
> 
>   "select p.questions from ExamPaper p where p.id=:paperId";
> 
> The problem is that questions are "lazy" loaded, so there is one "SELECT" executed for *every single* question. But I want to select them all in one go for performance reasons. What should I do?
> 
> ------------------ Code listing -----------------------------------
> 
> @Entity
> public class ExamPaper {
>   public static final String SELECT_QUESTION_BY_PAPER = "select p.questions from ExamPaper p where p.id=:paperId";
>   
>   @Id @GeneratedValue(strategy = GenerationType.IDENTITY)
>   private Long id;
>   private String name;
>   @OneToMany(fetch = FetchType.LAZY, orphanRemoval = true, cascade = {CascadeType.ALL})
>   List<ChoiceQuestion> questions;
> 
>   ... ...
> }
> 
>       query = em.createQuery(ExamPaper.SELECT_QUESTION_BY_PAPER, ChoiceQuestion.class);
>       query.setParameter("paperId", examPaperId);
>       query.setFirstResult(startPosition);
>       query.setMaxResults(maxResult);
>       list = query.getResultList();
> 
> -- 
> Regards,
> Warren Tang
> _______________________________________________
> eclipselink-users mailing list
> eclipselink-users@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/eclipselink-users

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dev.eclipse.org/mailman/private/eclipselink-users/attachments/20111104/901cede0/attachment.htm>

------------------------------

Message: 4
Date: Fri, 4 Nov 2011 12:50:14 +0000
From: Nathan Drew <Nathan.Drew@xxxxxxxxxxxxxxxxxxxxx>
To: EclipseLink User Discussions <eclipselink-users@xxxxxxxxxxx>
Subject: Re: [eclipselink-users] Bug 362564 - WebSphere specific
	randomisedorg.eclipse.persistence.exceptions.JPQLException	error on
	startup
Message-ID:
	<C670F6E26495EC4EAB856083BD6832C56FB5F4@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
	
Content-Type: text/plain; charset="us-ascii"

Hi Tom,

 

With regards to your question about different JVMs, we can't really swap
out the JDK for WebSphere but GlassFish runs on the Sun JDK, and
WebLogic runs on JRockit. Given that it works sometimes on the IBM JDK
with WAS, I'm not sure it goes down so far as the JDK level(?).

 

We attached an eclipse debugger to catch the JPQLException, and there's
no mapping for the embedded field it would seem (we should expect an
Aggregate Object Mapping???)

 

ReportQuery(referenceClass=BoProductAudit jpql="

SELECT NEW
biz.wss.interfaces.entities.foureyes.auditmaker.AuditStateUser(a.auditFi
elds.currentState, a.auditFields.auditUser) 

FROM BoProductAudit a 

WHERE a.productCode = :productCode 

ORDER BY a.auditFields.auditDateTime DESC")

 

For the query that failed on this run, these are some snippets from the
code:

 

@Entity()

@Table(name=TableNames.WBR_SD_BOPRODUCTADT)

@NamedQueries({ 

 
@NamedQuery(name=NamedQueryNames.BOPRODUCTAUDIT_CHECK_PREV_AUDITS_BY_ID,


        query="SELECT NEW " + AuditStateUser.CLASSPATH + 

        "(a.auditFields.currentState, a.auditFields.auditUser) " + 

        "FROM BoProductAudit a " + 

        "WHERE a.id = :id " + 

        "ORDER BY a.auditFields.auditDateTime DESC"),

 
@NamedQuery(name=NamedQueryNames.BOPRODUCTAUDIT_CHECK_PREV_AUDITS_BY_NAT
URAL_KEY,  

        query="SELECT NEW " + AuditStateUser.CLASSPATH + 

        "(a.auditFields.currentState, a.auditFields.auditUser) " + 

        "FROM BoProductAudit a " + 

        "WHERE a.productCode = :productCode " + 

        "ORDER BY a.auditFields.auditDateTime DESC")

})          

@AnnotatedMetadataEntity(label="BO Product
Audit",allPropertiesGroups={Group.ALL})

public class BoProductAudit extends BoProductTahoe implements
SdAuditAccess {

    

    private static final long serialVersionUID = 1877178905845280065L ;

    

    @Embedded

    private SdAuditFields auditFields = new SdAuditFields();

    

    @OneToMany(mappedBy="boProductAudit",
cascade={CascadeType.ALL},fetch=FetchType.EAGER)

    @OrderBy (value="extProductCode asc")

    private List<BoProductMappingAudit> boProductMappingAudits = new
ArrayList<BoProductMappingAudit>();

 

    @OneToMany

    @OrderBy("code ASC")

    @JoinTable(name="WBR_SD_BOPRODDATAELGRPADT",

        joinColumns=@JoinColumn(name="BOPRODUCTID"),

        inverseJoinColumns=@JoinColumn(name="DATELEMENTGROUPID"))

        private Collection<DataElementGroup> dataElementGroups;

   <snip>

 

...

 

@MappedSuperclass

@IsFieldHolder

@AnnotatedMetadataEntity(label="BO
Product",allPropertiesGroups={Group.ALL})

public class BoProductTahoe extends SdEntity implements Serializable {

    

    private static final long serialVersionUID = -5302471477902214119L ;

    

    @Column(name="PRODUCTCATEGORY")

    @Enumerated(EnumType.STRING)

    private BoProductCategory boProductCategory;

    

    private String productCode;

    

    private String displayName;

    

    private String description;

   <snip>

 

See attached for some output of the Eclipse debugger, along with the
stack trace.

 

Kind Regards

Nathan

 

 

From: eclipselink-users-bounces@xxxxxxxxxxx
[mailto:eclipselink-users-bounces@xxxxxxxxxxx] On Behalf Of Tim Martin
Sent: 04 November 2011 08:59
To: eclipselink-users@xxxxxxxxxxx
Subject: Re: [eclipselink-users] Bug 362564 - WebSphere specific
randomisedorg.eclipse.persistence.exceptions.JPQLException error on
startup

 

The status field is embedded in about 70 entities

structure is eg where 'typeName' varies

abstract class (not @MappedSuperclass)
    typeNameClass (@MappedSuperclass)
        typeNameMaker (@Entity)
            manyfields - one of which is @Embedded StatusField
        typeNameAudit (@Entity)
            manyfields - one of which is @Embedded StatusField
        typeNameLive (@Entity)
            manyfields - one of which is @Embedded StatusField


the StatusField class is never embedded inside another Embeddable...
they are all different instances of StatusField....

we can try swapping the jvms for the appservers around....

On 03/11/2011 18:37, Tom Ware wrote: 

One further question: 

Is the StatusField embeddable embedded in multiple objects?  Is it ever
embedded in another embeddable? 

-Tom 

On 03/11/2011 1:58 PM, Tom Ware wrote: 



I'm trying to figure out how best to help you debug this. 

In the meantime, a quick question. When you run WebSphere, does it run
on a 
different VM than the other two app servers? (the IBM vm, maybe?) Do you
still 
see this problem if you run it on the same VM as you are running
Glassfish on? 

-Tom 

On 03/11/2011 12:00 PM, Nathan Drew wrote: 



Hi Tom, 

In response to your first questions: 

*Can you clarify what is working and what is not working? 

oWhen it goes wrong inside WAS, we cannot use anything that uses JPA
within the 
application. 

*You mentioned earlier that your persistence unit deploys on other
application 
servers. Which ones? 

oGlassFish Open Source 2.1.1 

oWebLogic 10.3.4 

o*/It also works on WebSphere on some server start-ups or restarts of
the 
app/*so EclipseLink and WAS seem perfectly happy to coexist some of the
time - 
without anything having changed. 

*//* 

*Can you successfully execute any of the queries that are causing these 
exceptions on those application servers? 

oYes, we */never/* have any of these errors on the other two vendors. 

Also to answer your other questions: 

1.See attached orm-wssjpa.xml file 

2.They are all in the same JAR, yes. Logging wise, with the persistence
xml 
logging property configured to FINEST and redeploying the application we
get the 
following output from EclipseLink amongst the rest of our start-up log
(This is 
with the eclipselink.deploy-on-startup also set to true): 

[11/3/11 15:53:22:856 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:22.817--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Begin predeploying Persistence Unit WSSJPA; session 
jar:file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmC
ell/Bedrock-EAR.ear/Bedrock.server.services.local.jar!/_WSSJPA; 

state Initial; factoryCount 0 

[11/3/11 15:53:22:862 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:22.858--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.orm.throw.exceptions; default
value=true 

[11/3/11 15:53:22:864 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:22.864--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.weaving.changetracking; value=true 

[11/3/11 15:53:22:864 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:22.864--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.weaving.lazy; value=true 

[11/3/11 15:53:22:864 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:22.864--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.weaving.eager; value=false 

[11/3/11 15:53:22:864 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:22.864--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.weaving.fetchgroups; value=true 

[11/3/11 15:53:22:865 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:22.865--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.weaving.internal; value=false 

[11/3/11 15:53:22:866 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:22.866--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.multitenant.tenants-share-emf; default 
value=true 

[11/3/11 15:53:22:866 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:22.866--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.multitenant.tenants-share-cache;
default 
value=false 

[11/3/11 15:53:22:932 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:22.932--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.metadata-source; default value=null 

[11/3/11 15:53:22:936 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:22.932--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Searching for default mapping file in 
jar:file:/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmCell/Bedroc
k-EAR.ear/Bedrock.server.services.position.jar!/ 


[11/3/11 15:53:22:950 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:22.949--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Searching for default mapping file in 
jar:file:/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmCell/Bedroc
k-EAR.ear/Bedrock.server.services.bo.jar!/ 


[11/3/11 15:53:22:952 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:22.95--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Searching for default mapping file in 
jar:file:/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmCell/Bedroc
k-EAR.ear/Bedrock.server.services.local.jar!/ 


[11/3/11 15:53:22:953 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:22.953--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Searching for default mapping file in 
jar:file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmC
ell/Bedrock-EAR.ear/Bedrock.interfaces.entities.jar!/ 


[11/3/11 15:53:22:956 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:22.956--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Searching for default mapping file in 
jar:file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmC
ell/Bedrock-EAR.ear/Bedrock.server.services.local.jar!/ 


[11/3/11 15:53:24:204 UTC] 0000000e servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: [isclite]

[/ibm/console] [EventInitializer]: Initialization successful. 

[11/3/11 15:53:24:243 UTC] 0000000e webcontainer I 
com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web
Module 
isclite has been bound to admin_host[*:2001,*:2003]. 

[11/3/11 15:53:24:300 UTC] 0000000e webapp I 
com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading
Web 
Module: adminconsole redirector. 

[11/3/11 15:53:24:335 UTC] 0000000e WASSessionCor I
SessionContextRegistry 
getSessionContext SESN0176I: Will create a new session context for
application 
key admin_host/admin 

[11/3/11 15:53:24:354 UTC] 0000000e webcontainer I 
com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web
Module 
adminconsole redirector has been bound to admin_host[*:2001,*:2003]. 

[11/3/11 15:53:24:396 UTC] 0000000e webapp I 
com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading
Web 
Module: EHS3.01. 

[11/3/11 15:53:24:422 UTC] 0000000e WASSessionCor I
SessionContextRegistry 
getSessionContext SESN0176I: Will create a new session context for
application 
key admin_host/ibm/help 

[11/3/11 15:53:24:458 UTC] 0000000e webcontainer I 
com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web
Module 
EHS3.01 has been bound to admin_host[*:2001,*:2003]. 

[11/3/11 15:53:24:621 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:24.62--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Searching for default mapping file in 
jar:file:/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmCell/Bedroc
k-EAR.ear/Bedrock.server.services.position.jar!/ 


[11/3/11 15:53:24:622 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:24.622--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Searching for default mapping file in 
jar:file:/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmCell/Bedroc
k-EAR.ear/Bedrock.server.services.bo.jar!/ 


[11/3/11 15:53:24:623 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:24.622--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Searching for default mapping file in 
jar:file:/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmCell/Bedroc
k-EAR.ear/Bedrock.server.services.local.jar!/ 


[11/3/11 15:53:24:624 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:24.624--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Searching for default mapping file in 
jar:file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmC
ell/Bedrock-EAR.ear/Bedrock.interfaces.entities.jar!/ 


[11/3/11 15:53:24:628 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:24.628--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Searching for default mapping file in 
jar:file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmC
ell/Bedrock-EAR.ear/Bedrock.server.services.local.jar!/ 


[11/3/11 15:53:24:814 UTC] 0000000e webapp I 
com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading
Web 
Module: Integrated Solutions Console. 

[11/3/11 15:53:24:867 UTC] 0000000e WASSessionCor I
SessionContextRegistry 
getSessionContext SESN0176I: Will create a new session context for
application 
key admin_host/ISCAdminPortlet 

[11/3/11 15:53:24:920 UTC] 0000000e MBeanDescript I ADMN1216I: One or
more 
methods in Portlet mbean is excluded from access check. 

[11/3/11 15:53:24:940 UTC] 0000000e MBeanDescript I ADMN1216I: One or
more 
methods in PortletApplication mbean is excluded from access check. 

[11/3/11 15:53:25:388 UTC] 0000000e webcontainer I 
com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web
Module 
Integrated Solutions Console has been bound to
admin_host[*:2001,*:2003]. 

[11/3/11 15:53:25:397 UTC] 0000000d webapp I 
com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading
Web 
Module: Bedrock-components-jotws.war. 

[11/3/11 15:53:25:947 UTC] 0000000d WASSessionCor I
SessionContextRegistry 
getSessionContext SESN0176I: Will create a new session context for
application 
key default_hostjotws 

[11/3/11 15:53:25:995 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.wss.SystemInformationWebService]: Initialization 
successful. 

[11/3/11 15:53:25:997 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/SystemInformationService URL pattern was configured for the 
biz.wss.server.jotws.wss.SystemInformationWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:007 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.FXBlockReferenceWebService]: Initialization
successful. 

[11/3/11 15:53:26:010 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXBlockReferenceService URL pattern was configured for the 
biz.wss.server.jotws.fx.FXBlockReferenceWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:014 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.fxliteapi.FXLITEAPIWebService]: Initialization

successful. 

[11/3/11 15:53:26:016 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXLITEAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.fxliteapi.FXLITEAPIWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:019 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.customerxapi.CUSTOMERXAPIWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:020 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/CUSTOMERXAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.customerxapi.CUSTOMERXAPIWebService servlet
located in 
the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:027 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.contactsapi.CONTACTSAPIWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:029 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/CONTACTSAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.contactsapi.CONTACTSAPIWebService servlet
located in 
the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:031 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.customer.customerprofile.CustomerProfileWebService
]: 
Initialization successful. 

[11/3/11 15:53:26:033 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/CustomerProfileService URL pattern was configured for the 
biz.wss.server.jotws.customer.customerprofile.CustomerProfileWebService
servlet 
located in the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:037 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.vsmileapi.VSmileAPIWebService]: Initialization

successful. 

[11/3/11 15:53:26:038 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/VSmileAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.vsmileapi.VSmileAPIWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:041 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.fxcompapi.FXCOMPAPIWebService]: Initialization

successful. 

[11/3/11 15:53:26:042 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXCOMPAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.fxcompapi.FXCOMPAPIWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:045 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.customernapi.CUSTOMERNAPIWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:046 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/CUSTOMERNAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.customernapi.CUSTOMERNAPIWebService servlet
located in 
the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:049 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.pro4.P4RecordBlockerWebService]: Initialization
successful. 

[11/3/11 15:53:26:051 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/P4RecordBlockerService URL pattern was configured for the 
biz.wss.server.jotws.pro4.P4RecordBlockerWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:056 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.fxrateapi.FXRateAPIWebService]: Initialization

successful. 

[11/3/11 15:53:26:057 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXRateAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.fxrateapi.FXRateAPIWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:060 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.mm.GapDateDiscountFactorWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:061 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/GapDateDiscountFactorService URL pattern was configured for the 
biz.wss.server.jotws.mm.GapDateDiscountFactorWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:064 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.fxcaptureapi.FXCaptureAPIWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:065 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXCaptureAPIService URL pattern was configured for the 
biz.wss.server.jotws.fx.fxcaptureapi.FXCaptureAPIWebService servlet
located in 
the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:068 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.FXCanQuoteWebService]: Initialization
successful. 

[11/3/11 15:53:26:070 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXCanQuoteService URL pattern was configured for the 
biz.wss.server.jotws.fx.FXCanQuoteWebService servlet located in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:074 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fsi.SettlementInstructionWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:075 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/SettlementInstructionService URL pattern was configured for the 
biz.wss.server.jotws.fsi.SettlementInstructionWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:078 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.FXDealInquiryWebService]: Initialization
successful. 

[11/3/11 15:53:26:080 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXDealInquiryService URL pattern was configured for the 
biz.wss.server.jotws.fx.FXDealInquiryWebService servlet located in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:089 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.mmrateapi.MMRateAPIWebService]: Initialization

successful. 

[11/3/11 15:53:26:090 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/MMRateAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.mmrateapi.MMRateAPIWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:094 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.FXSpotForwardMarketPriceWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:095 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXSpotForwardMarketPriceService URL pattern was configured for the 
biz.wss.server.jotws.fx.FXSpotForwardMarketPriceWebService servlet
located in 
the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:098 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.FXSwapMarketPriceWebService]: Initialization
successful. 

[11/3/11 15:53:26:100 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXSwapMarketPriceService URL pattern was configured for the 
biz.wss.server.jotws.fx.FXSwapMarketPriceWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:104 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.mm.mmcaptureapi.MMCaptureAPIWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:106 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/MMCaptureAPIService URL pattern was configured for the 
biz.wss.server.jotws.mm.mmcaptureapi.MMCaptureAPIWebService servlet
located in 
the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:110 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.fxtfsiapi.FXTFSIAPIWebService]: Initialization

successful. 

[11/3/11 15:53:26:113 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXTFSIAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.fxtfsiapi.FXTFSIAPIWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:118 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.mm.hedgeeqvdiscountfactor.HedgeEquivalentsDiscount
FactorWebService]: 

Initialization successful. 

[11/3/11 15:53:26:119 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/HedgeEquivalentsDiscountFactorService URL pattern was configured for
the 
biz.wss.server.jotws.mm.hedgeeqvdiscountfactor.HedgeEquivalentsDiscountF
actorWebService 

servlet located in the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:124 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.pro4.ValueVariableWebService]: Initialization
successful. 

[11/3/11 15:53:26:125 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/ValueVariableService URL pattern was configured for the 
biz.wss.server.jotws.pro4.ValueVariableWebService servlet located in the

Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:129 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.fxcorpapi.FXCorpAPIWebService]: Initialization 
successful. 

[11/3/11 15:53:26:131 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXCorpAPIService URL pattern was configured for the 
biz.wss.server.jotws.fx.fxcorpapi.FXCorpAPIWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:135 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.cr.CreditCheckWebService]: Initialization
successful. 

[11/3/11 15:53:26:136 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/CreditCheckService URL pattern was configured for the 
biz.wss.server.jotws.cr.CreditCheckWebService servlet located in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:140 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.cr.CreditTenorDetailWebService]: Initialization
successful. 

[11/3/11 15:53:26:141 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/CreditTenorDetailService URL pattern was configured for the 
biz.wss.server.jotws.cr.CreditTenorDetailWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:146 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.wss.MailboxManagerWebService]: Initialization
successful. 

[11/3/11 15:53:26:147 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/MailboxManagerService URL pattern was configured for the 
biz.wss.server.jotws.wss.MailboxManagerWebService servlet located in the

Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:153 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.date.OffsetDateWebService]: Initialization
successful. 

[11/3/11 15:53:26:155 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/OffsetDateService URL pattern was configured for the 
biz.wss.server.jotws.date.OffsetDateWebService servlet located in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:158 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.settlementapi.SETTLEMENTAPIWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:159 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/SETTLEMENTAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.settlementapi.SETTLEMENTAPIWebService servlet
located 
in the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:162 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.pro4.ServerFunctionCheckWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:164 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/ServerFunctionCheckService URL pattern was configured for the 
biz.wss.server.jotws.pro4.ServerFunctionCheckWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:167 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.crriskfactapi.CRRISKFACTAPIWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:169 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/CRRISKFACTAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.crriskfactapi.CRRISKFACTAPIWebService servlet
located 
in the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:172 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.pro4.GenericP4ExecutorWebService]: Initialization 
successful. 

[11/3/11 15:53:26:174 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/GenericP4ExecutorService URL pattern was configured for the 
biz.wss.server.jotws.pro4.GenericP4ExecutorWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:177 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.FXFullQuotePricingWebService]: Initialization 
successful. 

[11/3/11 15:53:26:178 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXFullQuotePricingService URL pattern was configured for the 
biz.wss.server.jotws.fx.FXFullQuotePricingWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:181 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.wss.DealNumberWebService]: Initialization
successful. 

[11/3/11 15:53:26:183 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/DealNumberService URL pattern was configured for the 
biz.wss.server.jotws.wss.DealNumberWebService servlet located in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:185 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.FXDealRoutingWebService]: Initialization
successful. 

[11/3/11 15:53:26:186 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXDealRoutingService URL pattern was configured for the 
biz.wss.server.jotws.fx.FXDealRoutingWebService servlet located in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:188 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.acadjapi.ACADJAPIWebService]: Initialization 
successful. 

[11/3/11 15:53:26:190 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/ACADJAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.acadjapi.ACADJAPIWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:197 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.fsiattach.FSIATTACHWebService]: Initialization

successful. 

[11/3/11 15:53:26:198 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FSIATTACHService URL pattern was configured for the 
biz.wss.server.jotws.api.fsiattach.FSIATTACHWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:203 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.ratemnemapi.RateMnemAPIWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:204 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/RateMnemAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.ratemnemapi.RateMnemAPIWebService servlet
located in 
the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:208 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.FXDiscountFactorWebService]: Initialization
successful. 

[11/3/11 15:53:26:209 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXDiscountFactorService URL pattern was configured for the 
biz.wss.server.jotws.fx.FXDiscountFactorWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:212 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.fxcfsiapi.FXCFSIAPIWebService]: Initialization

successful. 

[11/3/11 15:53:26:213 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXCFSIAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.fxcfsiapi.FXCFSIAPIWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:216 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.valuedateapi.ValueDateAPIWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:217 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/ValueDateAPIService URL pattern was configured for the 
biz.wss.server.jotws.api.valuedateapi.ValueDateAPIWebService servlet
located in 
the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:220 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.customer.customerapi.CustomerAPIWebService]: 
Initialization successful. 

[11/3/11 15:53:26:221 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/CustomerAPIService URL pattern was configured for the 
biz.wss.server.jotws.customer.customerapi.CustomerAPIWebService servlet
located 
in the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:223 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.FXDealActionWebService]: Initialization
successful. 

[11/3/11 15:53:26:225 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXDealActionService URL pattern was configured for the 
biz.wss.server.jotws.fx.FXDealActionWebService servlet located in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:228 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.api.acchart.ACCHARTWebService]: Initialization
successful. 

[11/3/11 15:53:26:229 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/ACCHARTService URL pattern was configured for the 
biz.wss.server.jotws.api.acchart.ACCHARTWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:232 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.wss.GUIBreakThruMessageWebService]: Initialization

successful. 

[11/3/11 15:53:26:233 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/GUIBreakThruMessageService URL pattern was configured for the 
biz.wss.server.jotws.wss.GUIBreakThruMessageWebService servlet located
in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:236 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.cp.cpcaptureapi.CPCaptureAPIWebService]:
Initialization 
successful. 

[11/3/11 15:53:26:237 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/CPCaptureAPIService URL pattern was configured for the 
biz.wss.server.jotws.cp.cpcaptureapi.CPCaptureAPIWebService servlet
located in 
the Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:242 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.fx.FXRateInterpolationWebService]: Initialization 
successful. 

[11/3/11 15:53:26:245 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/FXRateInterpolationService URL pattern was configured for the 
biz.wss.server.jotws.fx.FXRateInterpolationWebService servlet located in
the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:249 UTC] 0000000d servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[Bedrock-components-jotws] [/jotws] 
[biz.wss.server.jotws.date.GapDateWebService]: Initialization
successful. 

[11/3/11 15:53:26:250 UTC] 0000000d WASAxis2Exten I WSWS7037I: The 
/GapDateService URL pattern was configured for the 
biz.wss.server.jotws.date.GapDateWebService servlet located in the 
Bedrock-components-jotws-war.war web module. 

[11/3/11 15:53:26:811 UTC] 0000000d webcontainer I 
com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web
Module 
Bedrock-components-jotws.war has been bound to 
default_host[*:2000,*:80,*:2002,*:2011,*:2012,*:443]. 

[11/3/11 15:53:27:769 UTC] 0000000e webapp I 
com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading
Web 
Module: WIM. 

[11/3/11 15:53:26:867 UTC] 0000000d ApplicationMg A WSVR0221I:
Application 
started: Bedrock-components-jotws 

[11/3/11 15:53:26:868 UTC] 0000000d CompositionUn A WSVR0191I:
Composition unit 
WebSphere:cuname=Bedrock-components-jotws in BLA 
WebSphere:blaname=Bedrock-components-jotws started. 

[11/3/11 15:53:27:821 UTC] 0000000e WASSessionCor I
SessionContextRegistry 
getSessionContext SESN0176I: Will create a new session context for
application 
key admin_host/wim 

[11/3/11 15:53:27:855 UTC] 0000000e webcontainer I 
com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web
Module 
WIM has been bound to admin_host[*:2001,*:2003]. 

[11/3/11 15:53:26:982 UTC] 0000000e webapp I 
com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading
Web 
Module: WebSphere Application Server. 

[11/3/11 15:53:27:007 UTC] 0000000e WASSessionCor I
SessionContextRegistry 
getSessionContext SESN0176I: Will create a new session context for
application 
key admin_host/wasportlet 

[11/3/11 15:53:27:027 UTC] 0000000e webcontainer I 
com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web
Module 
WebSphere Application Server has been bound to
admin_host[*:2001,*:2003]. 

[11/3/11 15:53:27:036 UTC] 0000000e ApplicationMg A WSVR0221I:
Application 
started: isclite 

[11/3/11 15:53:27:037 UTC] 0000000e CompositionUn A WSVR0191I:
Composition unit 
WebSphere:cuname=isclite in BLA WebSphere:blaname=isclite started. 

[11/3/11 15:53:27:517 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.516--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.foureyes.workflow.foureyes.SDWorkFlowRuleTah
oe] is 
set to [FIELD]. 

[11/3/11 15:53:27:558 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.557--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.sdcommon.SdEntity] is set to [FIELD]. 

[11/3/11 15:53:27:566 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.566--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.foureyes.workflow.SDWorkFlowRule] is set to
[FIELD]. 

[11/3/11 15:53:27:575 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.575--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.pfolio.foureyes.PortfolioGroupTahoe] is set
to 
[FIELD]. 

[11/3/11 15:53:27:591 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.591--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field revalRateArea] is being defaulted to: class 
biz.wss.interfaces.entities.area.bookarea.BookArea. 

[11/3/11 15:53:27:594 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.593--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.pfolio.PortfolioGroup] is set to [FIELD]. 

[11/3/11 15:53:27:604 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.604--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field revalRateArea] is being defaulted to: class 
biz.wss.interfaces.entities.area.bookarea.BookArea. 

[11/3/11 15:53:27:604 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.604--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.area.bookarea.AreaStatus] is set to [FIELD].


[11/3/11 15:53:27:605 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.605--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.server.services.local.record.SettlementXref] is set to [FIELD]. 

[11/3/11 15:53:27:613 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.613--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.bo.settlement.queue.counts.SqmCounter] is
set to 
[FIELD]. 

[11/3/11 15:53:27:614 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.614--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.credit.lines.LineAllocation] is set to
[FIELD]. 

[11/3/11 15:53:27:614 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.614--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field centre] is being defaulted to: class 
biz.wss.interfaces.entities.area.bookarea.BookArea. 

[11/3/11 15:53:27:614 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.614--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.credit.lines.foureyes.LineAllocationLive] is
set to 
[FIELD]. 

[11/3/11 15:53:27:615 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.615--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field line] is being defaulted to: class 
biz.wss.interfaces.entities.credit.lines.CreditLineImpl. 

[11/3/11 15:53:27:615 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.615--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field centre] is being defaulted to: class 
biz.wss.interfaces.entities.area.bookarea.BookArea. 

[11/3/11 15:53:27:615 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.615--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.customer.CustomerAddress] is set to [FIELD].


[11/3/11 15:53:27:617 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.616--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.customer.foureyes.CustomerAddressMaker] is
set to 
[FIELD]. 

[11/3/11 15:53:27:617 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.617--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field customer] is being defaulted to: class 
biz.wss.interfaces.entities.customer.foureyes.CustomerMaker. 

[11/3/11 15:53:27:619 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.619--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.cparty.AllowedEntity] is set to [FIELD]. 

[11/3/11 15:53:27:619 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.619--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.cparty.foureyes.AllowedEntityLive] is set to
[FIELD]. 

[11/3/11 15:53:27:619 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.619--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field cparty] is being defaulted to: class 
biz.wss.interfaces.entities.cparty.CParty. 

[11/3/11 15:53:27:620 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.62--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.bo.settlement.queue.matrix.foureyes.SqmQueue
MatrixTahoe] 

is set to [FIELD]. 

[11/3/11 15:53:27:620 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.62--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.bo.settlement.queue.matrix.foureyes.SqmQueue
MatrixAudit] 

is set to [FIELD]. 

[11/3/11 15:53:27:621 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.62--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.credit.lines.LinePeriod] is set to [FIELD]. 

[11/3/11 15:53:27:621 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.621--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.credit.lines.foureyes.LinePeriodAudit] is
set to 
[FIELD]. 

[11/3/11 15:53:27:621 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.621--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field lineAudit] is being defaulted to: class 
biz.wss.interfaces.entities.credit.lines.foureyes.CreditLineAudit. 

[11/3/11 15:53:27:623 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.623--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.fx.deal.book.FXDealCapture] is set to
[FIELD]. 

[11/3/11 15:53:27:624 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.623--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the one to one
mapping 
element [field dealActionParent] is being defaulted to: class 
biz.wss.interfaces.entities.fx.deal.book.FXDealCapture. 

[11/3/11 15:53:27:624 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.624--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field ccy1BaseCcyPair] is being defaulted to: class 
biz.wss.interfaces.entities.currency.CurrencyPairImpl. 

[11/3/11 15:53:27:625 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.625--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field ccy1] is being defaulted to: class 
biz.wss.interfaces.entities.currency.CurrencyImpl. 

[11/3/11 15:53:27:625 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.625--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field ccy2] is being defaulted to: class 
biz.wss.interfaces.entities.currency.CurrencyImpl. 

[11/3/11 15:53:27:625 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.625--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field blotterPortfolio] is being defaulted to: class 
biz.wss.interfaces.entities.pfolio.Portfolio. 

[11/3/11 15:53:27:626 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.626--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field ccy2BaseCcyPair] is being defaulted to: class 
biz.wss.interfaces.entities.currency.CurrencyPairImpl. 

[11/3/11 15:53:27:626 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.626--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field ccyPair] is being defaulted to: class 
biz.wss.interfaces.entities.currency.CurrencyPairImpl. 

[11/3/11 15:53:27:627 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.627--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field ccyEquiv] is being defaulted to: class 
biz.wss.interfaces.entities.currency.CurrencyImpl. 

[11/3/11 15:53:27:628 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.627--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the one to one
mapping 
element [field parent] is being defaulted to: class 
biz.wss.interfaces.entities.fx.deal.book.FXDealCapture. 

[11/3/11 15:53:27:629 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.628--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the one to one
mapping 
element [field original] is being defaulted to: class 
biz.wss.interfaces.entities.fx.deal.book.FXDealCapture. 

[11/3/11 15:53:27:630 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.629--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field broker] is being defaulted to: class 
biz.wss.interfaces.entities.cparty.CPartyLight. 

[11/3/11 15:53:27:630 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.63--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field customer] is being defaulted to: class 
biz.wss.interfaces.entities.cparty.CPartyLight. 

[11/3/11 15:53:27:632 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.631--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field internalRoutingPortfolio] is being defaulted to: class 
biz.wss.interfaces.entities.pfolio.Portfolio. 

[11/3/11 15:53:27:632 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.632--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.fx.deal.book.FXDealCaptureSwap] is set to
[FIELD]. 

[11/3/11 15:53:27:633 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.633--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field farCustomer] is being defaulted to: class 
biz.wss.interfaces.entities.cparty.CPartyLight. 

[11/3/11 15:53:27:634 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.634--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.fx.deal.book.FXDealCaptureUnevenSwap] is set
to 
[FIELD]. 

[11/3/11 15:53:27:634 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.634--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.credit.instrumentclass.foureyes.InstrumentPr
oductTahoe] 

is set to [FIELD]. 

[11/3/11 15:53:27:635 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.634--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.credit.instrumentclass.foureyes.InstrumentPr
oductMaker] 

is set to [FIELD]. 

[11/3/11 15:53:27:636 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.635--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.bo.settlement.queue.foureyes.SqmQueueTahoe]
is set 
to [FIELD]. 

[11/3/11 15:53:27:636 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.636--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.bo.settlement.queue.foureyes.SqmQueueAudit]
is set 
to [FIELD]. 

[11/3/11 15:53:27:637 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.637--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.bo.rules.confprof.foureyes.RuleSetConfProfTa
hoe] is 
set to [FIELD]. 

[11/3/11 15:53:27:637 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.637--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.bo.rules.RuleSet] is set to [FIELD]. 

[11/3/11 15:53:27:639 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.639--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.bo.rules.confprof.foureyes.RuleSetConfProfMa
ker] is 
set to [FIELD]. 

[11/3/11 15:53:27:648 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.648--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the one to many
mapping 
element [field ruleNodes] is being defaulted to: class 
biz.wss.interfaces.entities.bo.rules.confprof.foureyes.RuleNodeConfProfM
aker. 

[11/3/11 15:53:27:650 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.65--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.bo.rules.RuleNode] is set to [FIELD]. 

[11/3/11 15:53:27:651 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.651--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.bo.rules.srqa.foureyes.RuleNodeSRQAMaker] is
set to 
[FIELD]. 

[11/3/11 15:53:27:651 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.651--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the one to one
mapping 
element [field parentNode] is being defaulted to: class 
biz.wss.interfaces.entities.bo.rules.srqa.foureyes.RuleNodeSRQAMaker. 

[11/3/11 15:53:27:652 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.652--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the many to one
mapping 
element [field ruleSetSRQAMaker] is being defaulted to: class 
biz.wss.interfaces.entities.bo.rules.srqa.foureyes.RuleSetSRQAMaker. 

[11/3/11 15:53:27:653 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.653--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.cmmintegration.TransactionEventExportProfile
] is set 
to [FIELD]. 

[11/3/11 15:53:27:657 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.656--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The target entity (reference) class for the one to many
mapping 
element [field wssDefaults] is being defaulted to: class 
biz.wss.interfaces.entities.cmmintegration.EventExportEnrichment. 

[11/3/11 15:53:27:658 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:27.658--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--The access type for the persistent class [class 
biz.wss.interfaces.entities.customer.CustomerBoProfile] is set to
[FIELD]. 

tail: `/rndvm/java/profiles/AppSrvRNDVM/logs/server1/SystemOut.log' has
been 
replaced; following end of new file 

************ Start Display Current Environment ************ 

WebSphere Platform 7.0.0.17 [ND 7.0.0.17 cf171115.15] running with
process name 
rndvmCell\rndvm01Node01\server1 and process id 19154 

Host Operating System is Linux, version 2.6.18-274.3.1.el5.centos.plus 

Java version = 1.6.0, Java Compiler = j9jit24, Java VM name = IBM J9 VM 

was.install.root = /opt/websphere/AppServer 

user.install.root = /rndvm/java/profiles/AppSrvRNDVM 

Java Home = /websphere/opt/websphere/AppServer/java/jre 

ws.ext.dirs = 
/opt/websphere/AppServer/java/lib:/rndvm/java/profiles/AppSrvRNDVM/class
es:/opt/websphere/AppServer/classes:/opt/websphere/AppServer/lib:/opt/we
bsphere/AppServer/installedChannels:/opt/websphere/AppServer/lib/ext:/op
t/websphere/AppServer/web/help:/opt/websphere/AppServer/deploytool/itp/p
lugins/com.ibm.etools.ejbdeploy/runtime 


Classpath = 
/rndvm/java/profiles/AppSrvRNDVM/properties:/opt/websphere/AppServer/pro
perties:/opt/websphere/AppServer/lib/startup.jar:/opt/websphere/AppServe
r/lib/bootstrap.jar:/opt/websphere/AppServer/lib/jsf-nls.jar:/opt/websph
ere/AppServer/lib/lmproxy.jar:/opt/websphere/AppServer/lib/urlprotocols.
jar:/opt/websphere/AppServer/deploytool/itp/batchboot.jar:/opt/websphere
/AppServer/deploytool/itp/batch2.jar:/opt/websphere/AppServer/java/lib/t
ools.jar 


Java Library path = 
/websphere/opt/websphere/AppServer/java/jre/lib/i386:/opt/websphere/AppS
erver/bin:/opt/oracle/product/10.2.0/db/lib:/rndvm/bin:/usr/lib 


************* End Display Current Environment ************* 

[11/3/11 15:53:30:679 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.679--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.cycle.ReuterLightV] 
registered to be processed by weaver. 

[11/3/11 15:53:30:699 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.699--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.hedge.foureyes.HedgeAudit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:700 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.7--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.settlement.settlementcentre.foureyes.Set
tlementCentreAudit] 

registered to be processed by weaver. 

[11/3/11 15:53:30:701 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.7--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.server.services.local.scheduler.TimerSchedule] 
registered to be processed by weaver. 

[11/3/11 15:53:30:701 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.701--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.api.APIFailure]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:701 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.701--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.fx.deallimits.FXLimitGroup] 
registered to be processed by weaver. 

[11/3/11 15:53:30:701 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.701--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.fx.deallimits.FXLimit]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:702 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.702--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.foureyes.ReuterLive] 
registered to be processed by weaver. 

[11/3/11 15:53:30:702 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.702--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.bo.rules.RuleCondition] 
registered to be processed by weaver. 

[11/3/11 15:53:30:702 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.702--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.fx.marvol.MarginVolumeByUserCounterpartyPro
duct] 
registered to be processed by weaver. 

[11/3/11 15:53:30:703 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.702--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.server.services.local.system.wdb.PatchLog]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:703 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.703--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.area.bookarea.foureyes.MISAreaAudit]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:703 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.703--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.fx.position.ccypair.CounterpartyCcyPairPosi
tionGatheredEntity] 

registered to be processed by weaver. 

[11/3/11 15:53:30:703 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.703--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.bo.alarms.AlarmCounter] 
registered to be processed by weaver. 

[11/3/11 15:53:30:703 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.703--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.user.foureyes.AllowedMMProductAudit]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:704 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.704--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.instrumentclass.foureyes.InstrumentC
lassAudit] 

registered to be processed by weaver. 

[11/3/11 15:53:30:704 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.704--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.confirmation.profile.ConfirmationProfile
] 
registered to be processed by weaver. 

[11/3/11 15:53:30:705 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:30.704--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
biz.wss.interfaces.entities.bo.confirmation.profile.ConfirmationProfile
could 
not be weaved for change tracking as it is not supported by its
mappings. 

[11/3/11 15:53:30:705 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.705--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.bo.settlement.queue.SqmQueue] 
registered to be processed by weaver. 

[11/3/11 15:53:30:705 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.705--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.dashboard.TxnApprovalDataByQueue]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:705 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.705--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.settlement.netting.foureyes.NettingCutof
fTimeMaker] 

registered to be processed by weaver. 

[11/3/11 15:53:30:705 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.705--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.icqa.foureyes.RuleNodeICQA]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:706 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.706--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.server.services.workflow.ControllerPathEntry]

registered to be processed by weaver. 

[11/3/11 15:53:30:706 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.706--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.icqa.foureyes.RuleSetICQAAudit]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:706 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:30.706--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
biz.wss.interfaces.entities.bo.rules.icqa.foureyes.RuleSetICQAAudit
could not be 
weaved for change tracking as it is not supported by its mappings. 

[11/3/11 15:53:30:706 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.706--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.confprof.foureyes.RuleNodeConfProf
Audit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:707 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.707--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.cashflow.Gaps] registered
to be 
processed by weaver. 

[11/3/11 15:53:30:707 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.707--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.instrumentclass.InstrumentProduct] 
registered to be processed by weaver. 

[11/3/11 15:53:30:707 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.707--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.transaction.FoFxFwdTransaction] 
registered to be processed by weaver. 

[11/3/11 15:53:30:707 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.707--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.margin.dynamic.DynamicMarginId] 
registered to be processed by weaver. 

[11/3/11 15:53:30:707 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.707--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.dataelement.foureyes.DataElementMaker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:708 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.707--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.api.APILog] registered to
be 
processed by weaver. 

[11/3/11 15:53:30:708 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.708--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.cycle.MnemonicLightV] 
registered to be processed by weaver. 

[11/3/11 15:53:30:708 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.708--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.bo.ssi.TheirSsi]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:710 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.709--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.confirmation.profile.foureyes.Confirmati
onProfileMaker] 

registered to be processed by weaver. 

[11/3/11 15:53:30:710 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:30.71--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
biz.wss.interfaces.entities.bo.confirmation.profile.foureyes.Confirmatio
nProfileMaker 

could not be weaved for change tracking as it is not supported by its
mappings. 

[11/3/11 15:53:30:710 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.71--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.server.services.local.security.entities.Role]

registered to be processed by weaver. 

[11/3/11 15:53:30:710 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.71--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.instrumentclass.InstrumentClassLimit
] 
registered to be processed by weaver. 

[11/3/11 15:53:30:710 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.71--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.bo.ssi.TheirSsiIdOnly]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:710 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.71--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.settleconfig.city.CitySettlementConfigurati
onImpl] 
registered to be processed by weaver. 

[11/3/11 15:53:30:722 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.721--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.dashboard.StaticDataDashBoardData]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:722 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.722--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.server.services.workflow.bomodify.BOTradeModifyJob] 
registered to be processed by weaver. 

[11/3/11 15:53:30:722 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.722--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.swiftbic.foureyes.SwiftBicAudit]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:723 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.723--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.foureyes.MnemonicMaker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:723 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.723--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.alarms.messagetext.foureyes.MessageTextA
udit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:723 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.723--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.server.services.local.security.entities.EntityGroupEntityPK]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:723 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.723--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.bo.ssi.foureyes.TheirSsiAudit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:724 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.724--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.user.foureyes.UserAudit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:726 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.726--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.transaction.FoFxNDFTransaction] 
registered to be processed by weaver. 

[11/3/11 15:53:30:727 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.726--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.ssi.foureyes.RuleNodeSSIAudit]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:727 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.727--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.settlement.queue.counts.SqmCounterId]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:727 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.727--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.hedge.foureyes.HedgeMaker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:727 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.727--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.settlement.settlementcentre.foureyes.Set
tlementCentreMaker] 

registered to be processed by weaver. 

[11/3/11 15:53:30:729 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.729--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.receiptscheduler.ReceiptScheduler]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:729 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.729--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.pfolio.PortfolioLight]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:729 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.729--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.transaction.FoTransaction] 
registered to be processed by weaver. 

[11/3/11 15:53:30:735 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.735--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.hedge.foureyes.HedgeDealAudit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:735 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.735--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.bo.ssi.OurAccount]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:736 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.735--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.messages.dynamic.FinancialMessageContent
] 
registered to be processed by weaver. 

[11/3/11 15:53:30:736 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.736--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.fx.capture.spot.FXCaptureAPIExtendedInfo] 
registered to be processed by weaver. 

[11/3/11 15:53:30:736 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.736--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.dashboard.TxnApprovalDataByQueCategory] 
registered to be processed by weaver. 

[11/3/11 15:53:30:737 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.737--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.settleconfig.global.foureyes.GlobalACProces
singAreaLive] 

registered to be processed by weaver. 

[11/3/11 15:53:30:737 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.737--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.currency.CurrencyImpl]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:737 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.737--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.area.bookarea.foureyes.MISAreaMaker]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:738 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.738--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.settlement.queue.matrix.SqmQueueMatrix] 
registered to be processed by weaver. 

[11/3/11 15:53:30:738 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.738--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.sdcommon.SdMakerFields] 
registered to be processed by weaver. 

[11/3/11 15:53:30:738 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.738--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.user.foureyes.AllowedMMProductMaker]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:738 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.738--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.bo.dashboard.DealRegistrationId] 
registered to be processed by weaver. 

[11/3/11 15:53:30:738 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.738--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.instrumentclass.foureyes.InstrumentC
lassMaker] 

registered to be processed by weaver. 

[11/3/11 15:53:30:739 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.739--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.settlement.netting.NettingCutoffTime]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:739 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.739--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.account.AccountImpl]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:743 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.743--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.icqa.foureyes.RuleSetICQAMaker]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:744 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:30.744--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
biz.wss.interfaces.entities.bo.rules.icqa.foureyes.RuleSetICQAMaker
could not be 
weaved for change tracking as it is not supported by its mappings. 

[11/3/11 15:53:30:744 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.744--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.confprof.foureyes.RuleNodeConfProf
Maker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:744 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.744--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.area.bookarea.BookAreaStatus] 
registered to be processed by weaver. 

[11/3/11 15:53:30:744 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.744--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.server.services.local.security.AuthorisationEntity] 
registered to be processed by weaver. 

[11/3/11 15:53:30:745 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.744--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.cmmintegration.TransactionEventCashflow]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:745 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.745--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.dashboard.DealRegistrationValueDateDashB
oardData] 
registered 
to be processed by weaver. 

[11/3/11 15:53:30:745 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.745--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.margin.dynamic.FxDynamicMarginConfig]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:745 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.745--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.settleconfig.global.foureyes.GlobalBOProces
singAreaAudit] 

registered to be processed by weaver. 

[11/3/11 15:53:30:745 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.745--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cashflow.HedgeDiscountFactorsId] 
registered to be processed by weaver. 

[11/3/11 15:53:30:746 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.746--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.swiftbic.foureyes.SwiftBicMaker]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:746 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.746--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.foureyes.commonfields.AuditFields]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:746 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.746--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.messages.dynamic.MessageCancel]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:746 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.746--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.alarms.messagetext.foureyes.MessageTextM
aker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:747 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.746--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.messages.messagegroup.foureyes.MessageGr
oupAudit] 
registered 
to be processed by weaver. 

[11/3/11 15:53:30:747 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.747--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.tables.CmmInterestRateType] 
registered to be processed by weaver. 

[11/3/11 15:53:30:747 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.747--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.bo.ssi.foureyes.TheirSsiMaker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:748 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.748--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.user.foureyes.UserMaker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:750 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.75--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.ssi.foureyes.RuleNodeSSIMaker]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:751 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.751--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.ouracc.foureyes.RuleNodeOurAccAudi
t] 
registered to be processed by weaver. 

[11/3/11 15:53:30:751 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.751--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.foureyes.workflow.WorkFlowRuleImpl]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:751 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.751--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.hedge.HedgeImpl]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:751 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.751--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.foureyes.OtherLive] 
registered to be processed by weaver. 

[11/3/11 15:53:30:751 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.751--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.server.intermodule.workflow.InterModuleDataJob] 
registered to be processed by weaver. 

[11/3/11 15:53:30:752 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.752--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.server.services.workflow.bocancel.BOTradeCancelJob] 
registered to be processed by weaver. 

[11/3/11 15:53:30:752 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.752--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.server.services.workflow.ser.FXDealCaptureJob] 
registered to be processed by weaver. 

[11/3/11 15:53:30:752 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.752--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.confirmation.profile.foureyes.SwiftConfi
rmationProfileAudit] 

registered to be processed by weaver. 

[11/3/11 15:53:30:753 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.753--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.tables.CorpRegion]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:754 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.754--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.margin.fixed.MmMargin]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:754 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.754--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.foureyes.workflow.foureyes.SDWorkFlowRuleAu
dit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:754 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.754--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.server.services.local.record.Xref] registered
to be 
processed by weaver. 

[11/3/11 15:53:30:754 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.754--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.server.services.local.security.entities.ProfilePermission]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:754 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.754--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.alarms.messagetext.MessageText]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:754 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.754--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.server.services.workflow.Job] registered to
be 
processed by weaver. 

[11/3/11 15:53:30:754 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:30.754--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class biz.wss.server.services.workflow.Job could not be
weaved for 
change tracking as it is not supported by its mappings. 

[11/3/11 15:53:30:755 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.755--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.fx.position.PnLKey]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:755 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.755--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.hedge.foureyes.HedgeDealMaker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:755 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.755--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.fx.position.ccy.PortfolioCcyPositionEntity]

registered to be processed by weaver. 

[11/3/11 15:53:30:755 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.755--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.server.services.workflow.bo.renotify.BOReNotificationJob]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:755 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.755--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.tables.AccountType]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:756 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.756--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.fx.deal.DealNumberUpdateType] 
registered to be processed by weaver. 

[11/3/11 15:53:30:756 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.756--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.cmmintegration.CashRecordVersions]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:756 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.756--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.foureyes.OtherAudit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:756 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.756--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.bo.rules.ssi.RuleSetSSI] 
registered to be processed by weaver. 

[11/3/11 15:53:30:756 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:30.756--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class biz.wss.interfaces.entities.bo.rules.ssi.RuleSetSSI
could not 
be weaved for change tracking as it is not supported by its mappings. 

[11/3/11 15:53:30:756 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.756--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.server.services.local.record.CreditRate]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:757 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.757--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.pfolio.foureyes.ProductPostingTableAudit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:757 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.757--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.currency.CurrencyPairImpl] 
registered to be processed by weaver. 

[11/3/11 15:53:30:758 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.758--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.settlement.settlementcentre.SettlementCe
ntre] 
registered to be processed by weaver. 

[11/3/11 15:53:30:759 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.759--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.fx.marvol.MarginVolumeDetail] 
registered to be processed by weaver. 

[11/3/11 15:53:30:759 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.759--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.messages.dynamic.MessageAckCounterByStat
usId] 
registered to be processed by weaver. 

[11/3/11 15:53:30:759 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.759--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.cparty.CPartyLightV]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:759 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.759--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.bo.transaction.BoTransaction] 
registered to be processed by weaver. 

[11/3/11 15:53:30:761 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.76--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.product.mm.MMProductImpl]

registered to be processed by weaver. 

[11/3/11 15:53:30:762 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.762--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.instrumentclass.foureyes.InstrumentC
lassLimitAudit] 

registered to be processed by weaver. 

[11/3/11 15:53:30:762 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.762--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.settleconfig.global.GlobalSettlementConfigu
rationImpl] 

registered to be processed by weaver. 

[11/3/11 15:53:30:766 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.766--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.foureyes.ReuterAudit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:766 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.766--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.margin.fixed.FixedGroup] 
registered to be processed by weaver. 

[11/3/11 15:53:30:766 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.766--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.bo.alarms.Alarm]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:766 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.766--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.bo.alarms.AlarmCounterId]

registered to be processed by weaver. 

[11/3/11 15:53:30:766 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.766--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.currency.foureyes.CurrencyPairAudit]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:767 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.767--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.server.services.workflow.Task] registered to
be 
processed by weaver. 

[11/3/11 15:53:30:769 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.769--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.sdcommon.SdLiveFields]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:769 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.769--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.server.services.workflow.ser.FXDealCaptureSERJob] 
registered to be processed by weaver. 

[11/3/11 15:53:30:769 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.769--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.settleconfig.global.foureyes.GlobalBOProces
singAreaMaker] 

registered to be processed by weaver. 

[11/3/11 15:53:30:769 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.769--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.cparty.CParty] registered
to be 
processed by weaver. 

[11/3/11 15:53:30:771 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.771--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.dashboard.CashflowSettlementDataByQueCat
egory] 
registered to be processed by weaver. 

[11/3/11 15:53:30:771 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.771--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.usersetup.PersistenceSetup] 
registered to be processed by weaver. 

[11/3/11 15:53:30:771 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.771--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.credit.lines.CreditLineImpl] 
registered to be processed by weaver. 

[11/3/11 15:53:30:772 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.772--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.foureyes.commonfields.AuditId] 
registered to be processed by weaver. 

[11/3/11 15:53:30:772 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.772--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.foureyes.MnemonicLight] 
registered to be processed by weaver. 

[11/3/11 15:53:30:773 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.773--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.messages.messagegroup.foureyes.MessageGr
oupMaker] 
registered 
to be processed by weaver. 

[11/3/11 15:53:30:773 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.773--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.jpa.JpaBDate] registered
to be 
processed by weaver. 

[11/3/11 15:53:30:773 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.773--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.ouracc.foureyes.RuleNodeOurAccMake
r] 
registered to be processed by weaver. 

[11/3/11 15:53:30:773 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.773--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.server.services.workflow.boregister.BOTradeAPIRegistrationJob] 
registered to be processed by weaver. 

[11/3/11 15:53:30:773 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.773--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.fx.position.ccypair.PortfolioCcyPairPositio
nGatheredEntityPK] 

registered to be processed by weaver. 

[11/3/11 15:53:30:773 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.773--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.fx.deal.book.FxDealCaptureNDF] 
registered to be processed by weaver. 

[11/3/11 15:53:30:774 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.774--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.fx.routing.DealRoutingMinimal] 
registered to be processed by weaver. 

[11/3/11 15:53:30:774 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.774--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.area.bookarea.foureyes.BookAreaAudit]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:776 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.776--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.lines.foureyes.CreditLineAudit]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:776 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.776--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.server.services.local.security.entities.TypePermission]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:776 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.776--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.confirmation.profile.foureyes.SwiftConfi
rmationProfileMaker] 

registered to be processed by weaver. 

[11/3/11 15:53:30:778 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.778--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.foureyes.workflow.foureyes.SDWorkFlowRuleMa
ker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:778 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.778--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.server.services.workflow.ndl.NewDealDriverReference] 
registered to be processed by weaver. 

[11/3/11 15:53:30:778 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.778--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.transaction.FoFxTransaction] 
registered to be processed by weaver. 

[11/3/11 15:53:30:779 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.779--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.account.foureyes.AccountAudit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:781 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.781--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.instrumentclass.foureyes.InstrumentP
roductLimitAudit] 

registered to be processed by weaver. 

[11/3/11 15:53:30:782 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.781--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.instrumentclass.InstrumentClass]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:782 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.782--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.confirmation.profile.foureyes.PaperConfi
rmationProfileAudit] 

registered to be processed by weaver. 

[11/3/11 15:53:30:782 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.782--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.tables.cpartybnkacc.CpartyBankAccImpl]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:783 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.783--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.foureyes.OtherMaker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:783 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.783--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.product.mm.foureyes.MMProductWTaxAudit]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:783 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.783--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.confprof.foureyes.RuleNodeConfProf
] 
registered to be processed by weaver. 

[11/3/11 15:53:30:783 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.783--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.fx.deal.book.FXDealCaptureFwd] 
registered to be processed by weaver. 

[11/3/11 15:53:30:784 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.784--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.fx.position.ccy.PortfolioCcyPositionEntityP
K] 
registered to be processed by weaver. 

[11/3/11 15:53:30:784 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.784--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.deal.details.swiftmessage.SwiftMessageTa
g] 
registered to be processed by weaver. 

[11/3/11 15:53:30:784 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.784--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.pfolio.foureyes.ProductPostingTableMaker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:784 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.784--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.dataelement.group.foureyes.DataElementGr
oupAudit] 
registered 
to be processed by weaver. 

[11/3/11 15:53:30:784 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.784--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.jpa.JpaBoolean]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:784 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.784--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.transaction.FoFxTOTransaction] 
registered to be processed by weaver. 

[11/3/11 15:53:30:785 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.785--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.pfolio.foureyes.PortfolioGroupMemberAudit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:785 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.785--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.cparty.CPartyLight]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:785 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.785--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.payment.cutoff.Paymentcutofftimes]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:786 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.786--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.server.services.local.record.FasMaster]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:787 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.787--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.ssi.foureyes.RuleNodeSSI]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:787 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.787--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.messages.dynamic.FinancialMessage]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:787 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.787--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.server.services.local.record.PrimaryKeyPair] 
registered to be processed by weaver. 

[11/3/11 15:53:30:787 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.787--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.instrumentclass.foureyes.InstrumentC
lassLimitMaker] 

registered to be processed by weaver. 

[11/3/11 15:53:30:787 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.787--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.messages.dynamic.MessageAckCounter]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:788 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.788--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.foureyes.ReuterMaker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:788 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.788--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.fx.capture.MemoInfo]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:788 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.788--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.messages.dynamic.MessageRequest]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:788 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.788--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.messages.dynamic.MessageAckCounterByStat
usAndTypeId] 

registered to be processed by weaver. 

[11/3/11 15:53:30:788 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.788--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.currency.foureyes.CurrencyPairMaker]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:789 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.789--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.server.services.local.record.Parameter]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:789 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.789--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.customer.foureyes.CustomerAddressAudit]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:789 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.789--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.product.foureyes.BoProductMappingLive] 
registered to be processed by weaver. 

[11/3/11 15:53:30:790 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.79--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.tables.FXRateSource]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:790 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.79--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.fx.ser.LiquidityGroup]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:791 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.791--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.foureyes.GlTypeLive] 
registered to be processed by weaver. 

[11/3/11 15:53:30:791 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.791--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.instrumentclass.foureyes.InstrumentP
roductAudit] 

registered to be processed by weaver. 

[11/3/11 15:53:30:791 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.791--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.cparty.foureyes.MnemonicLive] 
registered to be processed by weaver. 

[11/3/11 15:53:30:791 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.791--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.server.services.local.security.entities.RoleProfilePK]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:791 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.791--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.inbound.deal.fxinterface.FxInterfaceConfigu
ration] 
registered to be processed by weaver. 

[11/3/11 15:53:30:793 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.793--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.confprof.foureyes.RuleSetConfProfA
udit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:793 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:30.793--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
biz.wss.interfaces.entities.bo.rules.confprof.foureyes.RuleSetConfProfAu
dit 
could not be weaved for change tracking as it is not supported by its
mappings. 

[11/3/11 15:53:30:794 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.793--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.srqa.foureyes.RuleNodeSRQAAudit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:794 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.794--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.customer.foureyes.CustomerAddressLive]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:794 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.794--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.foureyes.SDPendingActivation] 
registered to be processed by weaver. 

[11/3/11 15:53:30:794 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.794--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.rules.icqa.foureyes.RuleNodeICQAAudit] 
registered to be processed by weaver. 

[11/3/11 15:53:30:794 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.794--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.pfolio.foureyes.PortfolioGroupAudit]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:795 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.795--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.lines.foureyes.CreditLineMaker]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:795 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.795--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.area.bookarea.foureyes.BookAreaMaker]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:797 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.797--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.margin.fixed.FxOtcMargin]

registered to be processed by weaver. 

[11/3/11 15:53:30:797 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.797--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.interfaces.entities.account.foureyes.AccountMaker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:799 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.799--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.credit.instrumentclass.foureyes.InstrumentP
roductLimitMaker] 

registered to be processed by weaver. 

[11/3/11 15:53:30:799 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.799--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.server.services.local.security.entities.UserRolePK] 
registered to be processed by weaver. 

[11/3/11 15:53:30:799 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.799--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.transaction.FoFxPrAdjustmentTransaction]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:799 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.799--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class [biz.wss.interfaces.entities.cashflow.GapsId]
registered to be 
processed by weaver. 

[11/3/11 15:53:30:800 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.8--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.confirmation.profile.foureyes.PaperConfi
rmationProfileMaker] 

registered to be processed by weaver. 

[11/3/11 15:53:30:800 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.8--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.settlement.queue.audit.SqmActionsAuditDe
tail] 
registered to be processed by weaver. 

[11/3/11 15:53:30:800 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.8--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.product.mm.foureyes.MMProductWTaxMaker]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:800 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.8--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
[biz.wss.server.services.local.system.ServiceStateEntity] 
registered to be processed by weaver. 

[11/3/11 15:53:30:801 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.8--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.product.foureyes.BoProductAudit]
registered to 
be processed by weaver. 

[11/3/11 15:53:30:801 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:30.801--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class
biz.wss.interfaces.entities.bo.product.foureyes.BoProductAudit 
could not be weaved for change tracking as it is not supported by its
mappings. 

[11/3/11 15:53:30:801 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.801--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.dataelement.group.DataElementGroup]
registered 
to be processed by weaver. 

[11/3/11 15:53:30:801 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.801--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.bo.dataelement.group.foureyes.DataElementGr
oupMaker] 
registered 
to be processed by weaver. 

[11/3/11 15:53:30:802 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:30.802--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Class 
[biz.wss.interfaces.entities.pfolio.foureyes.PortfolioGroupMemberMaker] 
registered to be processed by weaver. 

[11/3/11 15:53:30:813 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:30.813--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--End predeploying Persistence Unit WSSJPA; session 
jar:file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmC
ell/Bedrock-EAR.ear/Bedrock.server.services.local.jar!/_WSSJPA; 

state Predeployed; factoryCount 1 

[11/3/11 15:53:30:824 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:30.824--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.deploy-on-startup; value=true 

[11/3/11 15:53:30:824 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:30.824--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Begin deploying Persistence Unit WSSJPA; session 
jar:file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmC
ell/Bedrock-EAR.ear/Bedrock.server.services.local.jar!/_WSSJPA; 

state Predeployed; factoryCount 1 

[11/3/11 15:53:33:080 UTC] 0000000f SystemOut O [EL Finer]: 2011-11-03 
15:53:33.08--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Could not initialize Validation Factory. Encountered
following 
exception: java.lang.NoClassDefFoundError:
javax.validation.ValidatorFactory 

[11/3/11 15:53:33:112 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.112--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.target-server; value=WebSphere;
translated 
value=org.eclipse.persistence.platform.server.was.WebSpherePlatform 

[11/3/11 15:53:33:113 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.112--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.logging.level; value=FINEST; translated

value=FINEST 

[11/3/11 15:53:33:113 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.113--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.logging.level; value=FINEST; translated

value=FINEST 

[11/3/11 15:53:33:116 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.116--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.TxnApprovalDataByQueue; 
value=false; translated value=false 

[11/3/11 15:53:33:116 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.116--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.DealRegistrationValueDateD
ashBoardData; 

value=false; translated value=false 

[11/3/11 15:53:33:116 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.116--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.CashflowSettlementDataByQu
eue; 
value=false; translated value=false 

[11/3/11 15:53:33:116 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.116--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.StaticDataDashBoardData; 
value=false; translated value=false 

[11/3/11 15:53:33:117 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.117--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.FXDealCapture;
value=false; 
translated value=false 

[11/3/11 15:53:33:117 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.117--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.AlarmCounter; value=false;

translated value=false 

[11/3/11 15:53:33:117 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.117--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.SqmCounter; value=false; 
translated value=false 

[11/3/11 15:53:33:117 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.117--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.BoCashFlow; value=false; 
translated value=false 

[11/3/11 15:53:33:117 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.117--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.CounterpartyCcyPairPositio
nScatteredEntity; 

value=false; translated value=false 

[11/3/11 15:53:33:117 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.117--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.NewDealJob; value=false; 
translated value=false 

[11/3/11 15:53:33:117 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.117--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.PortfolioCcyPairPositionGa
theredEntity; 

value=false; translated value=false 

[11/3/11 15:53:33:117 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.117--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.TxnApprovalDataByQueCatego
ry; 
value=false; translated value=false 

[11/3/11 15:53:33:118 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.118--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.CashflowSettlementDataByQu
eCategory; 

value=false; translated value=false 

[11/3/11 15:53:33:118 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.118--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.MsgMgmtDataByStatus;
value=false; 
translated value=false 

[11/3/11 15:53:33:118 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.118--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.MsgMgmtDataByStatusAndType
; 
value=false; translated value=false 

[11/3/11 15:53:33:119 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.118--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.Job; value=false;
translated 
value=false 

[11/3/11 15:53:33:119 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.119--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.PortfolioCcyPositionEntity
; 
value=false; translated value=false 

[11/3/11 15:53:33:119 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.119--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.Sequence; value=false;
translated 
value=false 

[11/3/11 15:53:33:119 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.119--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.CloseOfAreaJob;
value=false; 
translated value=false 

[11/3/11 15:53:33:119 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.119--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.Task; value=false;
translated 
value=false 

[11/3/11 15:53:33:119 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.119--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.CloseOfSettlementCentreJob
; 
value=false; translated value=false 

[11/3/11 15:53:33:119 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.119--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.PortfolioCcyPairPositionSc
atteredEntity; 

value=false; translated value=false 

[11/3/11 15:53:33:119 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.119--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.BOTradeRegistrationJob; 
value=false; translated value=false 

[11/3/11 15:53:33:119 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.119--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.CounterpartyCcyPairPositio
nGatheredEntity; 

value=false; translated value=false 

[11/3/11 15:53:33:119 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.119--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.BoTransaction;
value=false; 
translated value=false 

[11/3/11 15:53:33:120 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.12--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.FoTransaction;
value=false; 
translated value=false 

[11/3/11 15:53:33:120 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.12--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.AbstractFxDealCaptureJob; 
value=false; translated value=false 

[11/3/11 15:53:33:120 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.12--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.MessageAckCounter;
value=false; 
translated value=false 

[11/3/11 15:53:33:120 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.12--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.CounterpartyCcyPositionEnt
ity; 
value=false; translated value=false 

[11/3/11 15:53:33:120 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.12--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.ServiceStateEntity;
value=false; 
translated value=false 

[11/3/11 15:53:33:120 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.12--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.cache.shared.DealNumberUpdateJob;
value=false; 
translated value=false 

[11/3/11 15:53:33:125 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:33.125--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--property=eclipselink.session.customizer; 
value=biz.wss.jpa.eclipselink.SessionCustomizer 

[11/3/11 15:53:33:146 UTC] 0000000f SystemOut O [EL Info]: 2011-11-03 
15:53:33.146--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--EclipseLink, version: Eclipse Persistence Services - 
2.3.1.v20111018-r10243 

[11/3/11 15:53:33:835 UTC] 0000000f InternalGener I DSRA8203I: Database
product 
name : Oracle 

[11/3/11 15:53:33:852 UTC] 0000000f InternalGener I DSRA8204I: Database
product 
version : Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 -
64bit 
Production 

With the Partitioning, OLAP, Data Mining and Real Application Testing
options 

[11/3/11 15:53:33:853 UTC] 0000000f InternalGener I DSRA8205I: JDBC
driver name 
: Oracle JDBC driver 

[11/3/11 15:53:33:855 UTC] 0000000f InternalGener I DSRA8206I: JDBC
driver 
version : 11.2.0.2.0 

[11/3/11 15:53:34:033 UTC] 0000000f InternalOracl I DSRA8212I:
DataStoreHelper 
name is: com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper. 

[11/3/11 15:53:34:037 UTC] 0000000f InternalOracl W DSRA7041W: You must
use the 
Oracle11gDataStoreHelper class or a subclass of that data store helper
when you 
configure a data source to use this JDBC driver: Oracle 11g JDBC driver 

[11/3/11 15:53:34:038 UTC] 0000000f WSRdbDataSour I DSRA8208I: JDBC
driver 
type : 4 

[11/3/11 15:53:34:103 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:34.103--Thread(Thread[server.startup : 1,5,main])--Database
platform: 
org.eclipse.persistence.platform.database.oracle.Oracle11Platform,
regular 
expression: (?i)oracle.*11 

[11/3/11 15:53:34:105 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:34.105--Thread(Thread[server.startup : 1,5,main])--Database
platform: 
org.eclipse.persistence.platform.database.oracle.Oracle10Platform,
regular 
expression: (?i)oracle.*10 

[11/3/11 15:53:34:105 UTC] 0000000f SystemOut O [EL Fine]: 2011-11-03 
15:53:34.105--Thread(Thread[server.startup : 1,5,main])--Detected
database 
platform:
org.eclipse.persistence.platform.database.oracle.Oracle10Platform 

[11/3/11 15:53:34:146 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:34.145--ServerSession(1704093074)--Connection(1976726994)--Thread(
Thread[server.startup 

: 1,5,main])--connecting(DatabaseLogin( 

platform=>Oracle10Platform 

user name=> "" 

connector=>JNDIConnector datasource name=>null 

)) 

[11/3/11 15:53:34:176 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:34.176--ServerSession(1704093074)--Connection(284889339)--Thread(T
hread[server.startup 

: 1,5,main])--Connected: jdbc:oracle:thin:@localhost:1521/rndvm 

User: WSSDBA 

Database: Oracle Version: Oracle Database 10g Enterprise Edition Release

10.2.0.5.0 - 64bit Production 

With the Partitioning, OLAP, Data Mining and Real Application Testing
options 

Driver: Oracle JDBC driver Version: 11.2.0.2.0 

[11/3/11 15:53:34:197 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:34.197--ServerSession(1704093074)--Connection(1702389112)--Thread(
Thread[server.startup 

: 1,5,main])--Connection acquired from connection pool [read]. 

[11/3/11 15:53:34:198 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:34.197--ServerSession(1704093074)--Connection(1702389112)--Thread(
Thread[server.startup 

: 1,5,main])--Connection released to connection pool [read]. 

[11/3/11 15:53:34:199 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:34.199--ServerSession(1704093074)--Connection(1486837919)--Thread(
Thread[server.startup 

: 1,5,main])--connecting(DatabaseLogin( 

platform=>Oracle10Platform 

user name=> "" 

connector=>JNDIConnector datasource name=>null 

)) 

[11/3/11 15:53:34:207 UTC] 0000000f SystemOut O [EL Config]: 2011-11-03 
15:53:34.206--ServerSession(1704093074)--Connection(1968207184)--Thread(
Thread[server.startup 

: 1,5,main])--Connected: jdbc:oracle:thin:@localhost:1521/rndvm 

User: WSSDBA 

Database: Oracle Version: Oracle Database 10g Enterprise Edition Release

10.2.0.5.0 - 64bit Production 

With the Partitioning, OLAP, Data Mining and Real Application Testing
options 

Driver: Oracle JDBC driver Version: 11.2.0.2.0 

[11/3/11 15:53:34:823 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.823--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FXDealCapture has an isolation level of:
ISOLATED 
which is more protective then the subclass FXDealCaptureSwap with
isolation: 
null so the subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:34:833 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.833--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FXDealCaptureSwap has an isolation level of:
ISOLATED 
which is more protective then the subclass FXDealCaptureUnevenSwap with 
isolation: null so the subclass has been set to the isolation level
ISOLATED. 

[11/3/11 15:53:34:914 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.914--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FoTransaction has an isolation level of:
ISOLATED 
which is more protective then the subclass FoFxTransaction with
isolation: null 
so the subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:34:917 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.917--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FoFxTransaction has an isolation level of:
ISOLATED 
which is more protective then the subclass FoFxExcSettlementTransaction
with 
isolation: null so the subclass has been set to the isolation level
ISOLATED. 

[11/3/11 15:53:34:918 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.918--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FoFxTransaction has an isolation level of:
ISOLATED 
which is more protective then the subclass FoFxFwdTransaction with
isolation: 
null so the subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:34:923 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.923--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FXDealCapture has an isolation level of:
ISOLATED 
which is more protective then the subclass FXDealCaptureFwd with
isolation: null 
so the subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:34:930 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.93--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FXDealCaptureFwd has an isolation level of:
ISOLATED 
which is more protective then the subclass FxDealCaptureNDF with
isolation: null 
so the subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:34:936 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.936--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FXDealCaptureSwap has an isolation level of:
ISOLATED 
which is more protective then the subclass FXDealCaptureParSwap with
isolation: 
null so the subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:34:939 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.939--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FoFxFwdTransaction has an isolation level of:
ISOLATED 
which is more protective then the subclass FoFxNDFTransaction with
isolation: 
null so the subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:34:965 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.965--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity Job has an isolation level of: ISOLATED which
is more 
protective then the subclass BOTradeCancelJob with isolation: null so
the 
subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:34:968 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.968--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity Job has an isolation level of: ISOLATED which
is more 
protective then the subclass InterModuleDataJob with isolation: null so
the 
subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:34:968 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.968--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FXDealCapture has an isolation level of:
ISOLATED 
which is more protective then the subclass FXDealCaptureSpot with
isolation: 
null so the subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:34:977 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.977--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity Job has an isolation level of: ISOLATED which
is more 
protective then the subclass FXDealCaptureJob with isolation: null so
the 
subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:34:977 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.977--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FoFxFwdTransaction has an isolation level of:
ISOLATED 
which is more protective then the subclass FoFxSwapLegTransaction with 
isolation: null so the subclass has been set to the isolation level
ISOLATED. 

[11/3/11 15:53:34:999 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:34.998--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FoFxSwapLegTransaction has an isolation level
of: 
ISOLATED which is more protective then the subclass
FoFxTOSwapLegTransaction 
with isolation: null so the subclass has been set to the isolation level

ISOLATED. 

[11/3/11 15:53:35:198 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:35.198--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity Job has an isolation level of: ISOLATED which
is more 
protective then the subclass FXDealCaptureSERJob with isolation: null so
the 
subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:35:209 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:35.209--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity Job has an isolation level of: ISOLATED which
is more 
protective then the subclass BOReNotificationJob with isolation: null so
the 
subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:35:229 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:35.229--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity Job has an isolation level of: ISOLATED which
is more 
protective then the subclass BOTradeModifyJob with isolation: null so
the 
subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:35:257 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:35.257--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FoFxTransaction has an isolation level of:
ISOLATED 
which is more protective then the subclass FoFxPrAdjustmentTransaction
with 
isolation: null so the subclass has been set to the isolation level
ISOLATED. 

[11/3/11 15:53:35:269 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:35.269--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity Job has an isolation level of: ISOLATED which
is more 
protective then the subclass BOTradeAPIRegistrationJob with isolation:
null so 
the subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:35:283 UTC] 0000000f SystemOut O [EL Warning]: 2011-11-03

15:53:35.283--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Parent Entity FoFxFwdTransaction has an isolation level of:
ISOLATED 
which is more protective then the subclass FoFxTOTransaction with
isolation: 
null so the subclass has been set to the isolation level ISOLATED. 

[11/3/11 15:53:36:211 UTC] 0000000f SystemOut O [EL Severe]: 2011-11-03 
15:53:36.21--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--Local Exception Stack: 

Exception [EclipseLink-8030] (Eclipse Persistence Services - 
2.3.1.v20111018-r10243):
org.eclipse.persistence.exceptions.JPQLException 

Exception Description: Error compiling the query 
[CurrencyPairAudit.getLastAcceptedAudit: SELECT a FROM CurrencyPairAudit
a WHERE 
a.auditId.id = :id AND a.auditId.auditDateTime < :auditTime AND 
a.auditFields.state = '0' ORDER BY a.auditId.auditDateTime DESC], line
1, column 
106: unknown state or association field [auditFields] of class 
[biz.wss.interfaces.entities.currency.foureyes.CurrencyPairAudit]. 

at 
org.eclipse.persistence.exceptions.JPQLException.unknownAttribute(JPQLEx
ception.java:457) 


at
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.ja
va:87)

at
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.ja
va:72)

at
org.eclipse.persistence.internal.jpa.parsing.Node.validate(Node.java:92)


at 
org.eclipse.persistence.internal.jpa.parsing.BinaryOperatorNode.validate
(BinaryOperatorNode.java:34) 


at 
org.eclipse.persistence.internal.jpa.parsing.EqualsNode.validate(EqualsN
ode.java:41) 


at
org.eclipse.persistence.internal.jpa.parsing.Node.validate(Node.java:95)


at 
org.eclipse.persistence.internal.jpa.parsing.LogicalOperatorNode.validat
e(LogicalOperatorNode.java:39) 


at 
org.eclipse.persistence.internal.jpa.parsing.WhereNode.validate(WhereNod
e.java:34) 


at 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTre
e.java:207) 


at 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTre
e.java:183) 


at 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTre
e.java:173) 


at 
org.eclipse.persistence.internal.jpa.parsing.JPQLParseTree.populateReadQ
ueryInternal(JPQLParseTree.java:110) 


at 
org.eclipse.persistence.internal.jpa.parsing.JPQLParseTree.populateQuery
(JPQLParseTree.java:84) 


at 
org.eclipse.persistence.internal.jpa.EJBQueryImpl.buildEJBQLDatabaseQuer
y(EJBQueryImpl.java:219) 


at 
org.eclipse.persistence.internal.jpa.JPAQuery.processJPQLQuery(JPAQuery.
java:106) 

at
org.eclipse.persistence.internal.jpa.JPAQuery.prepare(JPAQuery.java:90) 

at 
org.eclipse.persistence.queries.DatabaseQuery.checkPrepare(DatabaseQuery
.java:613) 


at 
org.eclipse.persistence.queries.DatabaseQuery.checkPrepare(DatabaseQuery
.java:575) 


at 
org.eclipse.persistence.internal.sessions.AbstractSession.processJPAQuer
ies(AbstractSession.java:2161) 


at 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.initialize
Descriptors(DatabaseSessionImpl.java:442) 


at 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.postConnec
tDatasource(DatabaseSessionImpl.java:676) 


at 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.loginAndDe
tectDatasource(DatabaseSessionImpl.java:621) 


at 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryProvider.login(
EntityManagerFactoryProvider.java:206) 


at 
org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.deploy(Entit
yManagerSetupImpl.java:488) 


at 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryDelegate.getDat
abaseSession(EntityManagerFactoryDelegate.java:188) 


at 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.getDatabas
eSession(EntityManagerFactoryImpl.java:485) 


at 
org.eclipse.persistence.jpa.PersistenceProvider.createContainerEntityMan
agerFactory(PersistenceProvider.java:243) 


at
com.ibm.ws.jpa.management.JPAPUnitInfo.createEMFactory(JPAPUnitInfo.java
:1498)

at 
com.ibm.ws.jpa.management.JPAPUnitInfo.createEntityManagerFactory(JPAPUn
itInfo.java:1332) 


at 
com.ibm.ws.jpa.management.JPAPxmlInfo.extractPersistenceUnits(JPAPxmlInf
o.java:393) 


at 
com.ibm.ws.jpa.management.JPAScopeInfo.processPersistenceUnit(JPAScopeIn
fo.java:140) 


at
com.ibm.ws.jpa.management.JPAApplInfo.processModulePUs(JPAApplInfo.java:
169)

at 
com.ibm.ws.jpa.management.JPAComponentImpl.startingDeployedModule(JPACom
ponentImpl.java:895) 


at 
com.ibm.ws.jpa.management.JPAComponentImpl.stateChanged(JPAComponentImpl
.java:748) 


at 
com.ibm.ws.runtime.component.ApplicationMgrImpl.stateChanged(Application
MgrImpl.java:1075) 


at 
com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectE
vent(DeployedApplicationImpl.java:1302) 


at 
com.ibm.ws.runtime.component.DeployedModuleImpl.setState(DeployedModuleI
mpl.java:221) 


at 
com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl
.java:607) 


at 
com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedAppli
cationImpl.java:944) 


at 
com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(Applica
tionMgrImpl.java:726) 


at 
com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl
.java:2048) 


at 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.start(CompositionUni
tMgrImpl.java:441) 


at 
com.ibm.ws.runtime.component.CompositionUnitImpl.start(CompositionUnitIm
pl.java:123) 


at 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.start(CompositionUni
tMgrImpl.java:384) 


at 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.access$300(Compositi
onUnitMgrImpl.java:112) 


at 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl$CUInitializer.run(Co
mpositionUnitMgrImpl.java:951) 


at 
com.ibm.wsspi.runtime.component.WsComponentImpl$_AsynchInitializer.run(W
sComponentImpl.java:349) 


at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604) 

[11/3/11 15:53:36:212 UTC] 0000000f SystemOut O [EL Finest]: 2011-11-03 
15:53:36.212--ServerSession(1704093074)--Thread(Thread[server.startup : 
1,5,main])--End deploying Persistence Unit WSSJPA; session 
jar:file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmC
ell/Bedrock-EAR.ear/Bedrock.server.services.local.jar!/_WSSJPA; 

state Deployed; factoryCount 1 

[11/3/11 15:53:36:546 UTC] 0000000f FfdcProvider W 
com.ibm.ws.ffdc.impl.FfdcProvider logIncident FFDC1003I: FFDC Incident
emitted 
on 
/rndvm/java/profiles/AppSrvRNDVM/logs/ffdc/server1_4fbd4fbd_11.11.03_15.
53.36.2431376766136498563348.txt 

com.ibm.ws.jpa.management.JPAPUnitInfo.createEMFactory 759 

[11/3/11 15:53:36:569 UTC] 0000000f JPAPUnitInfo E CWWJP0015E: An error
occurred 
in the org.eclipse.persistence.jpa.PersistenceProvider persistence
provider when 
it attempted to create the container entity manager factory for the
WSSJPA 
persistence unit. The following error occurred: Exception
[EclipseLink-8030] 
(Eclipse Persistence Services - 2.3.1.v20111018-r10243): 
org.eclipse.persistence.exceptions.JPQLException 

Exception Description: Error compiling the query 
[CurrencyPairAudit.getLastAcceptedAudit: SELECT a FROM CurrencyPairAudit
a WHERE 
a.auditId.id = :id AND a.auditId.auditDateTime < :auditTime AND 
a.auditFields.state = '0' ORDER BY a.auditId.auditDateTime DESC], line
1, column 
106: unknown state or association field [auditFields] of class 
[biz.wss.interfaces.entities.currency.foureyes.CurrencyPairAudit]. 

[11/3/11 15:53:36:571 UTC] 0000000f JPAPUnitInfo E CWWJP0009E: The
server cannot 
create an EntityManagerFactory factory for the WSSJPA persistent unit
from the 
org.eclipse.persistence.jpa.PersistenceProvider provider in 
jar:file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmC
ell/Bedrock-EAR.ear/Bedrock.server.services.local.jar!/ 

module. 

[11/3/11 15:53:36:602 UTC] 0000000f EJBContainerI I WSVR0037I: Starting
EJB jar: 
Bedrock.server.services.local.jar 

[11/3/11 15:53:38:987 UTC] 00000019 SystemOut O [EL Finest]: 2011-11-03 
15:53:38.985--ServerSession(1704093074)--Thread(Thread[Finalizer 
thread,5,system])--Begin undeploying Persistence Unit WSSJPA; session 
jar:file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmC
ell/Bedrock-EAR.ear/Bedrock.server.services.local.jar!/_WSSJPA; 

state Deployed; factoryCount 1 

[11/3/11 15:53:38:989 UTC] 00000019 SystemOut O [EL Config]: 2011-11-03 
15:53:38.989--ServerSession(1704093074)--Connection(1702389112)--Thread(
Thread[Finalizer 

thread,5,system])--disconnect 

[11/3/11 15:53:38:989 UTC] 00000019 SystemOut O [EL Finer]: 2011-11-03 
15:53:38.989--ServerSession(1704093074)--Thread(Thread[Finalizer 
thread,5,system])--initialize identitymaps 

[11/3/11 15:53:38:990 UTC] 00000019 SystemOut O [EL Info]: 2011-11-03 
15:53:38.989--ServerSession(1704093074)--Thread(Thread[Finalizer 
thread,5,system])--jar:
file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmCell/
Bedrock-EAR.ear/Bedrock.server.services.local.jar!/_WSSJPA
<file:///\\websphere\rndvm\java\profiles\AppSrvRNDVM\installedApps\rndvm
Cell\Bedrock-EAR.ear\Bedrock.server.services.local.jar!\_WSSJPA>  

logout successful 

[11/3/11 15:53:38:990 UTC] 00000019 SystemOut O [EL Finest]: 2011-11-03 
15:53:38.99--ServerSession(1704093074)--Thread(Thread[Finalizer 
thread,5,system])--End undeploying Persistence Unit WSSJPA; session 
jar:file:/websphere/rndvm/java/profiles/AppSrvRNDVM/installedApps/rndvmC
ell/Bedrock-EAR.ear/Bedrock.server.services.local.jar!/_WSSJPA; 

state Undeployed; factoryCount 0 

[11/3/11 15:53:40:384 UTC] 0000000f InternalGener I DSRA8203I: Database
product 
name : Apache Derby 

[11/3/11 15:53:40:386 UTC] 0000000f InternalGener I DSRA8204I: Database
product 
version : 10.3.3.1 - (965719) 

[11/3/11 15:53:40:388 UTC] 0000000f InternalGener I DSRA8205I: JDBC
driver name 
: Apache Derby Embedded JDBC Driver 

[11/3/11 15:53:40:388 UTC] 0000000f InternalGener I DSRA8206I: JDBC
driver 
version : 10.3.3.1 - (965719) 

[11/3/11 15:53:41:587 UTC] 0000000f WASSchedulerC I SCHD0100I: Scheduler
tables 
verified successfully. 

[11/3/11 15:53:41:612 UTC] 0000000f SchedulerImpl I SCHD0032I: The
Scheduler 
WebSphere_EJB_Timer_Service is initializing. 

[11/3/11 15:53:41:662 UTC] 0000000f SchedulerImpl I SCHD0033I: The
Scheduler 
WebSphere_EJB_Timer_Service has initialized. 

[11/3/11 15:53:41:706 UTC] 0000000f SchedulerDaem I SCHD0038I: The
Scheduler 
Daemon for instance WebSphere_EJB_Timer_Service has started. 

[11/3/11 15:53:41:712 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.PositionCounterparty
CcyPairUpdateDAO 

interface of the PositionCounterpartyCcyPairUpdateDAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairUpdateDAOEJB#biz.wss.server.services.local.position.counterpar
ty.PositionCounterpartyCcyPairUpdateDAO 


[11/3/11 15:53:41:719 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.PositionCounterparty
CcyPairUpdateDAO 

interface of the PositionCounterpartyCcyPairUpdateDAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.PositionCou
nterpartyCcyPairUpdateDAO 


[11/3/11 15:53:41:742 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.messages.actionrequests.RequestMsgProce
ssor 
interface of the RequestMsgProcessorEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/RequestMsgProcess
orEJB#biz.wss.server.services.local.bo.messages.actionrequests.RequestMs
gProcessor 


[11/3/11 15:53:41:746 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.messages.actionrequests.RequestMsgProce
ssor 
interface of the RequestMsgProcessorEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.messages.actionrequests.Reques
tMsgProcessor 


[11/3/11 15:53:41:748 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.payment.cutoff.PaymentcutofftimesDAO
interface 
of the PaymentcutofftimesDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/Paymentcutofftime
sDAOEJB#biz.wss.server.services.local.bo.payment.cutoff.Paymentcutofftim
esDAO 


[11/3/11 15:53:41:753 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.payment.cutoff.PaymentcutofftimesDAO
interface 
of the PaymentcutofftimesDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.payment.cutoff.Paymentcutoffti
mesDAO 

[11/3/11 15:53:41:757 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyPai
rDAO 
interface of the PositionPortfolioCcyPairDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairDAOEJB#biz.wss.server.services.local.position.portfolio.PositionP
ortfolioCcyPairDAO 


[11/3/11 15:53:41:760 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyPai
rDAO 
interface of the PositionPortfolioCcyPairDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.PositionPortfo
lioCcyPairDAO 


[11/3/11 15:53:41:763 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.ndl.NDBatchJobCreator
interface of 
the NewDealCoreTranBatchEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/NewDealCoreTranBa
tchEJB#biz.wss.server.services.workflow.ndl.NDBatchJobCreator 


[11/3/11 15:53:41:767 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.ndl.NDBatchJobCreator
interface of 
the NewDealCoreTranBatchEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.workflow.ndl.NDBatchJobCreator 

[11/3/11 15:53:41:781 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.transaction.BoTransactionServiceRemote 
interface of the BoTransactionServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/BoTransactionService 

[11/3/11 15:53:41:787 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.transaction.BoTransactionServiceLocal 
interface of the BoTransactionServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/BoTransactionService 

[11/3/11 15:53:41:791 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.coa.CloseOfAreaDAO
interface of the 
CloseOfAreaDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/CloseOfAreaDAOEJB
#biz.wss.server.services.workflow.coa.CloseOfAreaDAO 


[11/3/11 15:53:41:794 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.coa.CloseOfAreaDAO
interface of the 
CloseOfAreaDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.workflow.coa.CloseOfAreaDAO 

[11/3/11 15:53:41:797 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate1DAO 

interface of the PositionCounterpartyCcyPairUpdate1DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairUpdate1DAOEJB#biz.wss.server.services.local.position.counterpa
rty.volumeupdaters.PositionCounterpartyCcyPairUpdate1DAO 


[11/3/11 15:53:41:800 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate1DAO 

interface of the PositionCounterpartyCcyPairUpdate1DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.volumeupdat
ers.PositionCounterpartyCcyPairUpdate1DAO 


[11/3/11 15:53:41:804 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.area.AreaTahoeDAO interface of
the 
AreaTahoeDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/AreaTahoeDAOEJB#b
iz.wss.server.services.local.area.AreaTahoeDAO 


[11/3/11 15:53:41:807 UTC] 00000005 LeaseAlarm I SCHD0133I: Scheduler 
WebSphere_EJB_Timer_Service (WebSphere_EJB_Timer_Service) has acquired
the lease 
and will run all tasks on this application server. 

[11/3/11 15:53:41:807 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.area.AreaTahoeDAO interface of
the 
AreaTahoeDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.area.AreaTahoeDAO 

[11/3/11 15:53:41:817 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.deal.book.FXDealCaptureServiceRemote 
interface of the FXDealCaptureServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/FXDealCaptureService 

[11/3/11 15:53:41:820 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.deal.book.FXDealCaptureService 
interface of the FXDealCaptureServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/FXDealCaptureService 

[11/3/11 15:53:41:823 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.rules.RuleExecutionThreadDAO 
interface of the RuleExecutionThreadDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/RuleExecutionThre
adDAOEJB#biz.wss.server.services.local.bo.rules.RuleExecutionThreadDAO 


[11/3/11 15:53:41:826 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.rules.RuleExecutionThreadDAO 
interface of the RuleExecutionThreadDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.rules.RuleExecutionThreadDAO 

[11/3/11 15:53:41:829 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.fx.deal.book.FXDealCaptureDAO 
interface of the FXDealCaptureDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/FXDealCaptureDAOE
JB#biz.wss.server.services.local.fx.deal.book.FXDealCaptureDAO 


[11/3/11 15:53:41:832 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.fx.deal.book.FXDealCaptureDAO 
interface of the FXDealCaptureDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.fx.deal.book.FXDealCaptureDAO 

[11/3/11 15:53:41:834 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate9DAO 

interface of the PositionCounterpartyCcyPairUpdate9DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairUpdate9DAOEJB#biz.wss.server.services.local.position.counterpa
rty.volumeupdaters.PositionCounterpartyCcyPairUpdate9DAO 


[11/3/11 15:53:41:837 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate9DAO 

interface of the PositionCounterpartyCcyPairUpdate9DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.volumeupdat
ers.PositionCounterpartyCcyPairUpdate9DAO 


[11/3/11 15:53:41:839 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.workflow.coasc.CloseOfSettlementCentreDAO 
interface of the CloseOfSettlementCentreDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/CloseOfSettlement
CentreDAOEJB#biz.wss.server.services.workflow.coasc.CloseOfSettlementCen
treDAO 


[11/3/11 15:53:41:842 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.workflow.coasc.CloseOfSettlementCentreDAO 
interface of the CloseOfSettlementCentreDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.workflow.coasc.CloseOfSettlementCentreD
AO 

[11/3/11 15:53:41:845 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyPai
rUpdateDAO 

interface of the PositionPortfolioCcyPairUpdateDAOEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairUpdateDAOEJB#biz.wss.server.services.local.position.portfolio.Pos
itionPortfolioCcyPairUpdateDAO 


[11/3/11 15:53:41:849 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyPai
rUpdateDAO 

interface of the PositionPortfolioCcyPairUpdateDAOEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.PositionPortfo
lioCcyPairUpdateDAO 


[11/3/11 15:53:41:853 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.DashBoard interface of
the 
DashboardEjb enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/DashboardEjb#biz.
wss.interfaces.services.foureyes.DashBoard 


[11/3/11 15:53:41:856 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.DashBoard interface of
the 
DashboardEjb enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.services.foureyes.DashBoard 

[11/3/11 15:53:41:859 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.security.AuthorisationJpa
interface of 
the AuthorisationJpaEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/AuthorisationJpaE
JB#biz.wss.server.services.local.security.AuthorisationJpa 


[11/3/11 15:53:41:862 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.security.AuthorisationJpa
interface of 
the AuthorisationJpaEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.security.AuthorisationJpa 

[11/3/11 15:53:42:980 UTC] 0000001c SchedulerDaem W SCHD0103W: The
Scheduler 
WebSphere_EJB_Timer_Service (WebSphere_EJB_Timer_Service) was unable to
run task 
961222 because the application or module is unavailable: 
Bedrock-EAR#Bedrock.server.services.local.jar#TimedMessageDrainerEJB. 

[11/3/11 15:53:42:992 UTC] 0000001c SchedulerDaem W SCHD0103W: The
Scheduler 
WebSphere_EJB_Timer_Service (WebSphere_EJB_Timer_Service) was unable to
run task 
961211 because the application or module is unavailable: 
Bedrock-EAR#Bedrock.server.services.local.jar#TimedMessageDrainerEJB. 

[11/3/11 15:53:42:994 UTC] 0000001c SchedulerDaem W SCHD0103W: The
Scheduler 
WebSphere_EJB_Timer_Service (WebSphere_EJB_Timer_Service) was unable to
run task 
961212 because the application or module is unavailable: 
Bedrock-EAR#Bedrock.server.services.local.jar#TimedMessageDrainerEJB. 

[11/3/11 15:53:42:995 UTC] 0000001c SchedulerDaem W SCHD0103W: The
Scheduler 
WebSphere_EJB_Timer_Service (WebSphere_EJB_Timer_Service) was unable to
run task 
961213 because the application or module is unavailable: 
Bedrock-EAR#Bedrock.server.services.local.jar#TimedMessageDrainerEJB. 

[11/3/11 15:53:42:996 UTC] 0000001c SchedulerDaem W SCHD0103W: The
Scheduler 
WebSphere_EJB_Timer_Service (WebSphere_EJB_Timer_Service) was unable to
run task 
961223 because the application or module is unavailable: 
Bedrock-EAR#Bedrock.server.services.local.jar#TimedMessageDrainerEJB. 

[11/3/11 15:53:42:146 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate8DAO 

interface of the PositionPortfolioCcyPairUpdate8DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairUpdate8DAOEJB#biz.wss.server.services.local.position.portfolio.vo
lumeupdaters.PositionPortfolioCcyPairUpdate8DAO 


[11/3/11 15:53:42:150 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate8DAO 

interface of the PositionPortfolioCcyPairUpdate8DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.volumeupdaters
.PositionPortfolioCcyPairUpdate8DAO 


[11/3/11 15:53:42:153 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.intermodule.workflow.InterModuleDataWFService

interface of the InterModuleDataWFServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/InterModuleDataWF
ServiceEJB#biz.wss.server.intermodule.workflow.InterModuleDataWFService 


[11/3/11 15:53:42:156 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.intermodule.workflow.InterModuleDataWFService

interface of the InterModuleDataWFServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.intermodule.workflow.InterModuleDataWFService 

[11/3/11 15:53:42:158 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.FourEyesDao interface of
the 
FourEyesDaoEjb enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/FourEyesDaoEjb#bi
z.wss.server.services.local.dao.FourEyesDao 


[11/3/11 15:53:42:161 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.FourEyesDao interface of
the 
FourEyesDaoEjb enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.dao.FourEyesDao 

[11/3/11 15:53:42:389 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.readers.wss.LogDao
interface of 
the LogDaoEjb enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/LogDaoEjb#biz.wss
.server.services.local.dao.readers.wss.LogDao 


[11/3/11 15:53:42:392 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.readers.wss.LogDao
interface of 
the LogDaoEjb enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.dao.readers.wss.LogDao 

[11/3/11 15:53:42:427 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.mm.inquiry.GapDateDiscountFactorServiceRemot
e 
interface of the GapDateDiscountFactorInquiryServiceEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/GapDateDiscountFactorInquiryService 

[11/3/11 15:53:42:429 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.mm.inquiry.GapDateDiscountFactorService 
interface of the GapDateDiscountFactorInquiryServiceEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/GapDateDiscountFactorInquiryService 

[11/3/11 15:53:42:432 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.portfolio.PortfolioDAO
interface of 
the PortfolioDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PortfolioDAOEJB#b
iz.wss.server.services.local.portfolio.PortfolioDAO 


[11/3/11 15:53:42:434 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.portfolio.PortfolioDAO
interface of 
the PortfolioDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.portfolio.PortfolioDAO 

[11/3/11 15:53:42:436 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.messages.actionrequests.RequestMsgIniti
alise 
interface of the RequestMsgInitialiseEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/RequestMsgInitial
iseEJB#biz.wss.server.services.local.bo.messages.actionrequests.RequestM
sgInitialise 


[11/3/11 15:53:42:439 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.messages.actionrequests.RequestMsgIniti
alise 
interface of the RequestMsgInitialiseEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.messages.actionrequests.Reques
tMsgInitialise 


[11/3/11 15:53:42:475 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.user.TraderGroupServiceRemote
interface 
of the TraderGroupServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/TraderGroupService 

[11/3/11 15:53:42:477 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.user.TraderGroupService
interface of the 
TraderGroupServiceEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/TraderGroupService 

[11/3/11 15:53:42:480 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.GenericWebService
interface of 
the GenericWebServiceEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/GenericWebService
Ejb#biz.wss.interfaces.services.foureyes.GenericWebService 


[11/3/11 15:53:42:483 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.GenericWebService
interface of 
the GenericWebServiceEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.foureyes.GenericWebService 

[11/3/11 15:53:42:485 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.TaskControllerService
interface of 
the TaskControllerServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/TaskControllerSer
viceEJB#biz.wss.server.services.workflow.TaskControllerService 


[11/3/11 15:53:42:488 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.TaskControllerService
interface of 
the TaskControllerServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.workflow.TaskControllerService 

[11/3/11 15:53:42:490 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.inquiry.InquiryServiceRemote
interface 
of the FOInquiryServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/FOInquiryService 

[11/3/11 15:53:42:492 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.inquiry.InquiryServiceLocal
interface of 
the FOInquiryServiceEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/FOInquiryService 

[11/3/11 15:53:42:507 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.foureyes.ejb.p4exes.ValVarDao 
interface of the ValVarDaoEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/ValVarDaoEjb#biz.
wss.server.services.local.foureyes.ejb.p4exes.ValVarDao 


[11/3/11 15:53:42:509 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.foureyes.ejb.p4exes.ValVarDao 
interface of the ValVarDaoEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.foureyes.ejb.p4exes.ValVarDao 

[11/3/11 15:53:42:513 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.AuditMakerRetrieval
interface 
of the AuditMakerRetrievalEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/AuditMakerRetriev
alEjb#biz.wss.interfaces.services.foureyes.AuditMakerRetrieval 


[11/3/11 15:53:42:515 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.AuditMakerRetrieval
interface 
of the AuditMakerRetrievalEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.foureyes.AuditMakerRetrieval 

[11/3/11 15:53:42:518 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.renotify.BOReNotificationWorkFlowServiceL
ocal 
interface of the BOReNotificationWorkFlowServiceEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/BOReNotificationW
orkFlowServiceEJB#biz.wss.interfaces.services.bo.renotify.BOReNotificati
onWorkFlowServiceLocal 


[11/3/11 15:53:42:521 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.renotify.BOReNotificationWorkFlowServiceL
ocal 
interface of the BOReNotificationWorkFlowServiceEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.renotify.BOReNotificationWorkFlo
wServiceLocal 


[11/3/11 15:53:42:523 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.api.FXConfigurationDAO
interface of 
the FXConfigurationDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/FXConfigurationDA
OEJB#biz.wss.server.services.local.api.FXConfigurationDAO 


[11/3/11 15:53:42:525 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.api.FXConfigurationDAO
interface of 
the FXConfigurationDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.api.FXConfigurationDAO 

[11/3/11 15:53:42:528 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate6DAO 

interface of the PositionCounterpartyCcyPairUpdate6DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairUpdate6DAOEJB#biz.wss.server.services.local.position.counterpa
rty.volumeupdaters.PositionCounterpartyCcyPairUpdate6DAO 


[11/3/11 15:53:42:530 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate6DAO 

interface of the PositionCounterpartyCcyPairUpdate6DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.volumeupdat
ers.PositionCounterpartyCcyPairUpdate6DAO 


[11/3/11 15:53:42:532 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.queue.counts.SqmCountersDAO 
interface of the SqmCountersDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/SqmCountersDAOEJB
#biz.wss.server.services.local.bo.settlement.queue.counts.SqmCountersDAO



[11/3/11 15:53:42:535 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.queue.counts.SqmCountersDAO 
interface of the SqmCountersDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.settlement.queue.counts.SqmCou
ntersDAO 

[11/3/11 15:53:42:537 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.PositionCounterparty
CcyDAO 
interface of the PositionCounterpartyCcyDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyDAOEJB#biz.wss.server.services.local.position.counterparty.Positio
nCounterpartyCcyDAO 


[11/3/11 15:53:42:539 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.PositionCounterparty
CcyDAO 
interface of the PositionCounterpartyCcyDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.PositionCou
nterpartyCcyDAO 


[11/3/11 15:53:42:541 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.rules.RuleConditionsDAO
interface 
of the RuleConditionsDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/RuleConditionsDAO
EJB#biz.wss.server.services.local.bo.rules.RuleConditionsDAO 


[11/3/11 15:53:42:543 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.rules.RuleConditionsDAO
interface 
of the RuleConditionsDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.rules.RuleConditionsDAO 

[11/3/11 15:53:42:546 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.ouracc.OurAccDAO interface
of the 
OurAccDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/OurAccDAOEJB#biz.
wss.server.services.local.bo.ouracc.OurAccDAO 


[11/3/11 15:53:42:548 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.ouracc.OurAccDAO interface
of the 
OurAccDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.bo.ouracc.OurAccDAO 

[11/3/11 15:53:42:553 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.repair.DealRepairService
Remote 
interface of the DealRepairServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/DealRepairService 

[11/3/11 15:53:42:555 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.repair.DealRepairService
Local 
interface of the DealRepairServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/DealRepairService 

[11/3/11 15:53:42:557 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.foureyes.ejb.promoter.UpdateOtherEntityHel
per 
interface of the UpdateOtherEntityHelperEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/UpdateOtherEntity
HelperEjb#biz.wss.server.services.local.foureyes.ejb.promoter.UpdateOthe
rEntityHelper 


[11/3/11 15:53:42:560 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.foureyes.ejb.promoter.UpdateOtherEntityHel
per 
interface of the UpdateOtherEntityHelperEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.foureyes.ejb.promoter.UpdateOther
EntityHelper 


[11/3/11 15:53:42:562 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.dataelement.DataElementDAO 
interface of the DataElementDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/DataElementDAOEJB
#biz.wss.server.services.local.bo.dataelement.DataElementDAO 


[11/3/11 15:53:42:564 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.dataelement.DataElementDAO 
interface of the DataElementDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.dataelement.DataElementDAO 

[11/3/11 15:53:42:569 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.pricing.RateServiceRemote
interface 
of the RateServiceEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is:
WSS/RateService 

[11/3/11 15:53:42:571 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.pricing.RateService interface
of the 
RateServiceEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is:
ejblocal:WSS/RateService 

[11/3/11 15:53:42:574 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.jms.TimedMessageDrainer
interface of 
the TimedMessageDrainerEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/TimedMessageDrain
erEJB#biz.wss.server.services.local.jms.TimedMessageDrainer 


[11/3/11 15:53:42:576 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.jms.TimedMessageDrainer
interface of 
the TimedMessageDrainerEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.jms.TimedMessageDrainer 

[11/3/11 15:53:42:578 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate5DAO 

interface of the PositionPortfolioCcyPairUpdate5DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairUpdate5DAOEJB#biz.wss.server.services.local.position.portfolio.vo
lumeupdaters.PositionPortfolioCcyPairUpdate5DAO 


[11/3/11 15:53:42:580 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate5DAO 

interface of the PositionPortfolioCcyPairUpdate5DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.volumeupdaters
.PositionPortfolioCcyPairUpdate5DAO 


[11/3/11 15:53:42:584 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.cashflow.HedgeEquivalentsServiceRemote 
interface of the HedgeEquivalentsServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/HedgeEquivalentsService 

[11/3/11 15:53:42:585 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.cashflow.HedgeEquivalentsService

interface of the HedgeEquivalentsServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/HedgeEquivalentsService 

[11/3/11 15:53:42:588 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.area.AreaUnitUtilsDAO
interface of the 
AreaUnitUtilsDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/AreaUnitUtilsDAOE
JB#biz.wss.server.services.local.area.AreaUnitUtilsDAO 


[11/3/11 15:53:42:590 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.area.AreaUnitUtilsDAO
interface of the 
AreaUnitUtilsDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.area.AreaUnitUtilsDAO 

[11/3/11 15:53:42:594 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.dealdetails.DealHistoryServiceRemote 
interface of the DealHistoryServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/DealHistoryService 

[11/3/11 15:53:42:596 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.dealdetails.DealHistoryService 
interface of the DealHistoryServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/DealHistoryService 

[11/3/11 15:53:42:598 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.liquidity.LiquidityGroupDAO
interface 
of the LiquidityGroupDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/LiquidityGroupDAO
EJB#biz.wss.server.services.local.liquidity.LiquidityGroupDAO 


[11/3/11 15:53:42:601 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.liquidity.LiquidityGroupDAO
interface 
of the LiquidityGroupDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.liquidity.LiquidityGroupDAO 

[11/3/11 15:53:42:603 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.cashflow.BoCashFlowDAO
interface of 
the BoCashFlowDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/BoCashFlowDAOEJB#
biz.wss.server.services.local.bo.cashflow.BoCashFlowDAO 


[11/3/11 15:53:42:607 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.cashflow.BoCashFlowDAO
interface of 
the BoCashFlowDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.bo.cashflow.BoCashFlowDAO 

[11/3/11 15:53:42:610 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.pricing.MarginPointsServiceRemote 
interface of the MarginPointsServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/MarginPointsService 

[11/3/11 15:53:42:611 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.pricing.MarginPointsService
interface 
of the MarginPointsServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/MarginPointsService 

[11/3/11 15:53:42:683 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.pricing.fotinfo.FotDAORemote 
interface of the FotDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/FotDAO 

[11/3/11 15:53:42:685 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.pricing.fotinfo.FotDAO
interface of 
the FotDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is:
ejblocal:WSS/FotDAO 

[11/3/11 15:53:42:689 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.register.RegisterEntity

interface of the RegisterEntityEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/RegisterEntityEjb
#biz.wss.interfaces.services.foureyes.register.RegisterEntity 


[11/3/11 15:53:42:691 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.register.RegisterEntity

interface of the RegisterEntityEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.foureyes.register.RegisterEntity 

[11/3/11 15:53:42:693 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.queue.audit.SqmActionsAuditD
AO 
interface of the SqmActionsAuditDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/SqmActionsAuditDA
OEJB#biz.wss.server.services.local.bo.settlement.queue.audit.SqmActionsA
uditDAO 


[11/3/11 15:53:42:696 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.queue.audit.SqmActionsAuditD
AO 
interface of the SqmActionsAuditDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.settlement.queue.audit.SqmActi
onsAuditDAO 


[11/3/11 15:53:42:698 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.alert.AlarmDAO interface of
the 
AlarmDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/AlarmDAOEJB#biz.w
ss.server.services.local.bo.alert.AlarmDAO 


[11/3/11 15:53:42:700 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.alert.AlarmDAO interface of
the 
AlarmDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.bo.alert.AlarmDAO 

[11/3/11 15:53:42:704 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.quickpnl.PNLMonitoringServiceRemote 
interface of the PNLMonitoringServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/PNLMonitoringService 

[11/3/11 15:53:42:705 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.quickpnl.PNLMonitoringService
interface 
of the PNLMonitoringServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/PNLMonitoringService 

[11/3/11 15:53:42:721 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.cancel.BOTradeCancellationWorkFlowSe
rviceLocal 

interface of the BOTradeCancellationWorkFlowServiceEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/BOTradeCancellati
onWorkFlowServiceEJB#biz.wss.interfaces.services.bo.deal.cancel.BOTradeC
ancellationWorkFlowServiceLocal 


[11/3/11 15:53:42:724 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.cancel.BOTradeCancellationWorkFlowSe
rviceLocal 

interface of the BOTradeCancellationWorkFlowServiceEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.deal.cancel.BOTradeCancellationW
orkFlowServiceLocal 


[11/3/11 15:53:42:726 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.readers.GenericReadOnlyDao

interface of the GenericReadOnlyDaoEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/GenericReadOnlyDa
oEjb#biz.wss.server.services.local.dao.readers.GenericReadOnlyDao 


[11/3/11 15:53:42:728 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.readers.GenericReadOnlyDao

interface of the GenericReadOnlyDaoEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.dao.readers.GenericReadOnlyDao 

[11/3/11 15:53:42:731 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.cmmintegration.TransactionEventExportPr
ofileDAO 
interface of the TransactionEventExportProfileDAOEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/TransactionEventE
xportProfileDAOEJB#biz.wss.server.services.local.bo.cmmintegration.Trans
actionEventExportProfileDAO 


[11/3/11 15:53:42:733 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.cmmintegration.TransactionEventExportPr
ofileDAO 
interface of the TransactionEventExportProfileDAOEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.cmmintegration.TransactionEven
tExportProfileDAO 


[11/3/11 15:53:42:759 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.settlement.queue.SqmQueueDAO 
interface of the SqmQueueDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/SqmQueueDAOEJB#bi
z.wss.server.services.local.bo.settlement.queue.SqmQueueDAO 


[11/3/11 15:53:42:762 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.settlement.queue.SqmQueueDAO 
interface of the SqmQueueDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.settlement.queue.SqmQueueDAO 

[11/3/11 15:53:42:766 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.api.APIDao interface of the
APIDaoEjb 
enterprise bean in the Bedrock.server.services.local.jar module of the 
Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/APIDaoEjb#biz.wss
.interfaces.services.api.APIDao 


[11/3/11 15:53:42:768 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.api.APIDao interface of the
APIDaoEjb 
enterprise bean in the Bedrock.server.services.local.jar module of the 
Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.services.api.APIDao 

[11/3/11 15:53:42:782 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.foureyes.ejb.p4exes.GenericP4Executor 
interface of the GenericP4ExecutorEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/GenericP4Executor
Ejb#biz.wss.server.services.local.foureyes.ejb.p4exes.GenericP4Executor 


[11/3/11 15:53:42:785 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.foureyes.ejb.p4exes.GenericP4Executor 
interface of the GenericP4ExecutorEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.foureyes.ejb.p4exes.GenericP4Exec
utor 

[11/3/11 15:53:42:787 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate3DAO 

interface of the PositionCounterpartyCcyPairUpdate3DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairUpdate3DAOEJB#biz.wss.server.services.local.position.counterpa
rty.volumeupdaters.PositionCounterpartyCcyPairUpdate3DAO 


[11/3/11 15:53:42:791 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate3DAO 

interface of the PositionCounterpartyCcyPairUpdate3DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.volumeupdat
ers.PositionCounterpartyCcyPairUpdate3DAO 


[11/3/11 15:53:42:794 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.marvol.MarginVolumeUpdateService 
interface of the MarginVolumeUpdateServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/MarginVolumeUpdat
eServiceEJB#biz.wss.interfaces.services.fx.marvol.MarginVolumeUpdateServ
ice 


[11/3/11 15:53:42:797 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.marvol.MarginVolumeUpdateService 
interface of the MarginVolumeUpdateServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.fx.marvol.MarginVolumeUpdateService


[11/3/11 15:53:42:799 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.ssi.TheirSSIDAO interface
of the 
TheirSSIDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/TheirSSIDAOEJB#bi
z.wss.server.services.local.bo.ssi.TheirSSIDAO 


[11/3/11 15:53:42:801 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.ssi.TheirSSIDAO interface
of the 
TheirSSIDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.bo.ssi.TheirSSIDAO 

[11/3/11 15:53:42:803 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.cparty.cycle.CustomerCycleDAO 
interface of the CustomerCycleDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/CustomerCycleDAOE
JB#biz.wss.server.services.local.cparty.cycle.CustomerCycleDAO 


[11/3/11 15:53:42:806 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.cparty.cycle.CustomerCycleDAO 
interface of the CustomerCycleDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.cparty.cycle.CustomerCycleDAO 

[11/3/11 15:53:42:808 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.intermodule.data.InterModuleDataDAO interface
of the 
InterModuleDataDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/InterModuleDataDA
OEJB#biz.wss.server.intermodule.data.InterModuleDataDAO 


[11/3/11 15:53:42:810 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.intermodule.data.InterModuleDataDAO interface
of the 
InterModuleDataDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.intermodule.data.InterModuleDataDAO 

[11/3/11 15:53:42:815 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate2DAO 

interface of the PositionPortfolioCcyPairUpdate2DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairUpdate2DAOEJB#biz.wss.server.services.local.position.portfolio.vo
lumeupdaters.PositionPortfolioCcyPairUpdate2DAO 


[11/3/11 15:53:42:818 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate2DAO 

interface of the PositionPortfolioCcyPairUpdate2DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.volumeupdaters
.PositionPortfolioCcyPairUpdate2DAO 


[11/3/11 15:53:42:841 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.messageengine.response.ExtMessageEngineMs
gResponseService 

interface of the ExtMessageEngineMsgResponseServiceEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/ExtMessageEngineM
sgResponseServiceEJB#biz.wss.interfaces.services.bo.messageengine.respon
se.ExtMessageEngineMsgResponseService 


[11/3/11 15:53:42:844 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.messageengine.response.ExtMessageEngineMs
gResponseService 

interface of the ExtMessageEngineMsgResponseServiceEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.messageengine.response.ExtMessag
eEngineMsgResponseService 


[11/3/11 15:53:42:847 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.usermessage.UserMessageService
interface 
of the UserMessageServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/UserMessageServic
eEJB#biz.wss.interfaces.services.usermessage.UserMessageService 


[11/3/11 15:53:42:849 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.usermessage.UserMessageService
interface 
of the UserMessageServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.usermessage.UserMessageService 

[11/3/11 15:53:42:852 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.receipt.ReceiptSchedulerDAO

interface of the ReceiptSchedulerDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/ReceiptSchedulerD
AOEJB#biz.wss.server.services.local.bo.receipt.ReceiptSchedulerDAO 


[11/3/11 15:53:42:854 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.receipt.ReceiptSchedulerDAO

interface of the ReceiptSchedulerDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.receipt.ReceiptSchedulerDAO 

[11/3/11 15:53:42:866 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.deal.details.swiftmessage.SwiftMessageD
etailDAO 
interface of the SwiftMessageDetailDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/SwiftMessageDetai
lDAOEJB#biz.wss.server.services.local.bo.deal.details.swiftmessage.Swift
MessageDetailDAO 


[11/3/11 15:53:42:869 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.deal.details.swiftmessage.SwiftMessageD
etailDAO 
interface of the SwiftMessageDetailDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.deal.details.swiftmessage.Swif
tMessageDetailDAO 


[11/3/11 15:53:42:888 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.ssi.SSIServiceRemote interface
of the 
SSIServiceEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: WSS/SSIService 

[11/3/11 15:53:42:889 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.ssi.SSIServiceLocal interface of
the 
SSIServiceEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is:
ejblocal:WSS/SSIService 

[11/3/11 15:53:42:892 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.queue.move.SqmQueueMoveDAO
interface 
of the SqmQueueMoveDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/SqmQueueMoveDAOEJ
B#biz.wss.server.services.local.bo.settlement.queue.move.SqmQueueMoveDAO



[11/3/11 15:53:42:895 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.queue.move.SqmQueueMoveDAO
interface 
of the SqmQueueMoveDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.settlement.queue.move.SqmQueue
MoveDAO 

[11/3/11 15:53:42:899 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.register.BOTradeRegistrationWorkFlow
ServiceLocal 

interface of the BOTradeRegistrationWorkFlowServiceEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/BOTradeRegistrati
onWorkFlowServiceEJB#biz.wss.interfaces.services.bo.deal.register.BOTrad
eRegistrationWorkFlowServiceLocal 


[11/3/11 15:53:42:903 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.register.BOTradeRegistrationWorkFlow
ServiceLocal 

interface of the BOTradeRegistrationWorkFlowServiceEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.deal.register.BOTradeRegistratio
nWorkFlowServiceLocal 


[11/3/11 15:53:43:052 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.alert.messagetext.MessageTextDAO 
interface of the MessageTextDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/MessageTextDAOEJB
#biz.wss.server.services.local.bo.alert.messagetext.MessageTextDAO 


[11/3/11 15:53:43:062 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.alert.messagetext.MessageTextDAO 
interface of the MessageTextDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.alert.messagetext.MessageTextD
AO 

[11/3/11 15:53:43:064 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate10DAO 

interface of the PositionPortfolioCcyPairUpdate10DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairUpdate10DAOEJB#biz.wss.server.services.local.position.portfolio.v
olumeupdaters.PositionPortfolioCcyPairUpdate10DAO 


[11/3/11 15:53:43:067 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate10DAO 

interface of the PositionPortfolioCcyPairUpdate10DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.volumeupdaters
.PositionPortfolioCcyPairUpdate10DAO 


[11/3/11 15:53:43:069 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.notification.FinMsgNotificationService
interface 
of the FinMsgNotificationServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/FinMsgNotificatio
nServiceEJB#biz.wss.interfaces.services.bo.notification.FinMsgNotificati
onService 


[11/3/11 15:53:43:072 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.notification.FinMsgNotificationService
interface 
of the FinMsgNotificationServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.notification.FinMsgNotificationS
ervice 

[11/3/11 15:53:43:075 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.record.WssCoreDealNumService
interface 
of the WssCoreDealNumServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/WssCoreDealNumSer
viceEJB#biz.wss.server.services.local.record.WssCoreDealNumService 


[11/3/11 15:53:43:078 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.record.WssCoreDealNumService
interface 
of the WssCoreDealNumServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.record.WssCoreDealNumService 

[11/3/11 15:53:43:081 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.settlement.SettlementcentreDAO 
interface of the SettlementcentreDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/SettlementcentreD
AOEJB#biz.wss.server.services.local.bo.settlement.SettlementcentreDAO 


[11/3/11 15:53:43:092 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.settlement.SettlementcentreDAO 
interface of the SettlementcentreDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.settlement.SettlementcentreDAO


[11/3/11 15:53:43:097 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.pro4blocker.Pro4RecordSaver
interface of 
the Pro4SaverEjb enterprise bean in the
Bedrock.server.services.local.jar module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/Pro4SaverEjb#biz.
wss.interfaces.services.pro4blocker.Pro4RecordSaver 


[11/3/11 15:53:43:100 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.pro4blocker.Pro4RecordSaver
interface of 
the Pro4SaverEjb enterprise bean in the
Bedrock.server.services.local.jar module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.services.pro4blocker.Pro4RecordSaver 

[11/3/11 15:53:43:116 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.PositionCounterparty
CcyPairDAO 

interface of the PositionCounterpartyCcyPairDAOEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairDAOEJB#biz.wss.server.services.local.position.counterparty.Pos
itionCounterpartyCcyPairDAO 


[11/3/11 15:53:43:119 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.PositionCounterparty
CcyPairDAO 

interface of the PositionCounterpartyCcyPairDAOEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.PositionCou
nterpartyCcyPairDAO 


[11/3/11 15:53:43:122 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.dao.readers.wss.PositionReaderDAO 
interface of the PositionReaderDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionReaderDAO
EJB#biz.wss.server.services.local.dao.readers.wss.PositionReaderDAO 


[11/3/11 15:53:43:125 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.dao.readers.wss.PositionReaderDAO 
interface of the PositionReaderDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.dao.readers.wss.PositionReaderDAO


[11/3/11 15:53:43:127 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.netting.CashFlowNettingWorke
rService 
interface of the CashFlowNettingWorkerServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/CashFlowNettingWo
rkerServiceEJB#biz.wss.server.services.local.bo.settlement.netting.CashF
lowNettingWorkerService 


[11/3/11 15:53:43:130 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.netting.CashFlowNettingWorke
rService 
interface of the CashFlowNettingWorkerServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.settlement.netting.CashFlowNet
tingWorkerService 


[11/3/11 15:53:43:133 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate8DAO 

interface of the PositionCounterpartyCcyPairUpdate8DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairUpdate8DAOEJB#biz.wss.server.services.local.position.counterpa
rty.volumeupdaters.PositionCounterpartyCcyPairUpdate8DAO 


[11/3/11 15:53:43:135 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate8DAO 

interface of the PositionCounterpartyCcyPairUpdate8DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.volumeupdat
ers.PositionCounterpartyCcyPairUpdate8DAO 


[11/3/11 15:53:43:138 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.currency.CurrencyDAO interface
of the 
CurrencyDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/CurrencyDAOEJB#bi
z.wss.server.services.local.currency.CurrencyDAO 


[11/3/11 15:53:43:140 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.currency.CurrencyDAO interface
of the 
CurrencyDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.currency.CurrencyDAO 

[11/3/11 15:53:43:162 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.modify.BOTradeModificationWorkFlowSe
rviceLocal 

interface of the BOTradeModificationWorkFlowServiceEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/BOTradeModificati
onWorkFlowServiceEJB#biz.wss.interfaces.services.bo.deal.modify.BOTradeM
odificationWorkFlowServiceLocal 


[11/3/11 15:53:43:164 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.modify.BOTradeModificationWorkFlowSe
rviceLocal 

interface of the BOTradeModificationWorkFlowServiceEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.deal.modify.BOTradeModificationW
orkFlowServiceLocal 


[11/3/11 15:53:43:167 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.customer.CustomerDAO interface
of the 
CustomerDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/CustomerDAOEJB#bi
z.wss.server.services.local.customer.CustomerDAO 


[11/3/11 15:53:43:170 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.customer.CustomerDAO interface
of the 
CustomerDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.customer.CustomerDAO 

[11/3/11 15:53:43:172 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.JobControllerService
interface of 
the JobControllerServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/JobControllerServ
iceEJB#biz.wss.server.services.workflow.JobControllerService 


[11/3/11 15:53:43:175 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.JobControllerService
interface of 
the JobControllerServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.workflow.JobControllerService 

[11/3/11 15:53:43:178 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.heartbeat.HeartbeatServiceRemote

interface of the HeartbeatServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/HeartbeatService 

[11/3/11 15:53:43:183 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.heartbeat.HeartbeatService
interface of 
the HeartbeatServiceEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/HeartbeatService 

[11/3/11 15:53:43:194 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate7DAO 

interface of the PositionPortfolioCcyPairUpdate7DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairUpdate7DAOEJB#biz.wss.server.services.local.position.portfolio.vo
lumeupdaters.PositionPortfolioCcyPairUpdate7DAO 


[11/3/11 15:53:43:197 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate7DAO 

interface of the PositionPortfolioCcyPairUpdate7DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.volumeupdaters
.PositionPortfolioCcyPairUpdate7DAO 


[11/3/11 15:53:43:199 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.messages.acknak.AckNakCountersDAO 
interface of the AckNakCountersDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/AckNakCountersDAO
EJB#biz.wss.server.services.local.bo.messages.acknak.AckNakCountersDAO 


[11/3/11 15:53:43:202 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.messages.acknak.AckNakCountersDAO 
interface of the AckNakCountersDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.messages.acknak.AckNakCounters
DAO 

[11/3/11 15:53:43:205 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.workflow.WorkflowInquiryServiceRemote 
interface of the WorkflowInquiryServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/WorkflowInquiryService 

[11/3/11 15:53:43:208 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.workflow.WorkflowInquiryService 
interface of the WorkflowInquiryServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/WorkflowInquiryService 

[11/3/11 15:53:43:212 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.IdProvider interface of
the 
IdProviderEjb enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/IdProviderEjb#biz
.wss.server.services.local.dao.IdProvider 


[11/3/11 15:53:43:214 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.IdProvider interface of
the 
IdProviderEjb enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.dao.IdProvider 

[11/3/11 15:53:43:218 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.workflow.WorkflowRecoveryServiceRemote 
interface of the WorkflowRecoveryServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/WorkflowRecoveryService 

[11/3/11 15:53:43:219 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.workflow.WorkflowRecoveryService

interface of the WorkflowRecoveryServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/WorkflowRecoveryService 

[11/3/11 15:53:43:224 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.transaction.FoTransactionServiceRemote 
interface of the FoTransactionServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/FoTransactionService 

[11/3/11 15:53:43:226 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.transaction.FoTransactionServiceLocal 
interface of the FoTransactionServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/FoTransactionService 

[11/3/11 15:53:43:230 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.user.SalesForceService interface
of the 
SalesForceServiceEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
WSS/SalesForceService 

[11/3/11 15:53:43:231 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.user.SalesForceServiceLocal
interface of 
the SalesForceServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/SalesForceService 

[11/3/11 15:53:43:248 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.messages.dao.FinancialMessageContentDAO

interface of the FinancialMessageContentDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/FinancialMessageC
ontentDAOEJB#biz.wss.server.services.local.bo.messages.dao.FinancialMess
ageContentDAO 


[11/3/11 15:53:43:250 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.messages.dao.FinancialMessageContentDAO

interface of the FinancialMessageContentDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.messages.dao.FinancialMessageC
ontentDAO 

[11/3/11 15:53:43:255 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.messages.MessageRequestServiceRemote 
interface of the MessageRequestServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/MessageRequestService 

[11/3/11 15:53:43:257 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.messages.MessageRequestServiceLocal 
interface of the MessageRequestServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/MessageRequestService 

[11/3/11 15:53:43:259 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.messages.dao.MessageRequestDAO 
interface of the MessageRequestDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/MessageRequestDAO
EJB#biz.wss.server.services.local.bo.messages.dao.MessageRequestDAO 


[11/3/11 15:53:43:262 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.messages.dao.MessageRequestDAO 
interface of the MessageRequestDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.messages.dao.MessageRequestDAO


[11/3/11 15:53:43:275 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.dao.IdProviderNewTransactionForcer 
interface of the IdProviderNewTransactionForcerEjb enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/IdProviderNewTran
sactionForcerEjb#biz.wss.server.services.local.dao.IdProviderNewTransact
ionForcer 


[11/3/11 15:53:43:278 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.dao.IdProviderNewTransactionForcer 
interface of the IdProviderNewTransactionForcerEjb enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.dao.IdProviderNewTransactionForce
r 

[11/3/11 15:53:43:282 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.transaction.TradingStatisticsServiceRemote
interface 
of the TradingStatisticsServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/TradingStatisticsService 

[11/3/11 15:53:43:284 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.transaction.TradingStatisticsService 
interface of the TradingStatisticsServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/TradingStatisticsService 

[11/3/11 15:53:43:287 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate5DAO 

interface of the PositionCounterpartyCcyPairUpdate5DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairUpdate5DAOEJB#biz.wss.server.services.local.position.counterpa
rty.volumeupdaters.PositionCounterpartyCcyPairUpdate5DAO 


[11/3/11 15:53:43:289 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate5DAO 

interface of the PositionCounterpartyCcyPairUpdate5DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.volumeupdat
ers.PositionCounterpartyCcyPairUpdate5DAO 


[11/3/11 15:53:43:293 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.security.Authorisation
interface of 
the AuthorisationEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/AuthorisationEJB#
biz.wss.server.services.local.security.Authorisation 


[11/3/11 15:53:43:296 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.security.Authorisation
interface of 
the AuthorisationEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.security.Authorisation 

[11/3/11 15:53:43:299 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.security.JaasWssServiceRemote
interface 
of the JaasWssServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/JaasWssService 

[11/3/11 15:53:43:301 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.security.JaasWssService
interface of the 
JaasWssServiceEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/JaasWssService 

[11/3/11 15:53:43:304 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.ndl.NewDealDAO interface of
the 
NewDealDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/NewDealDAOEJB#biz
.wss.server.services.workflow.ndl.NewDealDAO 


[11/3/11 15:53:43:306 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.ndl.NewDealDAO interface of
the 
NewDealDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.workflow.ndl.NewDealDAO 

[11/3/11 15:53:43:309 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.NextState interface of
the 
NextStateEjb enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/NextStateEjb#biz.
wss.interfaces.services.foureyes.NextState 


[11/3/11 15:53:43:312 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.NextState interface of
the 
NextStateEjb enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.services.foureyes.NextState 

[11/3/11 15:53:43:315 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.usersetup.PersistenceServiceDAO
interface of 
the PersistenceServiceDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PersistenceServic
eDAOEJB#biz.wss.server.services.usersetup.PersistenceServiceDAO 


[11/3/11 15:53:43:318 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.usersetup.PersistenceServiceDAO
interface of 
the PersistenceServiceDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.usersetup.PersistenceServiceDAO 

[11/3/11 15:53:43:320 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.cmmintegration.TransactionEventCashflow
DAO 
interface of the TransactionEventCashflowDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/TransactionEventC
ashflowDAOEJB#biz.wss.server.services.local.bo.cmmintegration.Transactio
nEventCashflowDAO 


[11/3/11 15:53:43:323 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.cmmintegration.TransactionEventCashflow
DAO 
interface of the TransactionEventCashflowDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.cmmintegration.TransactionEven
tCashflowDAO 


[11/3/11 15:53:43:326 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate4DAO 

interface of the PositionPortfolioCcyPairUpdate4DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairUpdate4DAOEJB#biz.wss.server.services.local.position.portfolio.vo
lumeupdaters.PositionPortfolioCcyPairUpdate4DAO 


[11/3/11 15:53:43:331 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate4DAO 

interface of the PositionPortfolioCcyPairUpdate4DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.volumeupdaters
.PositionPortfolioCcyPairUpdate4DAO 


[11/3/11 15:53:43:334 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.queue.matrix.SqmQueueMatrixD
AO 
interface of the SqmQueueMatrixDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/SqmQueueMatrixDAO
EJB#biz.wss.server.services.local.bo.settlement.queue.matrix.SqmQueueMat
rixDAO 


[11/3/11 15:53:43:337 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.queue.matrix.SqmQueueMatrixD
AO 
interface of the SqmQueueMatrixDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.settlement.queue.matrix.SqmQue
ueMatrixDAO 


[11/3/11 15:53:43:340 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.messages.actionrequests.RequestMsgBulkP
rocessor 
interface of the RequestMsgBulkProcessorEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/RequestMsgBulkPro
cessorEJB#biz.wss.server.services.local.bo.messages.actionrequests.Reque
stMsgBulkProcessor 


[11/3/11 15:53:43:343 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.messages.actionrequests.RequestMsgBulkP
rocessor 
interface of the RequestMsgBulkProcessorEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.messages.actionrequests.Reques
tMsgBulkProcessor 


[11/3/11 15:53:43:346 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.notification.BOTradeNotificationServiceLo
cal 
interface of the BOTradeNotificationServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/BOTradeNotificati
onServiceEJB#biz.wss.interfaces.services.bo.notification.BOTradeNotifica
tionServiceLocal 


[11/3/11 15:53:43:348 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.notification.BOTradeNotificationServiceLo
cal 
interface of the BOTradeNotificationServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.notification.BOTradeNotification
ServiceLocal 


[11/3/11 15:53:43:354 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.deal.book.BookNewDealServiceRemote 
interface of the BookNewDealServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/BookNewDealService 

[11/3/11 15:53:43:356 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.deal.book.BookNewDealService 
interface of the BookNewDealServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/BookNewDealService 

[11/3/11 15:53:43:360 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.cashflow.CashFlowDetailsDAORemote 
interface of the CashFlowDetailsDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/CashFlowDetailsDAO 

[11/3/11 15:53:43:361 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.cashflow.CashFlowDetailsDAO
interface of 
the CashFlowDetailsDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/CashFlowDetailsDAO 

[11/3/11 15:53:43:365 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.api.FXCaptureAPIExtendedInfoServiceRemote
interface 
of the FXCaptureAPIExtendedInfoServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/FXCaptureAPIExtendedInfoService 

[11/3/11 15:53:43:366 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.api.FXCaptureAPIExtendedInfoService 
interface of the FXCaptureAPIExtendedInfoServiceEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/FXCaptureAPIExtendedInfoService 

[11/3/11 15:53:43:369 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.api.InterfaceCodesDAO
interface of the 
InterfaceCodesDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/InterfaceCodesDAO
EJB#biz.wss.server.services.local.api.InterfaceCodesDAO 


[11/3/11 15:53:43:372 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.api.InterfaceCodesDAO
interface of the 
InterfaceCodesDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.api.InterfaceCodesDAO 

[11/3/11 15:53:43:375 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.rules.RuleSetDAO interface
of the 
RuleSetDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/RuleSetDAOEJB#biz
.wss.server.services.local.bo.rules.RuleSetDAO 


[11/3/11 15:53:43:377 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.rules.RuleSetDAO interface
of the 
RuleSetDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.bo.rules.RuleSetDAO 

[11/3/11 15:53:43:380 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.inquiry.InquiryServiceRemote
interface 
of the BOInquiryServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/BOInquiryService 

[11/3/11 15:53:43:381 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.inquiry.InquiryServiceLocal
interface of 
the BOInquiryServiceEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/BOInquiryService 

[11/3/11 15:53:43:400 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate2DAO 

interface of the PositionCounterpartyCcyPairUpdate2DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairUpdate2DAOEJB#biz.wss.server.services.local.position.counterpa
rty.volumeupdaters.PositionCounterpartyCcyPairUpdate2DAO 


[11/3/11 15:53:43:403 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate2DAO 

interface of the PositionCounterpartyCcyPairUpdate2DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.volumeupdat
ers.PositionCounterpartyCcyPairUpdate2DAO 


[11/3/11 15:53:43:406 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.system.PerformanceMonitor
interface of 
the PerformanceMonitorEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PerformanceMonito
rEJB#biz.wss.interfaces.services.system.PerformanceMonitor 


[11/3/11 15:53:43:409 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.system.PerformanceMonitor
interface of 
the PerformanceMonitorEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.system.PerformanceMonitor 

[11/3/11 15:53:43:424 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.pricing.SpreadSkewServiceRemote 
interface of the SpreadSkewServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/SpreadSkewService 

[11/3/11 15:53:43:425 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.pricing.SpreadSkewService
interface 
of the SpreadSkewServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/SpreadSkewService 

[11/3/11 15:53:43:428 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate1DAO 

interface of the PositionPortfolioCcyPairUpdate1DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairUpdate1DAOEJB#biz.wss.server.services.local.position.portfolio.vo
lumeupdaters.PositionPortfolioCcyPairUpdate1DAO 


[11/3/11 15:53:43:430 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate1DAO 

interface of the PositionPortfolioCcyPairUpdate1DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.volumeupdaters
.PositionPortfolioCcyPairUpdate1DAO 


[11/3/11 15:53:43:432 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.cmmintegration.CashRecordVersionsDAO
interface 
of the CashRecordVersionsDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/CashRecordVersion
sDAOEJB#biz.wss.server.services.local.bo.cmmintegration.CashRecordVersio
nsDAO 


[11/3/11 15:53:43:434 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.cmmintegration.CashRecordVersionsDAO
interface 
of the CashRecordVersionsDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.cmmintegration.CashRecordVersi
onsDAO 

[11/3/11 15:53:43:437 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.system.ServiceStateManager
interface of 
the ServiceStateManagerEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/ServiceStateManag
erEJB#biz.wss.interfaces.services.system.ServiceStateManager 


[11/3/11 15:53:43:439 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.system.ServiceStateManager
interface of 
the ServiceStateManagerEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.system.ServiceStateManager 

[11/3/11 15:53:43:456 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.messageengine.request.ExtMessageEngineMsg
RequestService 

interface of the ExtMessageEngineRequestMsgWorkerEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/ExtMessageEngineR
equestMsgWorkerEJB#biz.wss.interfaces.services.bo.messageengine.request.
ExtMessageEngineMsgRequestService 


[11/3/11 15:53:43:459 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.messageengine.request.ExtMessageEngineMsg
RequestService 

interface of the ExtMessageEngineRequestMsgWorkerEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.messageengine.request.ExtMessage
EngineMsgRequestService 


[11/3/11 15:53:43:462 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.fx.deal.inquiry.DealInquiryDAO

interface of the DealInquiryDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/DealInquiryDAOEJB
#biz.wss.server.services.local.fx.deal.inquiry.DealInquiryDAO 


[11/3/11 15:53:43:464 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.fx.deal.inquiry.DealInquiryDAO

interface of the DealInquiryDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.fx.deal.inquiry.DealInquiryDAO 

[11/3/11 15:53:43:494 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate9DAO 

interface of the PositionPortfolioCcyPairUpdate9DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairUpdate9DAOEJB#biz.wss.server.services.local.position.portfolio.vo
lumeupdaters.PositionPortfolioCcyPairUpdate9DAO 


[11/3/11 15:53:43:497 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate9DAO 

interface of the PositionPortfolioCcyPairUpdate9DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.volumeupdaters
.PositionPortfolioCcyPairUpdate9DAO 


[11/3/11 15:53:43:499 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.TaskRunner interface of the

TaskRunnerEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/TaskRunnerEJB#biz
.wss.server.services.workflow.TaskRunner 


[11/3/11 15:53:43:501 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.TaskRunner interface of the

TaskRunnerEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.workflow.TaskRunner 

[11/3/11 15:53:43:505 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.customer.CounterpartyServiceRemote 
interface of the CounterpartyServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/CounterpartyService 

[11/3/11 15:53:43:506 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.customer.CounterpartyService
interface 
of the CounterpartyServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/CounterpartyService 

[11/3/11 15:53:43:509 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.product.BOProductDAO
interface of 
the BOProductDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/BOProductDAOEJB#b
iz.wss.server.services.local.bo.product.BOProductDAO 


[11/3/11 15:53:43:512 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.product.BOProductDAO
interface of 
the BOProductDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.bo.product.BOProductDAO 

[11/3/11 15:53:43:517 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.coretideover.LegacyEntityReadServiceRemote
interface 
of the LegacyParameterReaderDaoEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/LegacyParameterReaderDaoEjb 

[11/3/11 15:53:43:518 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.coretideover.LegacyEntityReadServiceLocal
interface 
of the LegacyParameterReaderDaoEjb enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/LegacyParameterReaderDaoEjb 

[11/3/11 15:53:43:522 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.owner.MarginOwnersServiceRemote 
interface of the MarginOwnersServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/MarginOwnersService 

[11/3/11 15:53:43:523 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.owner.MarginOwnersService
interface 
of the MarginOwnersServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/MarginOwnersService 

[11/3/11 15:53:43:526 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.dashboard.BODashBoardDAO
interface 
of the BODashBoardDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/BODashBoardDAOEJB
#biz.wss.server.services.local.bo.dashboard.BODashBoardDAO 


[11/3/11 15:53:43:529 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.dashboard.BODashBoardDAO
interface 
of the BODashBoardDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.dashboard.BODashBoardDAO 

[11/3/11 15:53:43:533 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyDAO

interface of the PositionPortfolioCcyDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyDAOEJB#biz.wss.server.services.local.position.portfolio.PositionPortf
olioCcyDAO 


[11/3/11 15:53:43:536 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyDAO

interface of the PositionPortfolioCcyDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.PositionPortfo
lioCcyDAO 

[11/3/11 15:53:43:538 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.transaction.FoTransactionDAO
interface 
of the FoTransactionDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/FoTransactionDAOE
JB#biz.wss.server.services.local.transaction.FoTransactionDAO 


[11/3/11 15:53:43:540 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.transaction.FoTransactionDAO
interface 
of the FoTransactionDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.transaction.FoTransactionDAO 

[11/3/11 15:53:43:547 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.fx.dealdetails.DealDetailsSnapshotServiceRem
ote 
interface of the DealDetailsSnapshotServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/DealDetailsSnapshotService 

[11/3/11 15:53:43:550 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.fx.dealdetails.DealDetailsSnapshotService
interface 
of the DealDetailsSnapshotServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/DealDetailsSnapshotService 

[11/3/11 15:53:43:554 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.system.DatabasePatchQuery
interface of 
the DatabasePatchQueryEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/DatabasePatchQuer
yEJB#biz.wss.server.services.local.system.DatabasePatchQuery 


[11/3/11 15:53:43:556 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.system.DatabasePatchQuery
interface of 
the DatabasePatchQueryEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.system.DatabasePatchQuery 

[11/3/11 15:53:43:558 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.diagnostics.pro4.ServerFunctionCheck 
interface of the ServerFunctionCheckEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/ServerFunctionChe
ckEJB#biz.wss.server.services.local.diagnostics.pro4.ServerFunctionCheck



[11/3/11 15:53:43:562 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.diagnostics.pro4.ServerFunctionCheck 
interface of the ServerFunctionCheckEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.diagnostics.pro4.ServerFunctionCh
eck 

[11/3/11 15:53:43:566 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.user.UserServiceRemote interface
of the 
UserServiceEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: WSS/UserService


[11/3/11 15:53:43:567 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.user.UserService interface of
the 
UserServiceEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is:
ejblocal:WSS/UserService 

[11/3/11 15:53:43:569 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.rules.RuleActionsDAO
interface of 
the RuleActionsDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/RuleActionsDAOEJB
#biz.wss.server.services.local.bo.rules.RuleActionsDAO 


[11/3/11 15:53:43:572 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.bo.rules.RuleActionsDAO
interface of 
the RuleActionsDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.bo.rules.RuleActionsDAO 

[11/3/11 15:53:43:585 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate7DAO 

interface of the PositionCounterpartyCcyPairUpdate7DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairUpdate7DAOEJB#biz.wss.server.services.local.position.counterpa
rty.volumeupdaters.PositionCounterpartyCcyPairUpdate7DAO 


[11/3/11 15:53:43:588 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate7DAO 

interface of the PositionCounterpartyCcyPairUpdate7DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.volumeupdat
ers.PositionCounterpartyCcyPairUpdate7DAO 


[11/3/11 15:53:43:591 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate10DAO 

interface of the PositionCounterpartyCcyPairUpdate10DAOEJB enterprise
bean in 
the Bedrock.server.services.local.jar module of the Bedrock-EAR
application. The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairUpdate10DAOEJB#biz.wss.server.services.local.position.counterp
arty.volumeupdaters.PositionCounterpartyCcyPairUpdate10DAO 


[11/3/11 15:53:43:593 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate10DAO 

interface of the PositionCounterpartyCcyPairUpdate10DAOEJB enterprise
bean in 
the Bedrock.server.services.local.jar module of the Bedrock-EAR
application. The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.volumeupdat
ers.PositionCounterpartyCcyPairUpdate10DAO 


[11/3/11 15:53:43:595 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.notification.BOCashFlowNotificationServic
e 
interface of the BOCashFlowNotificationServiceEJB enterprise bean in the

Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/BOCashFlowNotific
ationServiceEJB#biz.wss.interfaces.services.bo.notification.BOCashFlowNo
tificationService 


[11/3/11 15:53:43:598 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.notification.BOCashFlowNotificationServic
e 
interface of the BOCashFlowNotificationServiceEJB enterprise bean in the

Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.notification.BOCashFlowNotificat
ionService 


[11/3/11 15:53:43:601 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.product.ProductDAO interface
of the 
ProductDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/ProductDAOEJB#biz
.wss.server.services.local.product.ProductDAO 


[11/3/11 15:53:43:604 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.product.ProductDAO interface
of the 
ProductDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.product.ProductDAO 

[11/3/11 15:53:43:608 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.pricing.TradingStatusServiceRemote 
interface of the TradingStatusServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/TradingStatusService 

[11/3/11 15:53:43:609 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.pricing.TradingStatusService 
interface of the TradingStatusServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/TradingStatusService 

[11/3/11 15:53:43:612 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.cmmintegration.EventExportEnrichmentDAO

interface of the EventExportEnrichmentDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/EventExportEnrich
mentDAOEJB#biz.wss.server.services.local.bo.cmmintegration.EventExportEn
richmentDAO 


[11/3/11 15:53:43:614 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.cmmintegration.EventExportEnrichmentDAO

interface of the EventExportEnrichmentDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.cmmintegration.EventExportEnri
chmentDAO 

[11/3/11 15:53:43:616 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.rate.feed.RateFeedDAO
interface of the 
RateFeedDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/RateFeedDAOEJB#bi
z.wss.server.services.local.rate.feed.RateFeedDAO 


[11/3/11 15:53:43:620 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.rate.feed.RateFeedDAO
interface of the 
RateFeedDAOEJB enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.rate.feed.RateFeedDAO 

[11/3/11 15:53:43:622 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate6DAO 

interface of the PositionPortfolioCcyPairUpdate6DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairUpdate6DAOEJB#biz.wss.server.services.local.position.portfolio.vo
lumeupdaters.PositionPortfolioCcyPairUpdate6DAO 


[11/3/11 15:53:43:624 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate6DAO 

interface of the PositionPortfolioCcyPairUpdate6DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.volumeupdaters
.PositionPortfolioCcyPairUpdate6DAO 


[11/3/11 15:53:43:627 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.dataelement.DataElementResolutionServic
e 
interface of the DataElementResolutionServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/DataElementResolu
tionServiceEJB#biz.wss.server.services.local.bo.dataelement.DataElementR
esolutionService 


[11/3/11 15:53:43:630 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.dataelement.DataElementResolutionServic
e 
interface of the DataElementResolutionServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.dataelement.DataElementResolut
ionService 


[11/3/11 15:53:43:632 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.Promoter interface of
the 
PromoterEjb enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PromoterEjb#biz.w
ss.interfaces.services.foureyes.Promoter 


[11/3/11 15:53:43:634 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.Promoter interface of
the 
PromoterEjb enterprise bean in the Bedrock.server.services.local.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.services.foureyes.Promoter 

[11/3/11 15:53:43:650 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.wssconfiguration.WssConfigurationPropertiesS
erviceRemote 

interface of the WssConfigurationPropertiesServiceEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/WssConfigurationPropertiesService 

[11/3/11 15:53:43:651 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.wssconfiguration.WssConfigurationPropertiesS
ervice 
interface of the WssConfigurationPropertiesServiceEJB enterprise bean in
the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/WssConfigurationPropertiesService 

[11/3/11 15:53:43:657 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.sd.StaticDataServiceRemote
interface of 
the StaticDataServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/StaticDataService 

[11/3/11 15:53:43:658 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.sd.StaticDataServiceLocal
interface of 
the StaticDataServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/StaticDataService 

[11/3/11 15:53:43:662 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.user.AuthenticateUserServiceRemote 
interface of the AuthenticateUserServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/AuthenticateUserService 

[11/3/11 15:53:43:663 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.user.AuthenticateUserService
interface 
of the AuthenticateUserServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/AuthenticateUserService 

[11/3/11 15:53:43:667 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.customer.InvestmentManagerServiceRemote 
interface of the InvestmentManagerServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/InvestmentManagerService 

[11/3/11 15:53:43:668 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.customer.InvestmentManagerService 
interface of the InvestmentManagerServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/InvestmentManagerService 

[11/3/11 15:53:43:683 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.CoreUpdater interface
of the 
CoreUpdaterEjb enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/CoreUpdaterEjb#bi
z.wss.interfaces.services.foureyes.CoreUpdater 


[11/3/11 15:53:43:685 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.CoreUpdater interface
of the 
CoreUpdaterEjb enterprise bean in the Bedrock.server.services.local.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.services.foureyes.CoreUpdater 

[11/3/11 15:53:43:687 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.currency.CurrencyPairDAO
interface of 
the CurrencyPairDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/CurrencyPairDAOEJ
B#biz.wss.server.services.local.currency.CurrencyPairDAO 


[11/3/11 15:53:43:689 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.currency.CurrencyPairDAO
interface of 
the CurrencyPairDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.currency.CurrencyPairDAO 

[11/3/11 15:53:43:692 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.netting.CashFlowNettingServi
ceDAO 
interface of the CashFlowNettingServiceDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/CashFlowNettingSe
rviceDAOEJB#biz.wss.server.services.local.bo.settlement.netting.CashFlow
NettingServiceDAO 


[11/3/11 15:53:43:694 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.netting.CashFlowNettingServi
ceDAO 
interface of the CashFlowNettingServiceDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.settlement.netting.CashFlowNet
tingServiceDAO 


[11/3/11 15:53:43:697 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate4DAO 

interface of the PositionCounterpartyCcyPairUpdate4DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionCounterpa
rtyCcyPairUpdate4DAOEJB#biz.wss.server.services.local.position.counterpa
rty.volumeupdaters.PositionCounterpartyCcyPairUpdate4DAO 


[11/3/11 15:53:43:699 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.counterparty.volumeupdaters.Posit
ionCounterpartyCcyPairUpdate4DAO 

interface of the PositionCounterpartyCcyPairUpdate4DAOEJB enterprise
bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.counterparty.volumeupdat
ers.PositionCounterpartyCcyPairUpdate4DAO 


[11/3/11 15:53:43:702 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.finmessage.export.FinMessageExportServi
ce 
interface of the FinMessageExportServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/FinMessageExportS
erviceEJB#biz.wss.server.services.local.bo.finmessage.export.FinMessageE
xportService 


[11/3/11 15:53:43:704 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.finmessage.export.FinMessageExportServi
ce 
interface of the FinMessageExportServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.finmessage.export.FinMessageEx
portService 


[11/3/11 15:53:43:707 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.readers.wss.TranReaderDAO 
interface of the TranReaderDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/TranReaderDAOEJB#
biz.wss.server.services.local.dao.readers.wss.TranReaderDAO 


[11/3/11 15:53:43:709 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.readers.wss.TranReaderDAO 
interface of the TranReaderDAOEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.dao.readers.wss.TranReaderDAO 

[11/3/11 15:53:43:713 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.diagnostics.Dependencies
interface of 
the DependenciesEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/DependenciesEJB#b
iz.wss.interfaces.services.diagnostics.Dependencies 


[11/3/11 15:53:43:715 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.diagnostics.Dependencies
interface of 
the DependenciesEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.services.diagnostics.Dependencies 

[11/3/11 15:53:43:720 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.readers.wss.ParameterDao
interface 
of the ParameterDaoEjb enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/ParameterDaoEjb#b
iz.wss.server.services.local.dao.readers.wss.ParameterDao 


[11/3/11 15:53:43:725 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.dao.readers.wss.ParameterDao
interface 
of the ParameterDaoEjb enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.dao.readers.wss.ParameterDao 

[11/3/11 15:53:43:728 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.ConfigWorkflow
interface of the 
ConfigWorkflowEjb enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/ConfigWorkflowEjb
#biz.wss.interfaces.services.foureyes.ConfigWorkflow 


[11/3/11 15:53:43:731 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.foureyes.ConfigWorkflow
interface of the 
ConfigWorkflowEjb enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.services.foureyes.ConfigWorkflow 

[11/3/11 15:53:43:736 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.customer.CustomerServiceRemote
interface 
of the CustomerServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/CustomerService 

[11/3/11 15:53:43:737 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.customer.CustomerServiceLocal
interface 
of the CustomerServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/CustomerService 

[11/3/11 15:53:43:755 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate3DAO 

interface of the PositionPortfolioCcyPairUpdate3DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/PositionPortfolio
CcyPairUpdate3DAOEJB#biz.wss.server.services.local.position.portfolio.vo
lumeupdaters.PositionPortfolioCcyPairUpdate3DAO 


[11/3/11 15:53:43:758 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.position.portfolio.volumeupdaters.Position
PortfolioCcyPairUpdate3DAO 

interface of the PositionPortfolioCcyPairUpdate3DAOEJB enterprise bean
in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.position.portfolio.volumeupdaters
.PositionPortfolioCcyPairUpdate3DAO 


[11/3/11 15:53:43:761 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.deal.inquiry.DealInquiryServiceRemote 
interface of the DealInquiryServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/DealInquiryService 

[11/3/11 15:53:43:763 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.deal.inquiry.DealInquiryService 
interface of the DealInquiryServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/DealInquiryService 

[11/3/11 15:53:43:766 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.scheduler.SchedulerRemote
interface of 
the TimerSchedulerEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
WSS/TimerScheduler 

[11/3/11 15:53:43:774 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.scheduler.Scheduler interface of
the 
TimerSchedulerEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/TimerScheduler 

[11/3/11 15:53:43:777 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.JobDAO interface of the
JobDAOEJB 
enterprise bean in the Bedrock.server.services.local.jar module of the 
Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/JobDAOEJB#biz.wss
.server.services.workflow.JobDAO 


[11/3/11 15:53:43:779 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.workflow.JobDAO interface of the
JobDAOEJB 
enterprise bean in the Bedrock.server.services.local.jar module of the 
Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.workflow.JobDAO 

[11/3/11 15:53:43:790 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.approve.DealApproveServi
ceRemote 
interface of the DealApproveServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/DealApproveService 

[11/3/11 15:53:43:794 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.approve.DealApproveServi
ce 
interface of the DealApproveServiceEJB enterprise bean in the 
Bedrock.server.services.local.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/DealApproveService 

[11/3/11 15:53:43:798 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.fx.marvol.MarginVolumeDAO
interface of 
the MarginVolumeDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.local.jar/MarginVolumeDAOEJ
B#biz.wss.server.services.local.fx.marvol.MarginVolumeDAO 


[11/3/11 15:53:43:800 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.local.fx.marvol.MarginVolumeDAO
interface of 
the MarginVolumeDAOEJB enterprise bean in the
Bedrock.server.services.local.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.services.local.fx.marvol.MarginVolumeDAO 

[11/3/11 15:53:43:949 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:43:951 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSSLifeCycleTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#TimerSchedulerInitialiser
is 
activated. 

[11/3/11 15:53:43:998 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:43:999 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSSLifeCycleTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#QuickDealCodeInitialiser
is 
activated. 

[11/3/11 15:53:44:009 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
ExtMessageEngineRecMessageQueue on bus WSS_BUS has been successfully
created. 

[11/3/11 15:53:44:010 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec
jms/ExtMessageEngineRecMessageQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#ExtMessageEngineRecMsgResp
onseListenerEJB 

is activated. 

[11/3/11 15:53:44:015 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:016 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSSLifeCycleTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#HighVolumeCcyInitialiser
is 
activated. 

[11/3/11 15:53:44:028 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
WSSBOTAHNOTIFYQueue on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:030 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSSBOTAHNOTIFYQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#BONotificationServiceEJB
is 
activated. 

[11/3/11 15:53:44:035 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Workflow1TaskQueue on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:036 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/Workflow1TaskQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#TaskRunner1MDB is
activated. 

[11/3/11 15:53:44:041 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination
WSS4IQueue on bus 
WSS_BUS has been successfully created. 

[11/3/11 15:53:44:042 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSS4IQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#FourEyesListener is
activated. 

[11/3/11 15:53:44:050 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
ExtMessageEnginePmtMessageQueue on bus WSS_BUS has been successfully
created. 

[11/3/11 15:53:44:050 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec
jms/ExtMessageEnginePmtMessageQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#ExtMessageEnginePmtMsgResp
onseListenerEJB 

is activated. 

[11/3/11 15:53:44:057 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
RequestPaymentScheduleQueue on bus WSS_BUS has been successfully
created. 

[11/3/11 15:53:44:058 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec
jms/RequestPaymentScheduleQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#RequestMsgScheduleListener
EJB is 
activated. 

[11/3/11 15:53:44:064 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination
WSSBOTAHOPYQueue 
on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:065 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSSBOTAHOPYQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#PaymentNotificationEJB is 
activated. 

[11/3/11 15:53:44:075 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:076 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSSLifeCycleTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#TimedMessageDrainerInitial
iserMDB 
is activated. 

[11/3/11 15:53:44:081 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination
WSSBOTAHOAKQueue 
on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:082 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSSBOTAHOAKQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#SwiftAckNackNotificationEJ
B is 
activated. 

[11/3/11 15:53:44:089 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Workflow2TaskQueue on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:090 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/Workflow2TaskQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#TaskRunner2MDB is
activated. 

[11/3/11 15:53:44:096 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination
WorkflowJobQueue 
on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:097 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WorkflowJobQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#JobControllerMDB is
activated. 

[11/3/11 15:53:44:114 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination
CloseOfAreaQueue 
on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:115 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/CloseOfAreaQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#CloseOfAreaJobCreatorMDB
is 
activated. 

[11/3/11 15:53:44:121 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:123 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSSLifeCycleTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#FotInitialiser is
activated. 

[11/3/11 15:53:44:129 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination
WSSTAHDEALQueue 
on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:130 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSSTAHDEALQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#DealNumberUpdateListenerMD
B is 
activated. 

[11/3/11 15:53:44:135 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Workflow3TaskQueue on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:136 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/Workflow3TaskQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#TaskRunner3MDB is
activated. 

[11/3/11 15:53:44:141 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination
WSSBOTAHOCNQueue 
on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:142 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSSBOTAHOCNQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#ConfirmedNotificationEJB
is 
activated. 

[11/3/11 15:53:44:148 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
WorkflowTaskControlQueue on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:148 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WorkflowTaskControlQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#TaskControllerMDB is
activated. 

[11/3/11 15:53:44:182 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:184 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/StaticDataUpdatedTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#CustomerIdCacheResetterEJB
is 
activated. 

[11/3/11 15:53:44:192 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Workflow4TaskQueue on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:193 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/Workflow4TaskQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#TaskRunner4MDB is
activated. 

[11/3/11 15:53:44:198 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
ExtMessageEnginePreviewMessageQueue on bus WSS_BUS has been successfully
created. 

[11/3/11 15:53:44:200 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec 
jms/ExtMessageEnginePreviewMessageQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#ExtMessageEnginePreviewMsg
ResponseListenerEJB 

is activated. 

[11/3/11 15:53:44:208 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination
NewDealBatchQueue 
on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:209 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/NewDealBatchQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#NDBatchJobCreatorMDB is
activated. 

[11/3/11 15:53:44:215 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
ExtMessageEngineConfMessageQueue on bus WSS_BUS has been successfully
created. 

[11/3/11 15:53:44:216 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec
jms/ExtMessageEngineConfMessageQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#ExtMessageEngineConfMsgRes
ponseListenerEJB 

is activated. 

[11/3/11 15:53:44:221 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Workflow5TaskQueue on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:222 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/Workflow5TaskQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#TaskRunner5MDB is
activated. 

[11/3/11 15:53:44:229 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
ExtMessageEngineReviewMessageQueue on bus WSS_BUS has been successfully
created. 

[11/3/11 15:53:44:230 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec
jms/ExtMessageEngineReviewMessageQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.local.jar#ExtMessageEngineReviewMsgR
esponseListenerEJB 

is activated. 

[11/3/11 15:53:44:505 UTC] 0000000f EJBContainerI I WSVR0057I: EJB jar
started: 
Bedrock.server.services.local.jar 

[11/3/11 15:53:44:720 UTC] 0000000f EJBContainerI I WSVR0037I: Starting
EJB jar: 
Bedrock.server.services.staticdata.ot.jar 

[11/3/11 15:53:44:724 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.pricing.SwapPriceServiceRemote 
interface of the SwapPriceServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/SwapPriceService 

[11/3/11 15:53:44:726 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.pricing.SwapPriceService
interface of 
the SwapPriceServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/SwapPriceService 

[11/3/11 15:53:44:732 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.blockref.BlockReferenceServiceRemote 
interface of the BlockReferenceServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/BlockReferenceService 

[11/3/11 15:53:44:733 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.blockref.BlockReferenceService 
interface of the BlockReferenceServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/BlockReferenceService 

[11/3/11 15:53:44:737 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.calendar.GapServiceRemote
interface of 
the GapServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/GapService 

[11/3/11 15:53:44:739 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.calendar.GapService interface of
the 
GapServiceEJB enterprise bean in the
Bedrock.server.services.staticdata.ot.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/GapService 

[11/3/11 15:53:44:744 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.routing.DealRoutingServiceRemote 
interface of the DealRoutingServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/DealRoutingService 

[11/3/11 15:53:44:745 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.routing.DealRoutingService
interface 
of the DealRoutingServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/DealRoutingService 

[11/3/11 15:53:44:801 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.action.DealActionServiceRemote 
interface of the DealActionServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/DealActionService 

[11/3/11 15:53:44:804 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.action.DealActionService
interface of 
the DealActionServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/DealActionService 

[11/3/11 15:53:44:808 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.pricing.SpotForwardPriceServiceRemote 
interface of the SpotForwardPriceServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/SpotForwardPriceService 

[11/3/11 15:53:44:809 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.pricing.SpotForwardPriceService 
interface of the SpotForwardPriceServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/SpotForwardPriceService 

[11/3/11 15:53:44:817 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.api.FXCaptureAPIServiceRemote
interface 
of the FXCaptureAPIServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/FXCaptureAPIService 

[11/3/11 15:53:44:820 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.api.FXCaptureAPIService
interface of the 
FXCaptureAPIServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/FXCaptureAPIService 

[11/3/11 15:53:44:826 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.api.FXCorpAPIServiceRemote
interface of 
the FXCorpAPIServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/FXCorpAPIService 

[11/3/11 15:53:44:827 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.api.FXCorpAPIService interface
of the 
FXCorpAPIServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/FXCorpAPIService 

[11/3/11 15:53:44:832 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.usersetup.PersistenceServiceRemote 
interface of the PersistenceServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/PersistenceService 

[11/3/11 15:53:44:834 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.usersetup.PersistenceService
interface 
of the PersistenceServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/PersistenceService 

[11/3/11 15:53:44:844 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.credit.api.CreditAPIServiceRemote 
interface of the CreditAPIServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/CreditAPIService 

[11/3/11 15:53:44:846 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.credit.api.CreditAPIService
interface of 
the CreditAPIServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/CreditAPIService 

[11/3/11 15:53:44:850 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.fx.configuration.FXConfigurationServiceRemot
e 
interface of the FXConfigurationServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/FXConfigurationService 

[11/3/11 15:53:44:853 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.fx.configuration.FXConfigurationServiceLocal

interface of the FXConfigurationServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/FXConfigurationService 

[11/3/11 15:53:44:861 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.area.AreaServiceRemote interface
of the 
AreaServiceEJB enterprise bean in the
Bedrock.server.services.staticdata.ot.jar 
module of the Bedrock-EAR application. The binding location is:
WSS/AreaService 

[11/3/11 15:53:44:862 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.area.AreaService interface of
the 
AreaServiceEJB enterprise bean in the
Bedrock.server.services.staticdata.ot.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/AreaService 

[11/3/11 15:53:44:866 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.blotter.DealBlotterServiceRemote 
interface of the DealBlotterServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/DealBlotterService 

[11/3/11 15:53:44:868 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.fx.blotter.DealBlotterService
interface 
of the DealBlotterServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/DealBlotterService 

[11/3/11 15:53:44:872 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.portfolio.PortfolioServiceRemote

interface of the PortfolioServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/PortfolioService 

[11/3/11 15:53:44:874 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.portfolio.PortfolioService
interface of 
the PortfolioServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/PortfolioService 

[11/3/11 15:53:44:881 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.fx.presentvalue.DiscountFactorServiceRemote 
interface of the DiscountFactorServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/DiscountFactorService 

[11/3/11 15:53:44:884 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.presentvalue.DiscountFactorService 
interface of the DiscountFactorServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/DiscountFactorService 

[11/3/11 15:53:44:887 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.dealerintervention.DealerInterventionService
Remote 
interface of the DealerInterventionServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/DealerInterventionService 

[11/3/11 15:53:44:889 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.dealerintervention.DealerInterventionService

interface of the DealerInterventionServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/DealerInterventionService 

[11/3/11 15:53:44:899 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.details.BODealDetailsServiceRemote
interface 
of the BODealDetailsServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/BODealDetailsService 

[11/3/11 15:53:44:902 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.deal.details.BODealDetailsService 
interface of the BODealDetailsServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/BODealDetailsService 

[11/3/11 15:53:44:905 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.currency.CurrencyServiceRemote
interface 
of the CurrencyServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/CurrencyService 

[11/3/11 15:53:44:907 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.currency.CurrencyService
interface of 
the CurrencyServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/CurrencyService 

[11/3/11 15:53:44:910 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.calendar.ValidBusinessDateServiceRemote 
interface of the ValidBusinessDateServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/ValidBusinessDateService 

[11/3/11 15:53:44:913 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.calendar.ValidBusinessDateService 
interface of the ValidBusinessDateServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/ValidBusinessDateService 

[11/3/11 15:53:44:917 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.ServiceFactoryServiceRemote
interface of 
the ServiceFactoryServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/ServiceFactoryService 

[11/3/11 15:53:44:918 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.ServiceFactoryService interface
of the 
ServiceFactoryServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/ServiceFactoryService 

[11/3/11 15:53:44:925 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.credit.inquiry.CreditInquiryServiceRemote
interface 
of the CreditInquiryServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/CreditInquiryService 

[11/3/11 15:53:44:930 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.credit.inquiry.CreditInquiryService 
interface of the CreditInquiryServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/CreditInquiryService 

[11/3/11 15:53:44:937 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.product.ProductServiceRemote
interface 
of the ProductServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: WSS/ProductService 

[11/3/11 15:53:44:938 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.product.ProductService interface
of the 
ProductServiceEJB enterprise bean in the 
Bedrock.server.services.staticdata.ot.jar module of the Bedrock-EAR
application. 
The binding location is: ejblocal:WSS/ProductService 

[11/3/11 15:53:44:982 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:44:983 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/CloseOfAreaTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.staticdata.ot.jar#GapCacheInvalidato
rMDB is 
activated. 

[11/3/11 15:53:45:025 UTC] 0000000f EJBContainerI I WSVR0057I: EJB jar
started: 
Bedrock.server.services.staticdata.ot.jar 

[11/3/11 15:53:45:202 UTC] 0000000f EJBContainerI I WSVR0037I: Starting
EJB jar: 
Bedrock.server.services.position.jar 

[11/3/11 15:53:45:208 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.marvol.MarginVolumeCloseOfAreaService 
interface of the MarginVolumeCloseOfAreaServiceEJB enterprise bean in
the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.position.jar/MarginVolumeCl
oseOfAreaServiceEJB#biz.wss.interfaces.services.fx.marvol.MarginVolumeCl
oseOfAreaService 


[11/3/11 15:53:45:211 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.marvol.MarginVolumeCloseOfAreaService 
interface of the MarginVolumeCloseOfAreaServiceEJB enterprise bean in
the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: 
ejblocal:biz.wss.interfaces.services.fx.marvol.MarginVolumeCloseOfAreaSe
rvice 

[11/3/11 15:53:45:215 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.quickpnl.LaunchQuickPNLPortfolioServiceRemot
e 
interface of the LaunchQuickPNLPortfolioServiceEJB enterprise bean in
the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: WSS/LaunchQuickPNLPortfolioService 

[11/3/11 15:53:45:217 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.quickpnl.LaunchQuickPNLPortfolioService 
interface of the LaunchQuickPNLPortfolioServiceEJB enterprise bean in
the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: ejblocal:WSS/LaunchQuickPNLPortfolioService 

[11/3/11 15:53:45:222 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.quickpnl.CounterpartyPNLServiceRemote 
interface of the CounterpartyPNLServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: WSS/CounterpartyPNLService 

[11/3/11 15:53:45:224 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.quickpnl.CounterpartyPNLService 
interface of the CounterpartyPNLServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: ejblocal:WSS/CounterpartyPNLService 

[11/3/11 15:53:45:228 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.quickpnl.QuickPNLPortfolioServiceRemote 
interface of the QuickPNLPortfolioServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: WSS/QuickPNLPortfolioService 

[11/3/11 15:53:45:229 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.quickpnl.QuickPNLPortfolioService 
interface of the QuickPNLPortfolioServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: ejblocal:WSS/QuickPNLPortfolioService 

[11/3/11 15:53:45:233 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.quickpnl.EntityPNLServiceRemote 
interface of the EntityPNLServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: WSS/EntityPNLService 

[11/3/11 15:53:45:235 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.quickpnl.EntityPNLService
interface of 
the EntityPNLServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: ejblocal:WSS/EntityPNLService 

[11/3/11 15:53:45:239 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.fx.marvol.MarginVolumeInquiryServiceRemote
interface 
of the MarginVolumeInquiryServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: WSS/MarginVolumeInquiryService 

[11/3/11 15:53:45:240 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.marvol.MarginVolumeInquiryService 
interface of the MarginVolumeInquiryServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: ejblocal:WSS/MarginVolumeInquiryService 

[11/3/11 15:53:45:248 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.rate.RateMonitorInitialServiceRemote 
interface of the RateMonitorInitialServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: WSS/RateMonitorInitialService 

[11/3/11 15:53:45:285 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.fx.rate.RateMonitorInitialService 
interface of the RateMonitorInitialServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: ejblocal:WSS/RateMonitorInitialService 

[11/3/11 15:53:45:290 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.quickpnl.PositionRolloverServiceRemote 
interface of the PositionRolloverServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: WSS/PositionRolloverService 

[11/3/11 15:53:45:293 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.quickpnl.PositionRolloverService

interface of the PositionRolloverServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: ejblocal:WSS/PositionRolloverService 

[11/3/11 15:53:45:297 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.quickpnl.DetailedPNLPortfolioServiceRemote
interface 
of the DetailedPNLPortfolioServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: WSS/DetailedPNLPortfolioService 

[11/3/11 15:53:45:298 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.quickpnl.DetailedPNLPortfolioService 
interface of the DetailedPNLPortfolioServiceEJB enterprise bean in the 
Bedrock.server.services.position.jar module of the Bedrock-EAR
application. The 
binding location is: ejblocal:WSS/DetailedPNLPortfolioService 

[11/3/11 15:53:45:320 UTC] 00000020 ServerCache I DYNA1001I: WebSphere
Dynamic 
Cache instance named ws/WSSecureMap initialized successfully. 

[11/3/11 15:53:45:322 UTC] 00000020 ServerCache I DYNA1071I: The cache
provider 
"default" is being used. 

[11/3/11 15:53:45:328 UTC] 0000000f EJBContainerI I WSVR0057I: EJB jar
started: 
Bedrock.server.services.position.jar 

[11/3/11 15:53:45:512 UTC] 0000000f EJBContainerI I WSVR0037I: Starting
EJB jar: 
Bedrock.server.services.bo.jar 

[11/3/11 15:53:45:588 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.move.SqmQueueMoveService
Remote 
interface of the SqmQueueMoveServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/SqmQueueMoveService 

[11/3/11 15:53:45:589 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.move.SqmQueueMoveService
Local 
interface of the SqmQueueMoveServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/SqmQueueMoveService 

[11/3/11 15:53:45:594 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.netting.CashFlowNettingService
Remote 
interface of the CashFlowNettingServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/CashFlowNettingService 

[11/3/11 15:53:45:595 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.netting.CashFlowNettingService

interface of the CashFlowNettingServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/CashFlowNettingService 

[11/3/11 15:53:45:611 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.product.BOProductResolutionServiceRemote 
interface of the BOProductResolutionServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/BOProductResolutionService 

[11/3/11 15:53:45:612 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.product.BOProductResolutionService 
interface of the BOProductResolutionServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/BOProductResolutionService 

[11/3/11 15:53:45:616 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.alarm.AlarmAckServiceBulkProcessor 
interface of the AlarmAckServiceBulkProcessorEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/AlarmAckServiceBulkP
rocessorEJB#biz.wss.interfaces.services.bo.alarm.AlarmAckServiceBulkProc
essor 


[11/3/11 15:53:45:618 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.alarm.AlarmAckServiceBulkProcessor 
interface of the AlarmAckServiceBulkProcessorEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.alarm.AlarmAckServiceBulkProcess
or 

[11/3/11 15:53:45:622 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.capture.BoTradeSyncServiceLocal 
interface of the BoTradeSyncServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/BoTradeSyncServiceEJ
B#biz.wss.server.services.local.bo.capture.BoTradeSyncServiceLocal 


[11/3/11 15:53:45:625 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.capture.BoTradeSyncServiceLocal 
interface of the BoTradeSyncServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.capture.BoTradeSyncServiceLoca
l 

[11/3/11 15:53:45:637 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.settlement.ftod.FtoDServiceRemote 
interface of the FtoDServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/FtoDService 

[11/3/11 15:53:45:639 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.settlement.ftod.FtoDService
interface 
of the FtoDServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/FtoDService 

[11/3/11 15:53:45:643 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.SettlementcentreServiceRemote 
interface of the SettlementcentreServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/SettlementcentreService 

[11/3/11 15:53:45:645 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.settlement.SettlementcentreService 
interface of the SettlementcentreServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/SettlementcentreService 

[11/3/11 15:53:45:650 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.rules.RuleDataServiceRemote
interface 
of the RuleDataServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
WSS/RuleDataService 

[11/3/11 15:53:45:652 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.rules.RuleDataServiceLocal
interface 
of the RuleDataServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/RuleDataService 

[11/3/11 15:53:45:655 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.rules.RuleResolutionService
interface 
of the RuleResolutionServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/RuleResolutionServic
eEJB#biz.wss.interfaces.services.bo.rules.RuleResolutionService 


[11/3/11 15:53:45:658 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.rules.RuleResolutionService
interface 
of the RuleResolutionServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.rules.RuleResolutionService 

[11/3/11 15:53:45:662 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.registration.BOTradeCancellati
onService 
interface 
of the BOTradeCancellationServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/BOTradeCancellationS
erviceEJB#biz.wss.interfaces.services.bo.settlement.registration.BOTrade
CancellationService 


[11/3/11 15:53:45:665 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.registration.BOTradeCancellati
onService 
interface 
of the BOTradeCancellationServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.settlement.registration.BOTradeC
ancellationService 


[11/3/11 15:53:45:670 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.cashflow.BOCashFlowServiceRemote 
interface of the BOCashFlowServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/BOCashFlowService 

[11/3/11 15:53:45:673 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.cashflow.BOCashFlowServiceLocal 
interface of the BOCashFlowServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/BOCashFlowService 

[11/3/11 15:53:45:679 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.capture.BOTradeCaptureServiceLocal 
interface of the BOTradeCaptureServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/BOTradeCaptureServic
eEJB#biz.wss.server.services.local.bo.capture.BOTradeCaptureServiceLocal



[11/3/11 15:53:45:682 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.capture.BOTradeCaptureServiceLocal 
interface of the BOTradeCaptureServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.capture.BOTradeCaptureServiceL
ocal 

[11/3/11 15:53:45:687 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.rules.RuleConditionsServiceRemote 
interface of the RuleConditionsServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/RuleConditionsService 

[11/3/11 15:53:45:688 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.rules.RuleConditionsServiceLocal 
interface of the RuleConditionsServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/RuleConditionsService 

[11/3/11 15:53:45:693 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.counts.SqmCountersServic
eRemote 
interface of the SqmCountersServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/SqmCountersService 

[11/3/11 15:53:45:695 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.counts.SqmCountersServic
eLocal 
interface of the SqmCountersServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/SqmCountersService 

[11/3/11 15:53:45:715 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.ftod.FtoDServiceBulkProcessor 
interface of the FtoDServiceBulkProcessorEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/FtoDServiceBulkProce
ssorEJB#biz.wss.interfaces.services.bo.settlement.ftod.FtoDServiceBulkPr
ocessor 


[11/3/11 15:53:46:635 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.ftod.FtoDServiceBulkProcessor 
interface of the FtoDServiceBulkProcessorEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.settlement.ftod.FtoDServiceBulkP
rocessor 

[11/3/11 15:53:46:640 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.payment.PaymentServiceWorkerRemote 
interface of the PaymentServiceWorkerEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/PaymentServiceWorker 

[11/3/11 15:53:46:642 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.payment.PaymentServiceWorkerLocal 
interface of the PaymentServiceWorkerEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/PaymentServiceWorker 

[11/3/11 15:53:46:644 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.bo.alert.AlarmAckServiceWorker
interface of 
the AlarmAckServiceWorkerEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/AlarmAckServiceWorke
rEJB#biz.wss.server.services.bo.alert.AlarmAckServiceWorker 


[11/3/11 15:53:46:647 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.bo.alert.AlarmAckServiceWorker
interface of 
the AlarmAckServiceWorkerEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.bo.alert.AlarmAckServiceWorker 

[11/3/11 15:53:46:654 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.move.SqmQueueMoveOptions
ServiceRemote 

interface of the SqmQueueMoveOptionsServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/SqmQueueMoveOptionsService 

[11/3/11 15:53:46:655 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.move.SqmQueueMoveOptions
ServiceLocal 

interface of the SqmQueueMoveOptionsServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/SqmQueueMoveOptionsService 

[11/3/11 15:53:46:660 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.convert.BOTradeConversionServiceLocal
interface 
of the BOTradeConversionServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/BOTradeConversionSer
viceEJB#biz.wss.server.services.local.bo.convert.BOTradeConversionServic
eLocal 


[11/3/11 15:53:46:662 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.convert.BOTradeConversionServiceLocal
interface 
of the BOTradeConversionServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.convert.BOTradeConversionServi
ceLocal 

[11/3/11 15:53:46:667 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.dataelement.DataElementServiceRemote 
interface of the DataElementServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/DataElementService 

[11/3/11 15:53:46:669 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.dataelement.DataElementServiceLocal 
interface of the DataElementServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/DataElementService 

[11/3/11 15:53:46:674 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMCashForecastIntegration
Service 
interface of the CMMCashForecastIntegrationEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/CMMCashForecastInteg
rationEJB#biz.wss.interfaces.services.bo.cmmintegration.CMMCashForecastI
ntegrationService 


[11/3/11 15:53:46:676 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMCashForecastIntegration
Service 
interface of the CMMCashForecastIntegrationEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.cmmintegration.CMMCashForecastIn
tegrationService 


[11/3/11 15:53:46:680 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.ftod.FtoDServiceWorkerRemote
interface 
of the FtoDServiceWorkerEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/FtoDServiceWorker 

[11/3/11 15:53:46:681 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.settlement.ftod.FtoDServiceWorker 
interface of the FtoDServiceWorkerEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/FtoDServiceWorker 

[11/3/11 15:53:46:686 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.cashflow.BoCashFlowSyncServiceLocal 
interface of the BoCashFlowSyncServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/BoCashFlowSyncServic
eEJB#biz.wss.server.services.local.bo.cashflow.BoCashFlowSyncServiceLoca
l 


[11/3/11 15:53:46:690 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.local.bo.cashflow.BoCashFlowSyncServiceLocal 
interface of the BoCashFlowSyncServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.cashflow.BoCashFlowSyncService
Local 

[11/3/11 15:53:46:694 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.enrichment.BOTradeEnrichmentServiceR
emote 
interface of the BOTradeEnrichmentServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/BOTradeEnrichmentService 

[11/3/11 15:53:46:696 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.enrichment.BOTradeEnrichmentServiceL
ocal 
interface of the BOTradeEnrichmentServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/BOTradeEnrichmentService 

[11/3/11 15:53:46:698 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.bo.alert.AlarmCutoffServiceWorker
interface 
of the AlarmCutoffServiceWorkerEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/AlarmCutoffServiceWo
rkerEJB#biz.wss.server.services.bo.alert.AlarmCutoffServiceWorker 


[11/3/11 15:53:46:700 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.services.bo.alert.AlarmCutoffServiceWorker
interface 
of the AlarmCutoffServiceWorkerEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.bo.alert.AlarmCutoffServiceWorker 

[11/3/11 15:53:46:720 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.payment.cutoff.PaymentcutofftimesServiceR
emote 
interface of the PaymentcutofftimesServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/PaymentcutofftimesService 

[11/3/11 15:53:46:721 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.payment.cutoff.PaymentcutofftimesServiceL
ocal 
interface of the PaymentcutofftimesServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/PaymentcutofftimesService 

[11/3/11 15:53:46:726 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.payment.PaymentServiceRemote 
interface of the PaymentServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/PaymentService 

[11/3/11 15:53:46:727 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.payment.PaymentService
interface of 
the PaymentServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/PaymentService 

[11/3/11 15:53:46:736 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.dashboard.BODashBoardServiceRemote 
interface of the BODashBoardServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/BODashBoardService 

[11/3/11 15:53:46:737 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.dashboard.BODashBoardServiceLocal 
interface of the BODashBoardServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/BODashBoardService 

[11/3/11 15:53:46:751 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.alert.AlarmAckService
interface of 
the AlarmAckServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/AlarmAckServiceEJB#b
iz.wss.interfaces.services.bo.alert.AlarmAckService 


[11/3/11 15:53:46:754 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.alert.AlarmAckService
interface of 
the AlarmAckServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.services.bo.alert.AlarmAckService 

[11/3/11 15:53:46:757 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.audit.SqmActionsAuditSer
viceRemote 

interface of the SqmActionsAuditServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/SqmActionsAuditService 

[11/3/11 15:53:46:758 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.audit.SqmActionsAuditSer
vice 
interface of the SqmActionsAuditServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/SqmActionsAuditService 

[11/3/11 15:53:46:799 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.alert.AlarmService interface
of the 
AlarmServiceEJB enterprise bean in the Bedrock.server.services.bo.jar
module of 
the Bedrock-EAR application. The binding location is: WSS/AlarmService 

[11/3/11 15:53:46:801 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.alert.AlarmServiceLocal
interface of 
the AlarmServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/AlarmService 

[11/3/11 15:53:46:805 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.queue.SqmQueueServiceRemote
interface 
of the SqmQueueServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
WSS/SqmQueueService 

[11/3/11 15:53:46:808 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.settlement.queue.SqmQueueService 
interface of the SqmQueueServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/SqmQueueService 

[11/3/11 15:53:46:810 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.payment.PaymentServiceBulkProcessor 
interface of the PaymentServiceBulkProcessorEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/PaymentServiceBulkPr
ocessorEJB#biz.wss.interfaces.services.bo.payment.PaymentServiceBulkProc
essor 


[11/3/11 15:53:46:813 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.payment.PaymentServiceBulkProcessor 
interface of the PaymentServiceBulkProcessorEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.payment.PaymentServiceBulkProces
sor 

[11/3/11 15:53:46:816 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.registration.BORegistrationSer
viceLocal 
interface 
of the BORegistrationServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/BORegistrationServic
eEJB#biz.wss.interfaces.services.bo.settlement.registration.BORegistrati
onServiceLocal 


[11/3/11 15:53:46:819 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.registration.BORegistrationSer
viceLocal 
interface 
of the BORegistrationServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.settlement.registration.BORegist
rationServiceLocal 


[11/3/11 15:53:46:822 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.cashflow.BOCashFlowCaptureServiceLocal 
interface of the BOCashFlowCaptureServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/BOCashFlowCaptureSer
viceEJB#biz.wss.server.services.local.bo.cashflow.BOCashFlowCaptureServi
ceLocal 


[11/3/11 15:53:46:825 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.cashflow.BOCashFlowCaptureServiceLocal 
interface of the BOCashFlowCaptureServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.server.services.local.bo.cashflow.BOCashFlowCaptureServ
iceLocal 

[11/3/11 15:53:46:833 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.netting.CashFlowPreNettingServ
iceRemote 
interface 
of the CashFlowPreNettingServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/CashFlowPreNettingService 

[11/3/11 15:53:46:836 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.services.local.bo.settlement.netting.CashFlowPreNettingSe
rviceLocal 

interface of the CashFlowPreNettingServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/CashFlowPreNettingService 

[11/3/11 15:53:46:838 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.receipt.ReceiptServiceWorkerRemote 
interface of the ReceiptServiceWorkerEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/ReceiptServiceWorker 

[11/3/11 15:53:46:840 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.receipt.ReceiptServiceWorker 
interface of the ReceiptServiceWorkerEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/ReceiptServiceWorker 

[11/3/11 15:53:46:856 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMStaticDataIntegrationSe
rvice 
interface of the CMMStaticDataIntegrationEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/CMMStaticDataIntegra
tionEJB#biz.wss.interfaces.services.bo.cmmintegration.CMMStaticDataInteg
rationService 


[11/3/11 15:53:46:858 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMStaticDataIntegrationSe
rvice 
interface of the CMMStaticDataIntegrationEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.cmmintegration.CMMStaticDataInte
grationService 


[11/3/11 15:53:46:861 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.alert.AlarmCutoffService
interface of 
the AlarmCutoffServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/AlarmCutoffServiceEJ
B#biz.wss.interfaces.services.bo.alert.AlarmCutoffService 


[11/3/11 15:53:46:863 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.alert.AlarmCutoffService
interface of 
the AlarmCutoffServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.services.bo.alert.AlarmCutoffService 

[11/3/11 15:53:46:868 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.acknak.AckNakServiceRemote
interface 
of the AckNakServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is:
WSS/AckNakService 

[11/3/11 15:53:46:870 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.acknak.AckNakService
interface of the 
AckNakServiceEJB enterprise bean in the Bedrock.server.services.bo.jar
module of 
the Bedrock-EAR application. The binding location is:
ejblocal:WSS/AckNakService 

[11/3/11 15:53:46:875 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cashflow.BOCashFlowEnrichmentServiceRemot
e 
interface of the BOCashFlowEnrichmentServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/BOCashFlowEnrichmentService 

[11/3/11 15:53:46:876 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cashflow.BOCashFlowEnrichmentServiceLocal

interface of the BOCashFlowEnrichmentServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/BOCashFlowEnrichmentService 

[11/3/11 15:53:46:880 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMTransactionEventsServic
e 
interface of the CMMTransactionEventsEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/CMMTransactionEvents
EJB#biz.wss.interfaces.services.bo.cmmintegration.CMMTransactionEventsSe
rvice 


[11/3/11 15:53:46:884 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMTransactionEventsServic
e 
interface of the CMMTransactionEventsEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.cmmintegration.CMMTransactionEve
ntsService 


[11/3/11 15:53:46:889 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.rules.RuleActionsServiceRemote 
interface of the RuleActionsServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/RuleActionsService 

[11/3/11 15:53:46:890 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.rules.RuleActionsServiceLocal

interface of the RuleActionsServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/RuleActionsService 

[11/3/11 15:53:46:893 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.receipt.ReceiptServiceBulkProcessor 
interface of the ReceiptServiceBulkProcessorEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/ReceiptServiceBulkPr
ocessorEJB#biz.wss.interfaces.services.bo.receipt.ReceiptServiceBulkProc
essor 


[11/3/11 15:53:46:896 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.services.bo.receipt.ReceiptServiceBulkProcessor 
interface of the ReceiptServiceBulkProcessorEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.receipt.ReceiptServiceBulkProces
sor 

[11/3/11 15:53:46:899 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.netting.CashFlowNettingOvervie
wServiceRemote 

interface of the CashFlowNettingOverviewServiceEJB enterprise bean in
the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/CashFlowNettingOverviewService 

[11/3/11 15:53:46:900 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.netting.CashFlowNettingOvervie
wService 
interface of the CashFlowNettingOverviewServiceEJB enterprise bean in
the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/CashFlowNettingOverviewService 

[11/3/11 15:53:46:911 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMCashMovementIntegration
Service 
interface of the CMMCashMovementIntegrationEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/CMMCashMovementInteg
rationEJB#biz.wss.interfaces.services.bo.cmmintegration.CMMCashMovementI
ntegrationService 


[11/3/11 15:53:46:914 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMCashMovementIntegration
Service 
interface of the CMMCashMovementIntegrationEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.cmmintegration.CMMCashMovementIn
tegrationService 


[11/3/11 15:53:46:962 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.registration.BOTradeModificati
onService 
interface 
of the BOTradeModificationServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/BOTradeModificationS
erviceEJB#biz.wss.interfaces.services.bo.settlement.registration.BOTrade
ModificationService 


[11/3/11 15:53:46:966 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.settlement.registration.BOTradeModificati
onService 
interface 
of the BOTradeModificationServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.services.bo.settlement.registration.BOTradeM
odificationService 


[11/3/11 15:53:46:972 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.details.swiftmessage.SwiftMessageDet
ailServiceRemote 

interface of the SwiftMessageDetailServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/SwiftMessageDetailService 

[11/3/11 15:53:46:975 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.details.swiftmessage.SwiftMessageDet
ailServiceLocal 

interface of the SwiftMessageDetailServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/SwiftMessageDetailService 

[11/3/11 15:53:46:979 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.receipt.ReceiptServiceRemote 
interface of the ReceiptServiceEJB enterprise bean in the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/ReceiptService 

[11/3/11 15:53:46:980 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.services.bo.receipt.ReceiptService
interface of 
the ReceiptServiceEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:WSS/ReceiptService 

[11/3/11 15:53:46:984 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMCashflowReplyService
interface 
of the CMMCashlowReplyEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.bo.jar/CMMCashlowReplyEJB#b
iz.wss.interfaces.services.bo.cmmintegration.CMMCashflowReplyService 


[11/3/11 15:53:46:986 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMCashflowReplyService
interface 
of the CMMCashlowReplyEJB enterprise bean in the
Bedrock.server.services.bo.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.services.bo.cmmintegration.CMMCashflowReplyS
ervice 

[11/3/11 15:53:46:990 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.enrichment.BOTradeCaptureEnhancement
ServiceRemote 

interface of the BOTradeCaptureEnhancementServiceEJB enterprise bean in
the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: WSS/BOTradeCaptureEnhancementService 

[11/3/11 15:53:46:991 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.services.bo.deal.enrichment.BOTradeCaptureEnhancement
Service 
interface of the BOTradeCaptureEnhancementServiceEJB enterprise bean in
the 
Bedrock.server.services.bo.jar module of the Bedrock-EAR application.
The 
binding location is: ejblocal:WSS/BOTradeCaptureEnhancementService 

[11/3/11 15:53:47:023 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
ReceiptServiceScheduleQueue on bus WSS_BUS has been successfully
created. 

[11/3/11 15:53:47:024 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec
jms/ReceiptServiceScheduleQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#ReceiptServiceWorkDispatcherE
JB is 
activated. 

[11/3/11 15:53:47:032 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:47:034 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/StaticDataUpdatedTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#RuleConditionCacheResetterEJB
is 
activated. 

[11/3/11 15:53:47:040 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:47:041 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/StaticDataUpdatedTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#AlarmCutoffServiceResetterEJB
is 
activated. 

[11/3/11 15:53:47:048 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:47:049 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/StaticDataUpdatedTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#SqmQueueCacheResetterEJB is
activated. 

[11/3/11 15:53:47:055 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:47:056 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/StaticDataUpdatedTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#ReceiptServiceResetterEJB is 
activated. 

[11/3/11 15:53:47:068 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:47:070 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/StaticDataUpdatedTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#FtoDServiceResetterEJB is
activated. 

[11/3/11 15:53:47:081 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:47:082 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/StaticDataUpdatedTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#RuleSetCacheResetterEJB is
activated. 

[11/3/11 15:53:47:090 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
PaymentServiceScheduleQueue on bus WSS_BUS has been successfully
created. 

[11/3/11 15:53:47:091 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec
jms/PaymentServiceScheduleQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#PaymentServiceWorkDispatcherE
JB is 
activated. 

[11/3/11 15:53:47:097 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
AlarmAckServiceScheduleQueue on bus WSS_BUS has been successfully
created. 

[11/3/11 15:53:47:098 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec
jms/AlarmAckServiceScheduleQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#AlarmAckServiceWorkDispatcher
EJB is 
activated. 

[11/3/11 15:53:47:103 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
FtoDServiceScheduleQueue on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:47:104 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/FtoDServiceScheduleQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#FtoDServiceWorkDispatcherEJB
is 
activated. 

[11/3/11 15:53:47:110 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:47:111 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/StaticDataUpdatedTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#RuleActionCacheResetterEJB is

activated. 

[11/3/11 15:53:47:116 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
AlarmCutoffServiceScheduleQueue on bus WSS_BUS has been successfully
created. 

[11/3/11 15:53:47:117 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec
jms/AlarmCutoffServiceScheduleQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#AlarmCutoffServiceWorkDispatc
herEJB 
is activated. 

[11/3/11 15:53:47:122 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
Default.Topic.Space on bus WSS_BUS has been successfully created. 

[11/3/11 15:53:47:124 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec jms/WSSLifeCycleTopicActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.services.bo.jar#CMMCashflowInitialiser is
activated. 

[11/3/11 15:53:47:217 UTC] 0000000f EJBContainerI I WSVR0057I: EJB jar
started: 
Bedrock.server.services.bo.jar 

[11/3/11 15:53:47:315 UTC] 0000000f EJBContainerI I WSVR0037I: Starting
EJB jar: 
Bedrock.server.services.exception.jar 

[11/3/11 15:53:47:316 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.logging.analysis.ExceptionTopicSender 
interface of the ExceptionTopicSenderEJB enterprise bean in the 
Bedrock.server.services.exception.jar module of the Bedrock-EAR
application. The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.exception.jar/ExceptionTopi
cSenderEJB#biz.wss.server.services.logging.analysis.ExceptionTopicSender



[11/3/11 15:53:47:323 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.logging.analysis.ExceptionTopicSender 
interface of the ExceptionTopicSenderEJB enterprise bean in the 
Bedrock.server.services.exception.jar module of the Bedrock-EAR
application. The 
binding location is: 
ejblocal:biz.wss.server.services.logging.analysis.ExceptionTopicSender 

[11/3/11 15:53:47:327 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.logging.analysis.ExplicitExceptionAnalyzer 
interface of the ExplicitExceptionAnalyzerEJB enterprise bean in the 
Bedrock.server.services.exception.jar module of the Bedrock-EAR
application. The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.exception.jar/ExplicitExcep
tionAnalyzerEJB#biz.wss.server.services.logging.analysis.ExplicitExcepti
onAnalyzer 


[11/3/11 15:53:47:330 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.services.logging.analysis.ExplicitExceptionAnalyzer 
interface of the ExplicitExceptionAnalyzerEJB enterprise bean in the 
Bedrock.server.services.exception.jar module of the Bedrock-EAR
application. The 
binding location is: 
ejblocal:biz.wss.server.services.logging.analysis.ExplicitExceptionAnaly
zer 

[11/3/11 15:53:47:337 UTC] 0000000f EJBContainerI I WSVR0057I: EJB jar
started: 
Bedrock.server.services.exception.jar 

[11/3/11 15:53:47:741 UTC] 0000000f EJBContainerI I WSVR0037I: Starting
EJB jar: 
Bedrock.server.services.ws.jar 

[11/3/11 15:53:47:746 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.registerentity.RegisterEntity
interface 
of the RegisterEntityWebService enterprise bean in the 
Bedrock.server.services.ws.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.ws.jar/RegisterEntityWebSer
vice#biz.wss.staticdata.foureyes.registerentity.RegisterEntity 


[11/3/11 15:53:47:749 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.registerentity.RegisterEntity
interface 
of the RegisterEntityWebService enterprise bean in the 
Bedrock.server.services.ws.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.staticdata.foureyes.registerentity.RegisterEntity 

[11/3/11 15:53:47:756 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.generic.GenericWebService
interface of 
the GenericWebServiceWebService enterprise bean in the 
Bedrock.server.services.ws.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.ws.jar/GenericWebServiceWeb
Service#biz.wss.staticdata.foureyes.generic.GenericWebService 


[11/3/11 15:53:47:760 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.generic.GenericWebService
interface of 
the GenericWebServiceWebService enterprise bean in the 
Bedrock.server.services.ws.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.staticdata.foureyes.generic.GenericWebService 

[11/3/11 15:53:47:766 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.cmm.transaction.export.CMMTransactionEventExportProfile 
interface of the CMMTransactionEventExportProfileWebService enterprise
bean in 
the Bedrock.server.services.ws.jar module of the Bedrock-EAR
application. The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.ws.jar/CMMTransactionEventE
xportProfileWebService#biz.wss.cmm.transaction.export.CMMTransactionEven
tExportProfile 


[11/3/11 15:53:47:769 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.cmm.transaction.export.CMMTransactionEventExportProfile 
interface of the CMMTransactionEventExportProfileWebService enterprise
bean in 
the Bedrock.server.services.ws.jar module of the Bedrock-EAR
application. The 
binding location is: 
ejblocal:biz.wss.cmm.transaction.export.CMMTransactionEventExportProfile


[11/3/11 15:53:47:774 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.auditmaker.AuditMakerRetrieval
interface 
of the AuditMakerRetrievalWebService enterprise bean in the 
Bedrock.server.services.ws.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.ws.jar/AuditMakerRetrievalW
ebService#biz.wss.staticdata.foureyes.auditmaker.AuditMakerRetrieval 


[11/3/11 15:53:47:777 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.auditmaker.AuditMakerRetrieval
interface 
of the AuditMakerRetrievalWebService enterprise bean in the 
Bedrock.server.services.ws.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.staticdata.foureyes.auditmaker.AuditMakerRetrieval 

[11/3/11 15:53:47:781 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.config.ConfigWorkflow interface
of the 
ConfigWorkflowWebService enterprise bean in the
Bedrock.server.services.ws.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.ws.jar/ConfigWorkflowWebSer
vice#biz.wss.staticdata.foureyes.config.ConfigWorkflow 


[11/3/11 15:53:47:783 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.config.ConfigWorkflow interface
of the 
ConfigWorkflowWebService enterprise bean in the
Bedrock.server.services.ws.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.staticdata.foureyes.config.ConfigWorkflow 

[11/3/11 15:53:47:787 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.promoter.Promoter interface of
the 
PromoterWebService enterprise bean in the Bedrock.server.services.ws.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.ws.jar/PromoterWebService#b
iz.wss.staticdata.foureyes.promoter.Promoter 


[11/3/11 15:53:47:789 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.promoter.Promoter interface of
the 
PromoterWebService enterprise bean in the Bedrock.server.services.ws.jar
module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.staticdata.foureyes.promoter.Promoter 

[11/3/11 15:53:47:793 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.dashboard.Dashboard interface of
the 
DashboardWebService enterprise bean in the
Bedrock.server.services.ws.jar module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.services.ws.jar/DashboardWebService#
biz.wss.staticdata.foureyes.dashboard.Dashboard 


[11/3/11 15:53:47:796 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.staticdata.foureyes.dashboard.Dashboard interface of
the 
DashboardWebService enterprise bean in the
Bedrock.server.services.ws.jar module 
of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.staticdata.foureyes.dashboard.Dashboard 

[11/3/11 15:53:47:810 UTC] 0000000f EJBContainerI I WSVR0057I: EJB jar
started: 
Bedrock.server.services.ws.jar 

[11/3/11 15:53:48:124 UTC] 0000000f EJBContainerI I WSVR0037I: Starting
EJB jar: 
Bedrock.server.api.ws.jar 

[11/3/11 15:53:48:128 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.api.dataelementapi.DataElementAPI
interface of 
the DataElementAPIWebservice enterprise bean in the
Bedrock.server.api.ws.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/DataElementAPIWebservice#
biz.wss.interfaces.api.dataelementapi.DataElementAPI 


[11/3/11 15:53:48:131 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.api.dataelementapi.DataElementAPI
interface of 
the DataElementAPIWebservice enterprise bean in the
Bedrock.server.api.ws.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.api.dataelementapi.DataElementAPI 

[11/3/11 15:53:48:135 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.api.settlementcentreapi.SettlementCentreAPI 
interface of the SettlementCentreAPIWebservice enterprise bean in the 
Bedrock.server.api.ws.jar module of the Bedrock-EAR application. The
binding 
location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/SettlementCentreAPIWebser
vice#biz.wss.interfaces.api.settlementcentreapi.SettlementCentreAPI 


[11/3/11 15:53:48:137 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.api.settlementcentreapi.SettlementCentreAPI 
interface of the SettlementCentreAPIWebservice enterprise bean in the 
Bedrock.server.api.ws.jar module of the Bedrock-EAR application. The
binding 
location is: 
ejblocal:biz.wss.interfaces.api.settlementcentreapi.SettlementCentreAPI 

[11/3/11 15:53:48:139 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.api.swift.SWIFTBicAPILocalInterface interface
of the 
SWIFTBicAPIEjb enterprise bean in the Bedrock.server.api.ws.jar module
of the 
Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/SWIFTBicAPIEjb#biz.wss.se
rver.api.swift.SWIFTBicAPILocalInterface 


[11/3/11 15:53:48:142 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.api.swift.SWIFTBicAPILocalInterface interface
of the 
SWIFTBicAPIEjb enterprise bean in the Bedrock.server.api.ws.jar module
of the 
Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.api.swift.SWIFTBicAPILocalInterface 

[11/3/11 15:53:48:145 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.api.dataelementgroup.DataElementGroupAPILocalInterface
interface 
of the DataElementGroupAPIEJB enterprise bean in the
Bedrock.server.api.ws.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/DataElementGroupAPIEJB#bi
z.wss.server.api.dataelementgroup.DataElementGroupAPILocalInterface 


[11/3/11 15:53:48:147 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.api.dataelementgroup.DataElementGroupAPILocalInterface
interface 
of the DataElementGroupAPIEJB enterprise bean in the
Bedrock.server.api.ws.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.api.dataelementgroup.DataElementGroupAPILocalInt
erface 

[11/3/11 15:53:48:151 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.api.paymentmethodapi.PaymentMethodAPI
interface 
of the PaymentMethodAPIWebservice enterprise bean in the 
Bedrock.server.api.ws.jar module of the Bedrock-EAR application. The
binding 
location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/PaymentMethodAPIWebservic
e#biz.wss.interfaces.api.paymentmethodapi.PaymentMethodAPI 


[11/3/11 15:53:48:153 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.api.paymentmethodapi.PaymentMethodAPI
interface 
of the PaymentMethodAPIWebservice enterprise bean in the 
Bedrock.server.api.ws.jar module of the Bedrock-EAR application. The
binding 
location is:
ejblocal:biz.wss.interfaces.api.paymentmethodapi.PaymentMethodAPI 

[11/3/11 15:53:48:158 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.api.tradeapi.TradeAPI interface of the 
TradeAPIWebservice enterprise bean in the Bedrock.server.api.ws.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/TradeAPIWebservice#biz.ws
s.interfaces.api.tradeapi.TradeAPI 


[11/3/11 15:53:48:160 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.api.tradeapi.TradeAPI interface of the 
TradeAPIWebservice enterprise bean in the Bedrock.server.api.ws.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.api.tradeapi.TradeAPI 

[11/3/11 15:53:48:163 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.api.trade.TradeAPILocalInterface interface of
the 
TradeAPIEJB enterprise bean in the Bedrock.server.api.ws.jar module of
the 
Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/TradeAPIEJB#biz.wss.serve
r.api.trade.TradeAPILocalInterface 


[11/3/11 15:53:48:165 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.api.trade.TradeAPILocalInterface interface of
the 
TradeAPIEJB enterprise bean in the Bedrock.server.api.ws.jar module of
the 
Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.api.trade.TradeAPILocalInterface 

[11/3/11 15:53:48:168 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.api.paymentmethod.PaymentMethodAPILocalInterface 
interface of the PaymentMethodAPIEJB enterprise bean in the 
Bedrock.server.api.ws.jar module of the Bedrock-EAR application. The
binding 
location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/PaymentMethodAPIEJB#biz.w
ss.server.api.paymentmethod.PaymentMethodAPILocalInterface 


[11/3/11 15:53:48:170 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.server.api.paymentmethod.PaymentMethodAPILocalInterface 
interface of the PaymentMethodAPIEJB enterprise bean in the 
Bedrock.server.api.ws.jar module of the Bedrock-EAR application. The
binding 
location is: 
ejblocal:biz.wss.server.api.paymentmethod.PaymentMethodAPILocalInterface


[11/3/11 15:53:48:173 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.api.dataelementgroupapi.DataElementGroupAPI 
interface of the DataElementGroupAPIWebservice enterprise bean in the 
Bedrock.server.api.ws.jar module of the Bedrock-EAR application. The
binding 
location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/DataElementGroupAPIWebser
vice#biz.wss.interfaces.api.dataelementgroupapi.DataElementGroupAPI 


[11/3/11 15:53:48:177 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the
biz.wss.interfaces.api.dataelementgroupapi.DataElementGroupAPI 
interface of the DataElementGroupAPIWebservice enterprise bean in the 
Bedrock.server.api.ws.jar module of the Bedrock-EAR application. The
binding 
location is: 
ejblocal:biz.wss.interfaces.api.dataelementgroupapi.DataElementGroupAPI 

[11/3/11 15:53:48:181 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.api.swiftbicapi.SWIFTBicAPI interface of
the 
SWIFTBicAPIWebService enterprise bean in the Bedrock.server.api.ws.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/SWIFTBicAPIWebService#biz
.wss.interfaces.api.swiftbicapi.SWIFTBicAPI 


[11/3/11 15:53:48:185 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.interfaces.api.swiftbicapi.SWIFTBicAPI interface of
the 
SWIFTBicAPIWebService enterprise bean in the Bedrock.server.api.ws.jar
module of 
the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.interfaces.api.swiftbicapi.SWIFTBicAPI 

[11/3/11 15:53:48:187 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.api.trade.TradeAPIBusinessMediator interface
of the 
TradeAPIBusinessMediatorEJB enterprise bean in the
Bedrock.server.api.ws.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/TradeAPIBusinessMediatorE
JB#biz.wss.server.api.trade.TradeAPIBusinessMediator 


[11/3/11 15:53:48:189 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.api.trade.TradeAPIBusinessMediator interface
of the 
TradeAPIBusinessMediatorEJB enterprise bean in the
Bedrock.server.api.ws.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.api.trade.TradeAPIBusinessMediator 

[11/3/11 15:53:48:192 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.api.dataelement.DataElementAPILocalInterface 
interface of the DataElementAPIEJB enterprise bean in the 
Bedrock.server.api.ws.jar module of the Bedrock-EAR application. The
binding 
location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/DataElementAPIEJB#biz.wss
.server.api.dataelement.DataElementAPILocalInterface 


[11/3/11 15:53:48:195 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the biz.wss.server.api.dataelement.DataElementAPILocalInterface 
interface of the DataElementAPIEJB enterprise bean in the 
Bedrock.server.api.ws.jar module of the Bedrock-EAR application. The
binding 
location is:
ejblocal:biz.wss.server.api.dataelement.DataElementAPILocalInterface 

[11/3/11 15:53:48:198 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.api.settlementcentre.SettlementCentreAPILocalInterface
interface 
of the SettlementCentreAPIEJB enterprise bean in the
Bedrock.server.api.ws.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.api.ws.jar/SettlementCentreAPIEJB#bi
z.wss.server.api.settlementcentre.SettlementCentreAPILocalInterface 


[11/3/11 15:53:48:201 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.server.api.settlementcentre.SettlementCentreAPILocalInterface
interface 
of the SettlementCentreAPIEJB enterprise bean in the
Bedrock.server.api.ws.jar 
module of the Bedrock-EAR application. The binding location is: 
ejblocal:biz.wss.server.api.settlementcentre.SettlementCentreAPILocalInt
erface 

[11/3/11 15:53:48:228 UTC] 0000000f EJBContainerI I WSVR0057I: EJB jar
started: 
Bedrock.server.api.ws.jar 

[11/3/11 15:53:48:323 UTC] 0000000f EJBContainerI I WSVR0037I: Starting
EJB jar: 
Bedrock.server.intermodule.jar 

[11/3/11 15:53:48:327 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.intermodule.services.data.process.InterModuleDataProc
essingService 

interface of the InterModuleDataProcessingServiceEJB enterprise bean in
the 
Bedrock.server.intermodule.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.intermodule.jar/InterModuleDataProce
ssingServiceEJB#biz.wss.interfaces.intermodule.services.data.process.Int
erModuleDataProcessingService 


[11/3/11 15:53:48:330 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.intermodule.services.data.process.InterModuleDataProc
essingService 

interface of the InterModuleDataProcessingServiceEJB enterprise bean in
the 
Bedrock.server.intermodule.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.intermodule.services.data.process.InterModul
eDataProcessingService 


[11/3/11 15:53:48:335 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.intermodule.services.bo.trade.BoTradeProcessingMediat
ionService 

interface of the BoTradeProcessingMediationServiceEJB enterprise bean in
the 
Bedrock.server.intermodule.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:Bedrock-EAR/Bedrock.server.intermodule.jar/BoTradeProcessingMed
iationServiceEJB#biz.wss.interfaces.intermodule.services.bo.trade.BoTrad
eProcessingMediationService 


[11/3/11 15:53:48:337 UTC] 0000000f EJBContainerI I CNTR0167I: The
server is 
binding the 
biz.wss.interfaces.intermodule.services.bo.trade.BoTradeProcessingMediat
ionService 

interface of the BoTradeProcessingMediationServiceEJB enterprise bean in
the 
Bedrock.server.intermodule.jar module of the Bedrock-EAR application.
The 
binding location is: 
ejblocal:biz.wss.interfaces.intermodule.services.bo.trade.BoTradeProcess
ingMediationService 


[11/3/11 15:53:48:372 UTC] 0000000f SibMessage I [:] CWSIV0777I: A
connection to 
messaging engine rndvm01Node01.server1-WSS_BUS for destination 
WSSBOINTERMODULENOTIFYQueue on bus WSS_BUS has been successfully
created. 

[11/3/11 15:53:48:373 UTC] 0000000f ActivationSpe I J2CA0523I: The
Message 
Endpoint for ActivationSpec
jms/WSSBOINTERMODULENOTIFYQueueActivationSpec 
(com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl) and MDB
Application 
Bedrock-EAR#Bedrock.server.intermodule.jar#BoIntermoduleNotificationEJB
is 
activated. 

[11/3/11 15:53:48:382 UTC] 0000000f EJBContainerI I WSVR0057I: EJB jar
started: 
Bedrock.server.intermodule.jar 

[11/3/11 15:53:47:546 UTC] 0000000f webapp I 
com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading
Web 
Module: Bedrock.pkg.web.bedrock. 

[11/3/11 15:53:47:962 UTC] 0000000f WASSessionCor I
SessionContextRegistry 
getSessionContext SESN0176I: Will create a new session context for
application 
key default_host/bedrock 

[11/3/11 15:53:48:418 UTC] 0000000f SystemOut O factory == null :false 

[11/3/11 15:53:48:418 UTC] 0000000f SystemOut O destinaion== null :false


[11/3/11 15:53:48:427 UTC] 0000000f PrivExAction W J2CA0144W: No 
mappingConfigAlias found for ConnectionFactory or DataSource 
jms/TopicConnectionFactory. 

[11/3/11 15:53:48:433 UTC] 0000000f PrivExAction W J2CA0114W: No 
container-managed authentication alias found for ConnectionFactory or
DataSource 
jms/TopicConnectionFactory. 

[11/3/11 15:53:49:335 UTC] 0000000f config I Initializing Sun's
JavaServer Faces 
implementation (1.2_07-b03-FCS) for context '/bedrock' 

[11/3/11 15:53:49:919 UTC] 0000000f InjectionProc W CWNEN0040W: The 
biz.wss.jsf.staticintegration.KickOffBase.dao field or method was
configured to 
be injected multiple times. 

[11/3/11 15:53:49:929 UTC] 0000000f InjectionProc W CWNEN0040W: The 
biz.wss.jsf.staticintegration.KickOffBase.configWorkflowService field or
method 
was configured to be injected multiple times. 

[11/3/11 15:53:49:948 UTC] 0000000f servlet I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I:
[Bedrock-EAR] 
[/bedrock] [Faces Servlet]: Initialization successful. 

[11/3/11 15:53:49:950 UTC] 0000000f webcontainer I 
com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web
Module 
Bedrock.pkg.web.bedrock has been bound to 
default_host[*:2000,*:80,*:2002,*:2011,*:2012,*:443]. 

[11/3/11 15:53:49:993 UTC] 0000000f webapp I 
com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading
Web 
Module: HTTP router for Bedrock.server.services.ws.jar. 

[11/3/11 15:53:50:024 UTC] 0000000f WASSessionCor I
SessionContextRegistry 
getSessionContext SESN0176I: Will create a new session context for
application 
key default_host/bedrockLocal 

[11/3/11 15:53:50:034 UTC] 0000000f WASAxis2Exten I WSWS7037I: The 
/GenericWebService URL pattern was configured for the 
GenericWebServiceWebService servlet located in the 
Bedrock.pkg.web.was-ws-router.war web module. 

[11/3/11 15:53:50:035 UTC] 0000000f WASAxis2Exten I WSWS7037I: The
/Dashboard 
URL pattern was configured for the DashboardWebService servlet located
in the 
Bedrock.pkg.web.was-ws-router.war web module. 

[11/3/11 15:53:50:039 UTC] 0000000f WASAxis2Exten I WSWS7037I: The 
/CMMTransactionEventExportProfileService URL pattern was configured for
the 
CMMTransactionEventExportProfileWebService servlet located in the 
Bedrock.pkg.web.was-ws-router.war web module. 

[11/3/11 15:53:50:040 UTC] 0000000f WASAxis2Exten I WSWS7037I: The 
/ConfigWorkflow URL pattern was configured for the
ConfigWorkflowWebService 
servlet located in the Bedrock.pkg.web.was-ws-router.war web module. 

[11/3/11 15:53:50:041 UTC] 0000000f WASAxis2Exten I WSWS7037I: The 
/RegisterEntity URL pattern was configured for the
RegisterEntityWebService 
servlet located in the Bedrock.pkg.web.was-ws-router.war web module. 

[11/3/11 15:53:50:042 UTC] 0000000f WASAxis2Exten I WSWS7037I: The 
/AuditMakerRetrieval URL pattern was configured for the 
AuditMakerRetrievalWebService servlet located in the 
Bedrock.pkg.web.was-ws-router.war web module. 

[11/3/11 15:53:50:042 UTC] 0000000f WASAxis2Exten I WSWS7037I: The
/Promoter URL 
pattern was configured for the PromoterWebService servlet located in the

Bedrock.pkg.web.was-ws-router.war web module. 

[11/3/11 15:53:50:057 UTC] 0000000f webcontainer I 
com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web
Module 
HTTP router for Bedrock.server.services.ws.jar has been bound to 
default_host[*:2000,*:80,*:2002,*:2011,*:2012,*:443]. 

[11/3/11 15:53:50:102 UTC] 0000000f webapp I 
com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading
Web 
Module: Bedrock.pkg.web.was-cluster. 

[11/3/11 15:53:50:125 UTC] 0000000f WASSessionCor I
SessionContextRegistry 
getSessionContext SESN0176I: Will create a new session context for
application 
key default_host/cluster 

[11/3/11 15:53:50:137 UTC] 0000000f webcontainer I 
com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web
Module 
Bedrock.pkg.web.was-cluster has been bound to 
default_host[*:2000,*:80,*:2002,*:2011,*:2012,*:443]. 

[11/3/11 15:53:50:155 UTC] 0000000f ApplicationMg A WSVR0221I:
Application 
started: Bedrock-EAR 

[11/3/11 15:53:50:156 UTC] 0000000f CompositionUn A WSVR0191I:
Composition unit 
WebSphere:cuname=Bedrock-EAR in BLA WebSphere:blaname=Bedrock-EAR
started. 

[11/3/11 15:53:50:193 UTC] 00000000 TCPChannel I TCPC0001I: TCP Channel
TCP_1 is 
listening on host * (IPv4) port 2001. 

[11/3/11 15:53:50:201 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain WCInboundAdmin. 

[11/3/11 15:53:50:209 UTC] 00000000 TCPChannel I TCPC0001I: TCP Channel
TCP_2 is 
listening on host * (IPv4) port 2000. 

[11/3/11 15:53:50:232 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain WCInboundDefault. 

[11/3/11 15:53:50:259 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain HttpQueueInboundDefault. 

[11/3/11 15:53:50:282 UTC] 00000000 TCPChannel I TCPC0001I: TCP Channel
TCP_4 is 
listening on host * (IPv4) port 2002. 

[11/3/11 15:53:50:285 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain HttpQueueInboundDefaultSecure. 

[11/3/11 15:53:50:287 UTC] 00000000 TCPChannel I TCPC0001I: TCP Channel
TCP_3 is 
listening on host * (IPv4) port 2003. 

[11/3/11 15:53:50:289 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain WCInboundAdminSecure. 

[11/3/11 15:53:50:369 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain WCInboundDefaultSecure. 

[11/3/11 15:53:50:371 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain SOAPAcceptorChain1. 

[11/3/11 15:53:50:372 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain SOAPAcceptorChain2. 

[11/3/11 15:53:50:373 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain SOAPAcceptorChain3. 

[11/3/11 15:53:50:374 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain SOAPAcceptorChain4. 

[11/3/11 15:53:50:375 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain SOAPAcceptorChain5. 

[11/3/11 15:53:50:377 UTC] 00000000 WSChannelFram A CHFW0019I: The
Transport 
Channel Service has started chain SOAPAcceptorChain6. 

[11/3/11 15:53:51:302 UTC] 0000000d SchedulerServ I SCHD0077I: The
Scheduler 
Service is starting the Schedulers. 

[11/3/11 15:53:50:403 UTC] 0000000d SchedulerServ I SCHD0078I: The
Scheduler 
Service has completed starting the Schedulers. 

[11/3/11 15:53:51:418 UTC] 00000000 RMIConnectorC A ADMC0026I: The RMI
Connector 
is available at port 2005 

[11/3/11 15:53:51:506 UTC] 00000000 JMXConnectors I ADMC0058I: The JMX
JSR160RMI 
connector is available at port 2005 

[11/3/11 15:53:50:695 UTC] 00000023 FfdcProvider W 
com.ibm.ws.ffdc.impl.FfdcProvider logIncident FFDC1003I: FFDC Incident
emitted 
on 
/rndvm/java/profiles/AppSrvRNDVM/logs/ffdc/server1_31a931a9_11.11.03_15.
53.50.520776472669929274140.txt 

com.ibm.wsspi.injectionengine.InjectionBinding.getInjectionObject 408 

[11/3/11 15:53:50:718 UTC] 00000023 InjectionBind E CWNEN0030E: The 
com.ibm.ws.util.JPAJndiLookupObjectFactory@6aa26aa2 factory encountered
a 
problem getting the object instance Reference Class Name: 
javax.persistence.EntityManager 

Type: JPAJndiLookupInfo 

Content: PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA, 
Bedrock-EAR#Bedrock.server.services.local.jar#FotDAOEJB#biz.wss.server.s
ervices.local.fx.pricing.fotinfo.FotDAOEJB/em, 

isFactory=false, isSFSB=false, PersistenceContextType=Transaction,
properties=[] 

binding object. 

[11/3/11 15:53:50:722 UTC] 00000025 InjectionBind E CWNEN0030E: The 
com.ibm.ws.util.JPAJndiLookupObjectFactory@2c862c86 factory encountered
a 
problem getting the object instance Reference Class Name: 
javax.persistence.EntityManager 

Type: JPAJndiLookupInfo 

Content: PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA, 
Bedrock-EAR#Bedrock.server.services.local.jar#ParameterDaoEjb#biz.wss.se
rver.services.local.dao.readers.wss.ParameterDaoEjb/em, 

isFactory=false, isSFSB=false, PersistenceContextType=Transaction,
properties=[] 

binding object. 

[11/3/11 15:53:50:750 UTC] 00000025 DMAdapter I
com.ibm.ws.ffdc.impl.DMAdapter 
getAnalysisEngine FFDC1009I: Analysis Engine using data base: 
/rndvm/java/profiles/AppSrvRNDVM/properties/logbr/ffdc/adv/ffdcdb.xml 

[11/3/11 15:53:51:875 UTC] 00000000 WsServerImpl A WSVR0001I: Server
server1 
open for e-business 

[11/3/11 15:53:52:005 UTC] 00000025 FfdcProvider W 
com.ibm.ws.ffdc.impl.FfdcProvider logIncident FFDC1003I: FFDC Incident
emitted 
on 
/rndvm/java/profiles/AppSrvRNDVM/logs/ffdc/server1_28672867_11.11.03_15.
53.50.7265679172213946432535.txt 

com.ibm.ejs.container.StatelessBeanO.<init> 282 

[11/3/11 15:53:52:009 UTC] 00000026 InjectionBind E CWNEN0030E: The 
com.ibm.ws.util.JPAJndiLookupObjectFactory@58d858d8 factory encountered
a 
problem getting the object instance Reference Class Name: 
javax.persistence.EntityManager 

Type: JPAJndiLookupInfo 

Content: PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA, 
Bedrock-EAR#Bedrock.server.services.local.jar#TimerSchedulerEJB#biz.wss.
server.services.local.scheduler.TimerSchedulerEJB/entityManager, 

isFactory=false, isSFSB=false, PersistenceContextType=Transaction,
properties=[] 

binding object. 

[11/3/11 15:53:53:360 UTC] 00000025 FfdcProvider W 
com.ibm.ws.ffdc.impl.FfdcProvider logIncident FFDC1003I: FFDC Incident
emitted 
on 
/rndvm/java/profiles/AppSrvRNDVM/logs/ffdc/server1_28672867_11.11.03_15.
53.52.0146725760682440129514.txt 

com.ibm.ejs.container.EJSHome.createBeanO 1023 

[11/3/11 15:53:53:366 UTC] 00000023 BusinessExcep E CNTR0019E: EJB threw
an 
unexpected (non-declared) exception during invocation of method
"getConfig". 
Exception data: javax.ejb.EJBException: Injection failure; nested
exception is: 
java.lang.IllegalStateException: EntityManagerFactory has not been
created for 
PU : PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA 

java.lang.IllegalStateException: EntityManagerFactory has not been
created for 
PU : PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA 

at 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerFactory(JPAPUnitI
nfo.java:1369) 


at 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerPool(JPAPUnitInfo
.java:1577) 


at 
com.ibm.ws.jpa.management.JPATxEntityManager.<init>(JPATxEntityManager.j
ava:156) 

at 
com.ibm.ws.jpa.management.JPAComponentImpl.getEntityManager(JPAComponent
Impl.java:1053) 


at 
com.ibm.ws.util.JPAJndiLookupObjectFactory.getObjectInstance(JPAJndiLook
upObjectFactory.java:151) 


at 
com.ibm.wsspi.injectionengine.InjectionBinding.getInjectionObject(Inject
ionBinding.java:659) 


at 
com.ibm.wsspi.injectionengine.InjectionTargetField.inject(InjectionTarge
tField.java:245) 


at 
com.ibm.ws.injectionengine.InjectionEngineImpl.inject(InjectionEngineImp
l.java:620) 


at
com.ibm.ejs.container.StatelessBeanO.initialize(StatelessBeanO.java:287)


at 
com.ibm.ejs.container.CMStatelessBeanOFactory.create(CMStatelessBeanOFac
tory.java:45) 


at com.ibm.ejs.container.EJSHome.createBeanO(EJSHome.java:1031) 

at com.ibm.ejs.container.EJSHome.createBeanO(EJSHome.java:1141) 

at 
com.ibm.ejs.container.activator.UncachedActivationStrategy.atActivate(Un
cachedActivationStrategy.java:84) 


at
com.ibm.ejs.container.activator.Activator.activateBean(Activator.java:59
9)

at
com.ibm.ejs.container.EJSContainer.preInvokeActivate(EJSContainer.java:3
964)

at
com.ibm.ejs.container.EJSContainer.EjbPreInvoke(EJSContainer.java:3349) 

at 
biz.wss.interfaces.services.fx.pricing.fotinfo.EJSLocal0SLFotDAOEJB_73ee
ba3d.getConfig(EJSLocal0SLFotDAOEJB_73eeba3d.java) 


at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotRepository.initialis
e(FotRepository.java:72) 


at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.start(Fo
tInitialiser.java:80) 


at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.onMessag
e(FotInitialiser.java:65) 


at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 

at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:60)

at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:37) 


at java.lang.reflect.Method.invoke(Method.java:611) 

at
com.ibm.ejs.container.EJSContainer.invokeProceed(EJSContainer.java:5874)


at 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(Invocat
ionContextImpl.java:586) 


at 
biz.wss.server.services.logging.analysis.MethodTimerInterceptor.intercep
t(MethodTimerInterceptor.java:161) 


at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 

at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:60)

at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:37) 


at java.lang.reflect.Method.invoke(Method.java:611) 

at 
com.ibm.ejs.container.interceptors.InterceptorProxy.invokeInterceptor(In
terceptorProxy.java:227) 


at 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(Invocat
ionContextImpl.java:566) 


at 
com.ibm.ejs.container.interceptors.InvocationContextImpl.doAroundInvoke(
InvocationContextImpl.java:217) 


at 
com.ibm.ejs.container.MessageEndpointHandler.invokeMdbMethod(MessageEndp
ointHandler.java:1080) 


at 
com.ibm.ejs.container.MessageEndpointHandler.invoke(MessageEndpointHandl
er.java:778) 


at $Proxy42.onMessage(Unknown Source) 

at 
com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl.invokeEndpoint(J
msJcaEndpointInvokerImpl.java:233) 


at 
com.ibm.ws.sib.ra.inbound.impl.SibRaDispatcher.dispatch(SibRaDispatcher.
java:900) 

at 
com.ibm.ws.sib.ra.inbound.impl.SibRaSingleProcessListener$SibRaWork.run(
SibRaSingleProcessListener.java:552) 


at com.ibm.ejs.j2c.work.WorkProxy.run(WorkProxy.java:399) 

at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604) 

javax.ejb.EJBException: Injection failure; nested exception is: 
java.lang.IllegalStateException: EntityManagerFactory has not been
created for 
PU : PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA 

Caused by: java.lang.IllegalStateException: EntityManagerFactory has not
been 
created for PU :
PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA 

at 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerFactory(JPAPUnitI
nfo.java:1369) 


at 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerPool(JPAPUnitInfo
.java:1577) 


at 
com.ibm.ws.jpa.management.JPATxEntityManager.<init>(JPATxEntityManager.j
ava:156) 

at 
com.ibm.ws.jpa.management.JPAComponentImpl.getEntityManager(JPAComponent
Impl.java:1053) 


at 
com.ibm.ws.util.JPAJndiLookupObjectFactory.getObjectInstance(JPAJndiLook
upObjectFactory.java:151) 


at 
com.ibm.wsspi.injectionengine.InjectionBinding.getInjectionObject(Inject
ionBinding.java:659) 


at 
com.ibm.wsspi.injectionengine.InjectionTargetField.inject(InjectionTarge
tField.java:245) 


at 
com.ibm.ws.injectionengine.InjectionEngineImpl.inject(InjectionEngineImp
l.java:620) 


at
com.ibm.ejs.container.StatelessBeanO.initialize(StatelessBeanO.java:287)


at 
com.ibm.ejs.container.CMStatelessBeanOFactory.create(CMStatelessBeanOFac
tory.java:45) 


at com.ibm.ejs.container.EJSHome.createBeanO(EJSHome.java:1031) 

at com.ibm.ejs.container.EJSHome.createBeanO(EJSHome.java:1141) 

at 
com.ibm.ejs.container.activator.UncachedActivationStrategy.atActivate(Un
cachedActivationStrategy.java:84) 


at
com.ibm.ejs.container.activator.Activator.activateBean(Activator.java:59
9)

at
com.ibm.ejs.container.EJSContainer.preInvokeActivate(EJSContainer.java:3
964)

at
com.ibm.ejs.container.EJSContainer.EjbPreInvoke(EJSContainer.java:3349) 

at 
biz.wss.interfaces.services.fx.pricing.fotinfo.EJSLocal0SLFotDAOEJB_73ee
ba3d.getConfig(EJSLocal0SLFotDAOEJB_73eeba3d.java) 


at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotRepository.initialis
e(FotRepository.java:72) 


at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.start(Fo
tInitialiser.java:80) 


at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.onMessag
e(FotInitialiser.java:65) 


at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 

at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:60)

at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:37) 


at java.lang.reflect.Method.invoke(Method.java:611) 

at
com.ibm.ejs.container.EJSContainer.invokeProceed(EJSContainer.java:5874)


at 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(Invocat
ionContextImpl.java:586) 


at 
biz.wss.server.services.logging.analysis.MethodTimerInterceptor.intercep
t(MethodTimerInterceptor.java:161) 


at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 

at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:60)

at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:37) 


at java.lang.reflect.Method.invoke(Method.java:611) 

at 
com.ibm.ejs.container.interceptors.InterceptorProxy.invokeInterceptor(In
terceptorProxy.java:227) 


at 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(Invocat
ionContextImpl.java:566) 


at 
com.ibm.ejs.container.interceptors.InvocationContextImpl.doAroundInvoke(
InvocationContextImpl.java:217) 


at 
com.ibm.ejs.container.MessageEndpointHandler.invokeMdbMethod(MessageEndp
ointHandler.java:1080) 


at 
com.ibm.ejs.container.MessageEndpointHandler.invoke(MessageEndpointHandl
er.java:778) 


at $Proxy42.onMessage(Unknown Source) 

at 
com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl.invokeEndpoint(J
msJcaEndpointInvokerImpl.java:233) 


at 
com.ibm.ws.sib.ra.inbound.impl.SibRaDispatcher.dispatch(SibRaDispatcher.
java:900) 

at 
com.ibm.ws.sib.ra.inbound.impl.SibRaSingleProcessListener$SibRaWork.run(
SibRaSingleProcessListener.java:552) 


at com.ibm.ejs.j2c.work.WorkProxy.run(WorkProxy.java:399) 

at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604) 

3.We already do this sort of thing with our Unit tests on our queries
and it 
works OK, just as it works in GlassFish, WebLogic and sometimes
WebSphere. 

Kind Regards 

Nathan 

-----Original Message----- 
From: eclipselink-users-bounces@xxxxxxxxxxx 
[mailto:eclipselink-users-bounces@xxxxxxxxxxx] On Behalf Of Tom Ware 
Sent: 03 November 2011 13:57 
To: eclipselink-users@xxxxxxxxxxx 
Subject: Re: [eclipselink-users] Bug 362564 - WebSphere specific 
randomisedorg.eclipse.persistence.exceptions.JPQLException error on
startup 

Can you clarify what is working and what is not working? You mentioned
earlier 

that your persistence unit deploys on other application servers. Which
ones? 

Can you successfully execute any of the queries that are causing these 

exceptions on those application servers? 

I am trying to figure out how we can narrow down what the issue is. Some


questions/suggestions below: 

1. 

You say, " All entities are mapped by annotations on the fields with no 

exceptions", but I see this: 

<mapping-file>META-INF/orm-wssjpa.xml</mapping-file> 

What is in that file? 

2. 

The exception is strange because it appears as though EclipseLink is
finding the 

Embeddable, but not the particular field of the embeddable. Are 

CreditLineMaker, CreditLineTahoe, StatusField all in the same jar? Is
there any 

chance any of those classes is duplicated in another jar or somewhere
else on 

the classpath? Is there any EclipseLink logging earlier in your log file
that 

indicates a warning? 

3. 

What happens if you do a simple Java SE test. Put all the relevant jars
on the 

classpath, switch your persistence unit to Application managed and try
to create 

an EntityManagerFactory and use one of the queries that is causing you
an issue. 

(you can put <exclude-unlisted-classes>false</exclude-unlisted-classes>
in your 

persistence unit to allow EclispeLink to auto-discover Entities) 

-Tom 

On 03/11/2011 5:00 AM, Tim Martin wrote: 

> All entities are mapped by annotations on the fields with no
exceptions 

> All jpa mappings are on classes with no exceptions - package is just
called 

> interface as its in a shared jar between client and server side 

> We deploy an ear file that contains about 12 jars, these classes are
in a 

> different jar to the one where the persistence.xml is defined - but it
is 

> referenced in the persistence.xml 

> 

> nb - auditFields has no @Embedded annotation for some reason in the 

> PortfolioGroupMemberAudit entity, seems it got missed off in about 30%
of the 

> codebase for some reason - it must infer it somehow or they wouldnt
work at all 

> - we'll make sure they get put in... 

> BUT - some of the other classes in the original stack traces with the
bug do 

> reference embedded fields which are annotated correctly in ALL
entities - 

> eg CreditLineMaker sometime fails with 

> 

> Exception Description: Error compiling the query 

> [CreditLineMaker.findSummaryMaker: SELECT NEW 

> biz.wss.interfaces.entities.foureyes.auditmaker.SummaryRow( 

> a.makerFields.auditDateTime, a.makerFields.state, a.lineId, 

> a.statusField.status, a.makerFields.makerUser) FROM CreditLineMaker a
ORDER BY 

> a.makerFields.auditDateTime], line 1, column 134: unknown state or
association 

> field [statusField] of class 

> [biz.wss.interfaces.entities.credit.lines.foureyes.CreditLineMaker]. 

> 

> <persistence version="1.0" xmlns=
"http://java.sun.com/xml/ns/persistence";
<http://java.sun.com/xml/ns/persistence>  

> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
<http://www.w3.org/2001/XMLSchema-instance>  

> xsi:schemaLocation="http://java.sun.com/xml/ns/persistence 

> http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd";> 

> <persistence-unit name="WSSJPA" transaction-type="JTA"> 

> <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>

> <jta-data-source>jdbc/WSSJPADATASOURCE</jta-data-source> 

> <mapping-file>META-INF/orm-wssjpa.xml</mapping-file> 

> <jar-file>Bedrock.interfaces.entities.jar</jar-file> 

> <jar-file>Bedrock.server.services.local.jar</jar-file> 

> <jar-file>Bedrock.server.services.bo.jar</jar-file> 

> <jar-file>Bedrock.server.services.position.jar</jar-file> 

> 

> 

> @Entity 

> @NamedQueries({ //CLASS NAME 

> 

> 
@NamedQuery(name=NamedQueryNames.PORTFOLIOGROUPMEMBERAUDIT_GET_LAST_ACCE
PTED_AUDIT, 


> query="SELECT a " + 

> "FROM PortfolioGroupMemberAudit a " + 

> "WHERE a.auditId.id = :id " + 

> "AND a.auditId.auditDateTime < :auditTime " + 

> "AND a.auditFields.state = '0' " + 

> "ORDER BY a.auditId.auditDateTime DESC") 

> 

> }) 

> @Table(name = TableNames.WBR_SD_PFGRPMEMBERADT) 

> public class PortfolioGroupMemberAudit extends
PortfolioGroupMemberTahoe 

> implements Serializable, AuditIdAccess, AuditFieldAccess,
StatusFieldAccess { 

> private AuditFields auditFields = new AuditFields(); 

> .... 

> } 

> 

> @Embeddable 

> public class AuditFields implements Serializable{ 

> 

> private static final long serialVersionUID = 6546269842599786936L; 

> 

> private String auditUser; 

> 

> private Timestamp auditLastDateTime; 

> 

> private Timestamp auditNextDateTime; 

> 

> @Column(name="CURRENTSTATE") 

> private String state; 

> 

> private Timestamp effectiveFromDateTime; 

> 

> private String sourceTID = " "; 

> 

> @Entity 

> @Table(name=TableNames.WBR_CRLINEMKR) 

> @NamedQueries({ 

> @NamedQuery(name=NamedQueryNames.CREDITLINEMAKER_FIND_SUMMARY_MAKER, 

> query="SELECT NEW " + SummaryRow.CLASSPATH + "( 

> a.makerFields.auditDateTime, " + 

> " a.makerFields.state, a.lineId, " + 

> "a.statusField.status, a.makerFields.makerUser) " + 

> "FROM CreditLineMaker a " + 

> "ORDER BY a.makerFields.auditDateTime"), 

> 

> @NamedQuery(name=NamedQueryNames.CREDITLINEMAKER_IS_MAKER_EXISTING, 

> query="SELECT COUNT(a) " + 

> "FROM CreditLineMaker a " + 

> "WHERE a.lineId = :key"), 

> 

> @NamedQuery(name=NamedQueryNames.CREDITLINETAHOE_GET_LINE_ALLOCATIONS,


> query="SELECT a FROM LineAllocationLive a WHERE a.line.lineId = ?1") 

> 

> 

> }) 

> public class CreditLineMaker extends CreditLineTahoe implements 

> MakerFieldAccess, StatusFieldAccess { 

> 

> 

> private static final long serialVersionUID = 802982889993446568L; 

> 

> @Id 

> @Column(name="ID") 

> private String lineId; 

> 

> @Embedded 

> private MakerFields makerFields = new MakerFields(); 

> 

> @Embedded 

> private StatusField statusField = new StatusField(); 

> 

> ... 

> } 

> 

> @Embeddable 

> public class StatusField implements Serializable { 

> 

> 

> private static final long serialVersionUID = -4208550668300726222L; 

> 

> private String status; 

> 

> [11/1/11 12:16:36:933 UTC] 00000026 SystemOut O [EL Severe]:
2011-11-01 

> 12:16:36.913--ServerSession(217124081)--Local Exception Stack:
Exception 

> [EclipseLink-8030] (Eclipse Persistence Services -
2.2.1.v20110721-r9766): 

> org.eclipse.persistence.exceptions.JPQLException Exception
Description: Error 

> compiling the query
[DataElementGroupAudit.checkPrevAuditsByNaturalKey: SELECT 

> NEW 

> 
biz.wss.interfaces.entities.foureyes.auditmaker.AuditStateUser(a.auditFi
elds.currentState, 


> a.auditFields.auditUser) FROM DataElementGroupAudit a WHERE a.code =
:code 
ORDER 

> BY a.auditFields.auditDateTime DESC], line 1, column 76: unknown state
or 

> association field [auditFields] of class 

> 
[biz.wss.interfaces.entities.bo.dataelement.group.foureyes.DataElementGr
oupAudit]. 


> at 

> 
org.eclipse.persistence.exceptions.JPQLException.unknownAttribute(JPQLEx
ception.java:457) 


> at 
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.ja
va:88) 

> On 02/11/2011 17:07, Tom Ware wrote: 

>> The fact that the same error remains with the property suggests that
the issue 

>> is not related to multi-threading. 

>> 

>> I guess we have to figure out why it is not finding that particular
field. 

>> 

>> How is PortfolioGroupMemberAudit mapped? Does it use annotations or
orm.xml? 

>> If orm.xml is the orm.xml co-located with the class file? (i.e. is it
in the 

>> same jar) 

>> 

>> How does PortfolioGroupMemberAudit declare its auditFields property.
How is 

>> that mapped? What is the target? How is that mapped? 

>> 

>> I notice the package contains the word "interfaces". Are the mappings
to 

>> interfaces? Are those in separate jars? 

>> 

>> Are you deploying in a war? An ear? Where are the various parts of
your 

>> persistence unit packaged? 

>> 

>> 

>> -Tom 

>> 

>> On 02/11/2011 12:59 PM, Nathan Drew wrote: 

>>> Hi Tom, 

>>> 

>>> I tried again and the following errors are present, and looking
higher up the 

>>> startup logs I saw a similar exception to without the 

>>> eclipselink.deploy-on-startup set to true: 

>>> 

>>> [11/2/11 16:39:07:181 UTC] 0000000e SystemOut O [EL Severe]:
2011-11-02 

>>> 16:39:07.163--ServerSession(1019952331)--Local Exception Stack: 

>>> 

>>> Exception [EclipseLink-8030] (Eclipse Persistence Services - 

>>> 2.3.1.v20111018-r10243):
org.eclipse.persistence.exceptions.JPQLException 

>>> 

>>> Exception Description: Error compiling the query 

>>> [PortfolioGroupMemberAudit.getLastAcceptedAudit: SELECT a FROM 

>>> PortfolioGroupMemberAudit a WHERE a.auditId.id = :id AND 
a.auditId.auditDateTime 

>>> < :auditTime AND a.auditFields.state = '0' ORDER BY
a.auditId.auditDateTime 

>>> DESC], line 1, column 114: unknown state or association field 
[auditFields] of 

>>> class 
[biz.wss.interfaces.entities.pfolio.foureyes.PortfolioGroupMemberAudit].


>>> 

>>> at 

>>> 
org.eclipse.persistence.exceptions.JPQLException.unknownAttribute(JPQLEx
ception.java:457) 


>>> 

>>> 

>>> at 
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.ja
va:87) 

>>> 

>>> at 
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.ja
va:72) 

>>> 

>>> at
org.eclipse.persistence.internal.jpa.parsing.Node.validate(Node.java:92)


>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.parsing.BinaryOperatorNode.validate
(BinaryOperatorNode.java:34) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.parsing.EqualsNode.validate(EqualsN
ode.java:41) 


>>> 

>>> 

>>> at
org.eclipse.persistence.internal.jpa.parsing.Node.validate(Node.java:95)


>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.parsing.LogicalOperatorNode.validat
e(LogicalOperatorNode.java:39) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.parsing.WhereNode.validate(WhereNod
e.java:34) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTre
e.java:207) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTre
e.java:183) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTre
e.java:173) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.parsing.JPQLParseTree.populateReadQ
ueryInternal(JPQLParseTree.java:110) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.parsing.JPQLParseTree.populateQuery
(JPQLParseTree.java:84) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.EJBQueryImpl.buildEJBQLDatabaseQuer
y(EJBQueryImpl.java:219) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.JPAQuery.processJPQLQuery(JPAQuery.
java:106) 

>>> 

>>> at
org.eclipse.persistence.internal.jpa.JPAQuery.prepare(JPAQuery.java:90) 

>>> 

>>> at 

>>> 
org.eclipse.persistence.queries.DatabaseQuery.checkPrepare(DatabaseQuery
.java:613) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.queries.DatabaseQuery.checkPrepare(DatabaseQuery
.java:575) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.sessions.AbstractSession.processJPAQuer
ies(AbstractSession.java:2161) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.initialize
Descriptors(DatabaseSessionImpl.java:442) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.postConnec
tDatasource(DatabaseSessionImpl.java:676) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.loginAndDe
tectDatasource(DatabaseSessionImpl.java:621) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryProvider.login(
EntityManagerFactoryProvider.java:206) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.deploy(Entit
yManagerSetupImpl.java:488) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryDelegate.getDat
abaseSession(EntityManagerFactoryDelegate.java:188) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.getDatabas
eSession(EntityManagerFactoryImpl.java:485) 


>>> 

>>> 

>>> at 

>>> 
org.eclipse.persistence.jpa.PersistenceProvider.createContainerEntityMan
agerFactory(PersistenceProvider.java:243) 


>>> 

>>> 

>>> at 
com.ibm.ws.jpa.management.JPAPUnitInfo.createEMFactory(JPAPUnitInfo.java
:1498) 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPAPUnitInfo.createEntityManagerFactory(JPAPUn
itInfo.java:1332) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPAPxmlInfo.extractPersistenceUnits(JPAPxmlInf
o.java:393) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPAScopeInfo.processPersistenceUnit(JPAScopeIn
fo.java:140) 


>>> 

>>> 

>>> at 
com.ibm.ws.jpa.management.JPAApplInfo.processModulePUs(JPAApplInfo.java:
169) 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPAComponentImpl.startingDeployedModule(JPACom
ponentImpl.java:895) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPAComponentImpl.stateChanged(JPAComponentImpl
.java:748) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.ApplicationMgrImpl.stateChanged(Application
MgrImpl.java:1075) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectE
vent(DeployedApplicationImpl.java:1302) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.DeployedModuleImpl.setState(DeployedModuleI
mpl.java:221) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl
.java:607) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedAppli
cationImpl.java:944) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(Applica
tionMgrImpl.java:726) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl
.java:2048) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.start(CompositionUni
tMgrImpl.java:441) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.CompositionUnitImpl.start(CompositionUnitIm
pl.java:123) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.start(CompositionUni
tMgrImpl.java:384) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.access$300(Compositi
onUnitMgrImpl.java:112) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl$CUInitializer.run(Co
mpositionUnitMgrImpl.java:951) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.wsspi.runtime.component.WsComponentImpl$_AsynchInitializer.run(W
sComponentImpl.java:349) 


>>> 

>>> 

>>> at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604) 

>>> 

>>> Then: 

>>> 

>>> [11/2/11 16:39:19:456 UTC] 00000000 JMXConnectors I ADMC0058I: The
JMX 
JSR160RMI 

>>> connector is available at port 2005 

>>> 

>>> [11/2/11 16:39:19:564 UTC] 00000022 FfdcProvider W 

>>> com.ibm.ws.ffdc.impl.FfdcProvider logIncident FFDC1003I: FFDC
Incident 
emitted 

>>> on 

>>> 
/rndvm/java/profiles/AppSrvRNDVM/logs/ffdc/server1_6d766d76_11.11.02_16.
39.19.3755386114168158446905.txt 


>>> 

>>> com.ibm.wsspi.injectionengine.InjectionBinding.getInjectionObject
408 

>>> 

>>> [11/2/11 16:39:19:612 UTC] 00000022 InjectionBind E CWNEN0030E: The 

>>> com.ibm.ws.util.JPAJndiLookupObjectFactory@22882288 
<mailto:com.ibm.ws.util.JPAJndiLookupObjectFactory@22882288>
<mailto:com.ibm.ws.util.JPAJndiLookupObjectFactory@22882288>  factory 
encountered a 

>>> problem getting the object instance Reference Class Name: 

>>> javax.persistence.EntityManager 

>>> 

>>> Type: JPAJndiLookupInfo 

>>> 

>>> Content: PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA, 

>>> 
Bedrock-EAR#Bedrock.server.services.local.jar#FotDAOEJB#biz.wss.server.s
ervices.local.fx.pricing.fotinfo.FotDAOEJB/em, 


>>> 

>>> isFactory=false, isSFSB=false, PersistenceContextType=Transaction, 
properties=[] 

>>> 

>>> binding object. 

>>> 

>>> [11/2/11 16:39:19:671 UTC] 00000022 DMAdapter I 
com.ibm.ws.ffdc.impl.DMAdapter 

>>> getAnalysisEngine FFDC1009I: Analysis Engine using data base: 

>>>
/rndvm/java/profiles/AppSrvRNDVM/properties/logbr/ffdc/adv/ffdcdb.xml 

>>> 

>>> [11/2/11 16:39:20:684 UTC] 00000000 WsServerImpl A WSVR0001I: Server
server1 

>>> open for e-business 

>>> 

>>> [11/2/11 16:39:20:381 UTC] 00000022 FfdcProvider W 

>>> com.ibm.ws.ffdc.impl.FfdcProvider logIncident FFDC1003I: FFDC
Incident 
emitted 

>>> on 

>>> 
/rndvm/java/profiles/AppSrvRNDVM/logs/ffdc/server1_6d766d76_11.11.02_16.
39.19.6315144406007327184821.txt 


>>> 

>>> com.ibm.ejs.container.StatelessBeanO.<init> 282 

>>> 

>>> [11/2/11 16:39:21:295 UTC] 00000024 InjectionBind E CWNEN0030E: The 

>>> com.ibm.ws.util.JPAJndiLookupObjectFactory@37ce37ce 
<mailto:com.ibm.ws.util.JPAJndiLookupObjectFactory@37ce37ce>
<mailto:com.ibm.ws.util.JPAJndiLookupObjectFactory@37ce37ce>  factory 
encountered a 

>>> problem getting the object instance Reference Class Name: 

>>> javax.persistence.EntityManager 

>>> 

>>> Type: JPAJndiLookupInfo 

>>> 

>>> Content: PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA, 

>>> 
Bedrock-EAR#Bedrock.server.services.local.jar#ParameterDaoEjb#biz.wss.se
rver.services.local.dao.readers.wss.ParameterDaoEjb/em, 


>>> 

>>> isFactory=false, isSFSB=false, PersistenceContextType=Transaction, 
properties=[] 

>>> 

>>> binding object. 

>>> 

>>> [11/2/11 16:39:22:593 UTC] 00000024 FfdcProvider W 

>>> com.ibm.ws.ffdc.impl.FfdcProvider logIncident FFDC1003I: FFDC
Incident 
emitted 

>>> on 

>>> 
/rndvm/java/profiles/AppSrvRNDVM/logs/ffdc/server1_54d254d2_11.11.02_16.
39.21.2996421930134207096469.txt 


>>> 

>>> com.ibm.ejs.container.EJSHome.createBeanO 1023 

>>> 

>>> [11/2/11 16:39:21:684 UTC] 00000025 InjectionBind E CWNEN0030E: The 

>>> com.ibm.ws.util.JPAJndiLookupObjectFactory@28f028f0 
<mailto:com.ibm.ws.util.JPAJndiLookupObjectFactory@28f028f0>
<mailto:com.ibm.ws.util.JPAJndiLookupObjectFactory@28f028f0>  factory 
encountered a 

>>> problem getting the object instance Reference Class Name: 

>>> javax.persistence.EntityManager 

>>> 

>>> Type: JPAJndiLookupInfo 

>>> 

>>> Content: PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA, 

>>> 
Bedrock-EAR#Bedrock.server.services.local.jar#TimerSchedulerEJB#biz.wss.
server.services.local.scheduler.TimerSchedulerEJB/entityManager, 


>>> 

>>> isFactory=false, isSFSB=false, PersistenceContextType=Transaction, 
properties=[] 

>>> 

>>> binding object. 

>>> 

>>> [11/2/11 16:39:21:686 UTC] 00000022 BusinessExcep E CNTR0019E: EJB
threw an 

>>> unexpected (non-declared) exception during invocation of method
"getConfig". 

>>> Exception data: javax.ejb.EJBException: Injection failure; nested 
exception is: 

>>> java.lang.IllegalStateException: EntityManagerFactory has not been
created 
for 

>>> PU : PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA 

>>> 

>>> java.lang.IllegalStateException: EntityManagerFactory has not been
created 
for 

>>> PU : PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerFactory(JPAPUnitI
nfo.java:1369) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerPool(JPAPUnitInfo
.java:1577) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPATxEntityManager.<init>(JPATxEntityManager.j
ava:156) 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPAComponentImpl.getEntityManager(JPAComponent
Impl.java:1053) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.util.JPAJndiLookupObjectFactory.getObjectInstance(JPAJndiLook
upObjectFactory.java:151) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.wsspi.injectionengine.InjectionBinding.getInjectionObject(Inject
ionBinding.java:659) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.wsspi.injectionengine.InjectionTargetField.inject(InjectionTarge
tField.java:245) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.injectionengine.InjectionEngineImpl.inject(InjectionEngineImp
l.java:620) 


>>> 

>>> 

>>> at
com.ibm.ejs.container.StatelessBeanO.initialize(StatelessBeanO.java:287)


>>> 

>>> at 

>>> 
com.ibm.ejs.container.CMStatelessBeanOFactory.create(CMStatelessBeanOFac
tory.java:45) 


>>> 

>>> 

>>> at com.ibm.ejs.container.EJSHome.createBeanO(EJSHome.java:1031) 

>>> 

>>> at com.ibm.ejs.container.EJSHome.createBeanO(EJSHome.java:1141) 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.activator.UncachedActivationStrategy.atActivate(Un
cachedActivationStrategy.java:84) 


>>> 

>>> 

>>> at
com.ibm.ejs.container.activator.Activator.activateBean(Activator.java:59
9)

>>> 

>>> at 
com.ibm.ejs.container.EJSContainer.preInvokeActivate(EJSContainer.java:3
964) 

>>> 

>>> at
com.ibm.ejs.container.EJSContainer.EjbPreInvoke(EJSContainer.java:3349) 

>>> 

>>> at 

>>> 
biz.wss.interfaces.services.fx.pricing.fotinfo.EJSLocal0SLFotDAOEJB_73ee
ba3d.getConfig(EJSLocal0SLFotDAOEJB_73eeba3d.java) 


>>> 

>>> 

>>> at 

>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotRepository.initialis
e(FotRepository.java:72) 


>>> 

>>> 

>>> at 

>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.start(Fo
tInitialiser.java:80) 


>>> 

>>> 

>>> at 

>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.onMessag
e(FotInitialiser.java:65) 


>>> 

>>> 

>>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 

>>> 

>>> at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:60) 

>>> 

>>> at 

>>> 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:37) 


>>> 

>>> 

>>> at java.lang.reflect.Method.invoke(Method.java:611) 

>>> 

>>> at
com.ibm.ejs.container.EJSContainer.invokeProceed(EJSContainer.java:5874)


>>> 

>>> at 

>>> 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(Invocat
ionContextImpl.java:586) 


>>> 

>>> 

>>> at 

>>> 
biz.wss.server.services.logging.analysis.MethodTimerInterceptor.intercep
t(MethodTimerInterceptor.java:161) 


>>> 

>>> 

>>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 

>>> 

>>> at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:60) 

>>> 

>>> at 

>>> 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:37) 


>>> 

>>> 

>>> at java.lang.reflect.Method.invoke(Method.java:611) 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.interceptors.InterceptorProxy.invokeInterceptor(In
terceptorProxy.java:227) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(Invocat
ionContextImpl.java:566) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.interceptors.InvocationContextImpl.doAroundInvoke(
InvocationContextImpl.java:217) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.MessageEndpointHandler.invokeMdbMethod(MessageEndp
ointHandler.java:1080) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.MessageEndpointHandler.invoke(MessageEndpointHandl
er.java:778) 


>>> 

>>> 

>>> at $Proxy42.onMessage(Unknown Source) 

>>> 

>>> at 

>>> 
com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl.invokeEndpoint(J
msJcaEndpointInvokerImpl.java:233) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.sib.ra.inbound.impl.SibRaDispatcher.dispatch(SibRaDispatcher.
java:900) 

>>> 

>>> at 

>>> 
com.ibm.ws.sib.ra.inbound.impl.SibRaSingleProcessListener$SibRaWork.run(
SibRaSingleProcessListener.java:552) 


>>> 

>>> 

>>> at com.ibm.ejs.j2c.work.WorkProxy.run(WorkProxy.java:399) 

>>> 

>>> at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604) 

>>> 

>>> javax.ejb.EJBException: Injection failure; nested exception is: 

>>> java.lang.IllegalStateException: EntityManagerFactory has not been
created 
for 

>>> PU : PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA 

>>> 

>>> Caused by: java.lang.IllegalStateException: EntityManagerFactory has
not been 

>>> created for PU :
PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerFactory(JPAPUnitI
nfo.java:1369) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerPool(JPAPUnitInfo
.java:1577) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPATxEntityManager.<init>(JPATxEntityManager.j
ava:156) 

>>> 

>>> at 

>>> 
com.ibm.ws.jpa.management.JPAComponentImpl.getEntityManager(JPAComponent
Impl.java:1053) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.util.JPAJndiLookupObjectFactory.getObjectInstance(JPAJndiLook
upObjectFactory.java:151) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.wsspi.injectionengine.InjectionBinding.getInjectionObject(Inject
ionBinding.java:659) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.wsspi.injectionengine.InjectionTargetField.inject(InjectionTarge
tField.java:245) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.injectionengine.InjectionEngineImpl.inject(InjectionEngineImp
l.java:620) 


>>> 

>>> 

>>> at
com.ibm.ejs.container.StatelessBeanO.initialize(StatelessBeanO.java:287)


>>> 

>>> at 

>>> 
com.ibm.ejs.container.CMStatelessBeanOFactory.create(CMStatelessBeanOFac
tory.java:45) 


>>> 

>>> 

>>> at com.ibm.ejs.container.EJSHome.createBeanO(EJSHome.java:1031) 

>>> 

>>> at com.ibm.ejs.container.EJSHome.createBeanO(EJSHome.java:1141) 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.activator.UncachedActivationStrategy.atActivate(Un
cachedActivationStrategy.java:84) 


>>> 

>>> 

>>> at
com.ibm.ejs.container.activator.Activator.activateBean(Activator.java:59
9)

>>> 

>>> at 
com.ibm.ejs.container.EJSContainer.preInvokeActivate(EJSContainer.java:3
964) 

>>> 

>>> at
com.ibm.ejs.container.EJSContainer.EjbPreInvoke(EJSContainer.java:3349) 

>>> 

>>> at 

>>> 
biz.wss.interfaces.services.fx.pricing.fotinfo.EJSLocal0SLFotDAOEJB_73ee
ba3d.getConfig(EJSLocal0SLFotDAOEJB_73eeba3d.java) 


>>> 

>>> 

>>> at 

>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotRepository.initialis
e(FotRepository.java:72) 


>>> 

>>> 

>>> at 

>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.start(Fo
tInitialiser.java:80) 


>>> 

>>> 

>>> at 

>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.onMessag
e(FotInitialiser.java:65) 


>>> 

>>> 

>>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 

>>> 

>>> at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:60) 

>>> 

>>> at 

>>> 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:37) 


>>> 

>>> 

>>> at java.lang.reflect.Method.invoke(Method.java:611) 

>>> 

>>> at
com.ibm.ejs.container.EJSContainer.invokeProceed(EJSContainer.java:5874)


>>> 

>>> at 

>>> 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(Invocat
ionContextImpl.java:586) 


>>> 

>>> 

>>> at 

>>> 
biz.wss.server.services.logging.analysis.MethodTimerInterceptor.intercep
t(MethodTimerInterceptor.java:161) 


>>> 

>>> 

>>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 

>>> 

>>> at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:60) 

>>> 

>>> at 

>>> 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:37) 


>>> 

>>> 

>>> at java.lang.reflect.Method.invoke(Method.java:611) 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.interceptors.InterceptorProxy.invokeInterceptor(In
terceptorProxy.java:227) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(Invocat
ionContextImpl.java:566) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.interceptors.InvocationContextImpl.doAroundInvoke(
InvocationContextImpl.java:217) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.MessageEndpointHandler.invokeMdbMethod(MessageEndp
ointHandler.java:1080) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ejs.container.MessageEndpointHandler.invoke(MessageEndpointHandl
er.java:778) 


>>> 

>>> 

>>> at $Proxy42.onMessage(Unknown Source) 

>>> 

>>> at 

>>> 
com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl.invokeEndpoint(J
msJcaEndpointInvokerImpl.java:233) 


>>> 

>>> 

>>> at 

>>> 
com.ibm.ws.sib.ra.inbound.impl.SibRaDispatcher.dispatch(SibRaDispatcher.
java:900) 

>>> 

>>> at 

>>> 
com.ibm.ws.sib.ra.inbound.impl.SibRaSingleProcessListener$SibRaWork.run(
SibRaSingleProcessListener.java:552) 


>>> 

>>> 

>>> at com.ibm.ejs.j2c.work.WorkProxy.run(WorkProxy.java:399) 

>>> 

>>> at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604) 

>>> 

>>> On another attempt it's again a different query that it complains
about, it 
just 

>>> still happens earlier on in the server startup cycle: 

>>> 

>>> [11/2/11 16:51:01:230 UTC] 00000010 SystemOut O [EL Severe]:
2011-11-02 

>>> 16:51:01.211--ServerSession(422517039)--Local Exception Stack: 

>>> 

>>> Exception [EclipseLink-8030] (Eclipse Persistence Services - 

>>> 2.3.1.v20111018-r10243):
org.eclipse.persistence.exceptions.JPQLException 

>>> 

>>> Exception Description: Error compiling the query 

>>> [InstrumentClassLimitAudit.checkPrevAudits: SELECT NEW 

>>> biz.wss.interfaces.entities.foureyes.auditmaker.AuditStateUser( 

>>> a.auditFields.state, a.auditFields.auditUser) FROM 
InstrumentClassLimitAudit a 

>>> WHERE a.auditId.id = :id ORDER BY a.auditId.auditDateTime DESC],
line 1, 
column 

>>> 77: unknown state or association field [auditFields] of class 

>>> 
[biz.wss.interfaces.entities.credit.instrumentclass.foureyes.InstrumentC
lassLimitAudit]. 


>>> 

>>> 

>>> *WebSphere_7 in persistence.xml* 

>>> 

>>> As suggested in another thread of the emails by Michael O'Brien, I
tried 

>>> WebSphere_7 (I have a feeling I've tried this before also) but get
the same 

>>> thing: 

>>> 

>>> [11/2/11 16:57:57:507 UTC] 0000000e SystemOut O [EL Severe]:
2011-11-02 

>>> 16:57:57.481--ServerSession(141166698)--Local Exception Stack: 

>>> 

>>> Exception [EclipseLink-8030] (Eclipse Persistence Services - 

>>> 2.3.1.v20111018-r10243):
org.eclipse.persistence.exceptions.JPQLException 

>>> 

>>> Exception Description: Error compiling the query 

>>> [RuleSetICQAAudit.checkPrevAuditsByNaturalKey: SELECT NEW 

>>> 
biz.wss.interfaces.entities.foureyes.auditmaker.AuditStateUser(a.auditFi
elds.currentState, 


>>> 

>>> a.auditFields.auditUser) FROM RuleSetICQAAudit a WHERE
a.settleCentreId = 

>>> :settleCentreId AND ((a.boProductCategoryId = :boProductCategoryId
AND NOT 

>>> :boProductCategoryId IS NULL) OR (:boProductCategoryId IS NULL AND 

>>> a.boProductCategoryId IS NULL)) AND ((a.boProductId = :boProductId
AND NOT 

>>> :boProductId IS NULL) OR (:boProductId IS NULL AND a.boProductId IS
NULL)) 
AND 

>>> ((a.ccyId = :ccyId AND LENGTH(:ccyId) > 0) OR (LENGTH(:ccyId) = 0
AND 
a.ccyId IS 

>>> NULL)) ORDER BY a.auditFields.auditDateTime DESC], line 1, column
76: unknown 

>>> state or association field [auditFields] of class 

>>>
[biz.wss.interfaces.entities.bo.rules.icqa.foureyes.RuleSetICQAAudit]. 

>>> 

>>> at 

>>> 
org.eclipse.persistence.exceptions.JPQLException.unknownAttribute(JPQLEx
ception.java:457) 


>>> 

>>> 

>>> at 
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.ja
va:87) 

>>> 

>>> at 
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.ja
va:72) 

>>> 

>>> Kind Regards 

>>> 

>>> Nathan 

>>> 

>>> -----Original Message----- 

>>> From: eclipselink-users-bounces@xxxxxxxxxxx 

>>> [mailto:eclipselink-users-bounces@xxxxxxxxxxx] On Behalf Of Tom Ware


>>> Sent: 02 November 2011 14:48 

>>> To: eclipselink-users@xxxxxxxxxxx 

>>> Subject: Re: [eclipselink-users] Bug 362564 - WebSphere specific 

>>> randomisedorg.eclipse.persistence.exceptions.JPQLException error on
startup 

>>> 

>>> I am surprised that error message does not have any 

>>> EclipseLink-specific-information in it. Is there any other error
message? 
Do you 

>>> see and EclipseLink logging in any of the logs? (if not, try 

>>> 

>>> eclipselink.logging.level=FINEST) 

>>> 

>>> Does turning off weaving help? (eclipselink.weaving=false) 

>>> 

>>> -Tom 

>>> 

>>> On 02/11/2011 10:39 AM, Nathan Drew wrote: 

>>> 

>>> > I think I tried this previously while researching the issue and
this 

>>> 

>>> > is the results (from trying it just now); the EntityManager
doesn't 

>>> 

>>> > get created or injected - and everything else after that fails. 

>>> 

>>> > 

>>> 

>>> > 2011-11-02 14:34:53,332 ERROR 

>>> 

>>> > biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser 

>>> 

>>> > [SIBJMSRAThreadPool : 1] (FotInitialiser.java:82) - 

>>> 

>>> > javax.ejb.EJBTransactionRolledbackException: nested exception is: 

>>> 

>>> > javax.ejb.EJBException: Injection failure; nested exception is: 

>>> 

>>> > java.lang.IllegalStateException: EntityManagerFactory has not been


>>> 

>>> > created for PU : 

>>> 

>>> > PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA 

>>> 

>>> > 

>>> 

>>> > 2011-11-02 14:34:52,573 ERROR 

>>> 

>>> > biz.wss.server.services.local.scheduler.TimerSchedulerInitialiser 

>>> 

>>> > [SIBJMSRAThreadPool : 4] (TimerSchedulerInitialiser.java:179) - 

>>> 

>>> > TimerSchedulerInitializer: initialization failed 

>>> 

>>> > 

>>> 

>>> > javax.ejb.EJBTransactionRolledbackException: nested exception is: 

>>> 

>>> > javax.ejb.EJBException: Injection failure; nested exception is: 

>>> 

>>> > java.lang.IllegalStateException: EntityManagerFactory has not been


>>> 

>>> > created for PU : 

>>> 

>>> > PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA 

>>> 

>>> > 

>>> 

>>> > *javax.ejb.EJBException: Injection failure; nested exception is: 

>>> 

>>> > java.lang.IllegalStateException: EntityManagerFactory has not been


>>> 

>>> > created for PU : 

>>> 

>>> > PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA* 

>>> 

>>> > 

>>> 

>>> > *java.lang.IllegalStateException: EntityManagerFactory has not
been 

>>> 

>>> > created for PU : 

>>> 

>>> > PuId=Bedrock-EAR#Bedrock.server.services.local.jar#WSSJPA* 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerFactory(JPAPUni 

>>> 

>>> > tInfo.java:1369) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerPool(JPAPUnitIn 

>>> 

>>> > fo.java:1577) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ws.jpa.management.JPATxEntityManager.<init>(JPATxEntityManager

>>> 

>>> > .java:156) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ws.jpa.management.JPAComponentImpl.getEntityManager(JPACompone 

>>> 

>>> > ntImpl.java:1053) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ws.util.JPAJndiLookupObjectFactory.getObjectInstance(JPAJndiLo 

>>> 

>>> > okupObjectFactory.java:151) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.wsspi.injectionengine.InjectionBinding.getInjectionObject(Inje 

>>> 

>>> > ctionBinding.java:659) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.wsspi.injectionengine.InjectionTargetField.inject(InjectionTar 

>>> 

>>> > getField.java:245) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ws.injectionengine.InjectionEngineImpl.inject(InjectionEngineI 

>>> 

>>> > mpl.java:620) 

>>> 

>>> > ~[na:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.StatelessBeanO.initialize(StatelessBeanO.java:28 

>>> 

>>> > 7) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.CMStatelessBeanOFactory.create(CMStatelessBeanOF 

>>> 

>>> > actory.java:45) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at com.ibm.ejs.container.EJSHome.createBeanO(EJSHome.java:1031) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at com.ibm.ejs.container.EJSHome.createBeanO(EJSHome.java:1141) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.activator.UncachedActivationStrategy.atActivate( 

>>> 

>>> > UncachedActivationStrategy.java:84) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.activator.Activator.activateBean(Activator.java: 

>>> 

>>> > 599) 

>>> 

>>> > ~[com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.EJSContainer.preInvokeActivate(EJSContainer.java 

>>> 

>>> > :3964) 

>>> 

>>> > [com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.EJSContainer.EjbPreInvoke(EJSContainer.java:3349 

>>> 

>>> > ) 

>>> 

>>> > [com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
biz.wss.interfaces.services.scheduler.EJSLocal0SLTimerSchedulerEJB_299 

>>> 

>>> > ec695.refresh(EJSLocal0SLTimerSchedulerEJB_299ec695.java) 

>>> 

>>> > ~[na:DEV-r314855] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
biz.wss.server.services.local.scheduler.TimerSchedulerInitialiser.star 

>>> 

>>> > t(TimerSchedulerInitialiser.java:123) 

>>> 

>>> > [Bedrock.server.services.local.jar:DEV-r314855] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
biz.wss.server.services.local.scheduler.TimerSchedulerInitialiser.onMe 

>>> 

>>> > ssage(TimerSchedulerInitialiser.java:94) 

>>> 

>>> > [Bedrock.server.services.local.jar:DEV-r314855] 

>>> 

>>> > 

>>> 

>>> > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 

>>> 

>>> > ~[na:1.6.0] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j 

>>> 

>>> > ava:60) 

>>> 

>>> > ~[na:1.6.0] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccess 

>>> 

>>> > orImpl.java:37) 

>>> 

>>> > ~[na:1.6.0] 

>>> 

>>> > 

>>> 

>>> > at java.lang.reflect.Method.invoke(Method.java:611) ~[na:1.6.0] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.EJSContainer.invokeProceed(EJSContainer.java:587 

>>> 

>>> > 4) 

>>> 

>>> > [com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(Invoc 

>>> 

>>> > ationContextImpl.java:586) 

>>> 

>>> > [com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
biz.wss.server.services.logging.analysis.MethodTimerInterceptor.interc 

>>> 

>>> > ept(MethodTimerInterceptor.java:161) 

>>> 

>>> > [Bedrock.server.services.exception.jar:DEV-r314855] 

>>> 

>>> > 

>>> 

>>> > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 

>>> 

>>> > ~[na:1.6.0] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j 

>>> 

>>> > ava:60) 

>>> 

>>> > ~[na:1.6.0] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccess 

>>> 

>>> > orImpl.java:37) 

>>> 

>>> > ~[na:1.6.0] 

>>> 

>>> > 

>>> 

>>> > at java.lang.reflect.Method.invoke(Method.java:611) ~[na:1.6.0] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.interceptors.InterceptorProxy.invokeInterceptor( 

>>> 

>>> > InterceptorProxy.java:227) 

>>> 

>>> > [com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(Invoc 

>>> 

>>> > ationContextImpl.java:566) 

>>> 

>>> > [com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.interceptors.InvocationContextImpl.doAroundInvok 

>>> 

>>> > e(InvocationContextImpl.java:217) 

>>> 

>>> > [com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.MessageEndpointHandler.invokeMdbMethod(MessageEn 

>>> 

>>> > dpointHandler.java:1080) 

>>> 

>>> > [com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ejs.container.MessageEndpointHandler.invoke(MessageEndpointHan 

>>> 

>>> > dler.java:778) 

>>> 

>>> > [com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at $Proxy42.onMessage(Unknown Source) [na:na] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl.invokeEndpoint 

>>> 

>>> > (JmsJcaEndpointInvokerImpl.java:233) 

>>> 

>>> > [com.ibm.ws.sib.server.jar:1.0.0] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ws.sib.ra.inbound.impl.SibRaDispatcher.dispatch(SibRaDispatche 

>>> 

>>> > r.java:900) [com.ibm.ws.sib.server.jar:1.0.0] 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ws.sib.ra.inbound.impl.SibRaSingleProcessListener$SibRaWork.ru 

>>> 

>>> > n(SibRaSingleProcessListener.java:552) 

>>> 

>>> > [com.ibm.ws.sib.server.jar:1.0.0] 

>>> 

>>> > 

>>> 

>>> > at com.ibm.ejs.j2c.work.WorkProxy.run(WorkProxy.java:399) 

>>> 

>>> > [com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604) 

>>> 

>>> > [com.ibm.ws.runtime.jar:na] 

>>> 

>>> > 

>>> 

>>> > Kind Regards 

>>> 

>>> > 

>>> 

>>> > Nathan 

>>> 

>>> > 

>>> 

>>> > *From:*eclipselink-users-bounces@xxxxxxxxxxx 

>>> 

>>> > [mailto:eclipselink-users-bounces@xxxxxxxxxxx] 
<mailto:[mailto:eclipselink-users-bounces@xxxxxxxxxxx]>
<mailto:[mailto:eclipselink-users-bounces@xxxxxxxxxxx]>  

>>> <mailto:[mailto:eclipselink-users-bounces@xxxxxxxxxxx]>
<mailto:[mailto:eclipselink-users-bounces@xxxxxxxxxxx]>  *On Behalf Of
*Tim 

>>> 

>>> > Martin 

>>> 

>>> > *Sent:* 02 November 2011 14:21 

>>> 

>>> > *To:* EclipseLink User Discussions 

>>> 

>>> > *Subject:* Re: [eclipselink-users] Bug 362564 - WebSphere specific


>>> 

>>> > randomisedorg.eclipse.persistence.exceptions.JPQLException error
on 

>>> 

>>> > startup 

>>> 

>>> > 

>>> 

>>> > Nathan will be trying it shortly... 

>>> 

>>> > 

>>> 

>>> > it's all container managed - injected with 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > @PersistenceContext(unitName = "WSSJPA") protected EntityManager
em; 

>>> 

>>> > 

>>> 

>>> > On 02/11/2011 14:15, Tom Ware wrote: 

>>> 

>>> > 

>>> 

>>> > What about the other questions below? What about the 

>>> 

>>> > eclipselink.deploy-on-startup property? 

>>> 

>>> > 

>>> 

>>> > On 02/11/2011 10:01 AM, Tim Martin wrote: 

>>> 

>>> > 

>>> 

>>> > we have a servlet context listener that sends out some msgs on a
few 

>>> 

>>> > jms queues which are received by some mdb's to initialise caches
and 

>>> 

>>> > bits of static data, the mdbs can and sometimes do run
concurrently.... 

>>> 

>>> > 

>>> 

>>> > On 02/11/2011 13:13, Tom Ware wrote: 

>>> 

>>> > 

>>> 

>>> > How is your startup multi-threaded? 

>>> 

>>> > 

>>> 

>>> > Is you EntityManager container managed or application managed? Is
it 

>>> 

>>> > injected, or do you obtain it some other way? 

>>> 

>>> > 

>>> 

>>> > One thing you could try is to set the following persistence unit
property: 

>>> 

>>> > 

>>> 

>>> > eclipselink.deploy-on-startup=true 

>>> 

>>> > 

>>> 

>>> > That property should ensure that all the initialization happens as


>>> 

>>> > soon as the first entity manager factory is instantiated. 

>>> 

>>> > 

>>> 

>>> > -Tom 

>>> 

>>> > 

>>> 

>>> > On 02/11/2011 7:21 AM, Tim Martin wrote: 

>>> 

>>> > 

>>> 

>>> > these errors all occur during application start up - ie when all
the 

>>> 

>>> > named queries are validated/ compiled when the first named query
is 

>>> 

>>> > created, we have several queries in different threads that would
run 

>>> 

>>> > during application startup at about the same time 

>>> 

>>> > 

>>> 

>>> > could it be some race condition where 2or more threads are trying 

>>> 

>>> > dothe same thing that should only happen once ??? 

>>> 

>>> > 

>>> 

>>> > eg in the stack trace below it goes into /thru some websphere
specific 

>>> 

>>> > code to get the entity manager / create named query ? 

>>> 

>>> > 

>>> 

>>> > [11/1/11 12:16:36:933 UTC] 00000026 SystemOut O [EL Severe]: 

>>> 

>>> > 2011-11-01 12:16:36.913--ServerSession(217124081)--Local Exception


>>> 

>>> > Stack: Exception [EclipseLink-8030] (Eclipse Persistence Services
- 

>>> 2.2.1.v20110721-r9766): 

>>> 

>>> > org.eclipse.persistence.exceptions.JPQLException Exception 

>>> 

>>> > Description: Error compiling the query 

>>> 

>>> > [DataElementGroupAudit.checkPrevAuditsByNaturalKey: SELECT NEW 

>>> 

>>> >
biz.wss.interfaces.entities.foureyes.auditmaker.AuditStateUser(a.audit 

>>> 

>>> > Fields.currentState, 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > a.auditFields.auditUser) FROM DataElementGroupAudit a WHERE a.code
= 

>>> 

>>> > :code ORDER BY a.auditFields.auditDateTime DESC], line 1, column
76: 

>>> 

>>> > unknown state or association field [auditFields] of class 

>>> 

>>> > 

>>> 
[biz.wss.interfaces.entities.bo.dataelement.group.foureyes.DataElementGr
oupAudit]. 


>>> 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.exceptions.JPQLException.unknownAttribute(JPQL 

>>> 

>>> > Exception.java:457) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode. 

>>> 

>>> > java:88) at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode. 

>>> 

>>> > java:73) 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.parsing.ConstructorNode.validate( 

>>> 

>>> > ConstructorNode.java:73) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.parsing.SelectNode.validate(Selec 

>>> 

>>> > tNode.java:293) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseT 

>>> 

>>> > ree.java:201) 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseT 

>>> 

>>> > ree.java:183) 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseT 

>>> 

>>> > ree.java:173) 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.parsing.JPQLParseTree.populateRea 

>>> 

>>> > dQueryInternal(JPQLParseTree.java:110) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.parsing.JPQLParseTree.populateQue 

>>> 

>>> > ry(JPQLParseTree.java:84) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.EJBQueryImpl.buildEJBQLDatabaseQu 

>>> 

>>> > ery(EJBQueryImpl.java:216) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.JPAQuery.processJPQLQuery(JPAQuer 

>>> 

>>> > y.java:106) at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.JPAQuery.prepare(JPAQuery.java:90 

>>> 

>>> > ) 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.queries.DatabaseQuery.checkPrepare(DatabaseQue 

>>> 

>>> > ry.java:579) 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.queries.DatabaseQuery.checkPrepare(DatabaseQue 

>>> 

>>> > ry.java:539) 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.sessions.AbstractSession.processJPAQu 

>>> 

>>> > eries(AbstractSession.java:2173) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.initiali 

>>> 

>>> > zeDescriptors(DatabaseSessionImpl.java:414) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.postConn 

>>> 

>>> > ectDatasource(DatabaseSessionImpl.java:680) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.loginAnd 

>>> 

>>> > DetectDatasource(DatabaseSessionImpl.java:628) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.EntityManagerFactoryProvider.logi 

>>> 

>>> > n(EntityManagerFactoryProvider.java:233) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.deploy(Ent 

>>> 

>>> > ityManagerSetupImpl.java:394) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.getServe 

>>> 

>>> > rSession(EntityManagerFactoryImpl.java:185) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.createEn 

>>> 

>>> > tityManagerImpl(EntityManagerFactoryImpl.java:242) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.createEn 

>>> 

>>> > tityManager(EntityManagerFactoryImpl.java:237) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > _/*at 

>>> 

>>> >
com.ibm.ws.jpa.management.JPAEMPool.getEntityManager(JPAEMPool.java:14 

>>> 

>>> > 0) 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ws.jpa.management.JPATxEntityManager.getEMInvocationInfo(JPATx 

>>> 

>>> > EntityManager.java:235) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > at 

>>> 

>>> >
com.ibm.ws.jpa.management.JPAEntityManager.createNamedQuery(JPAEntityM 

>>> 

>>> > anager.java:302) 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > */_ 

>>> 

>>> > at biz.wss.jpa.DbType.createNamedQuery(DbType.java:62) 

>>> 

>>> > 

>>> 

>>> > On 02/11/2011 11:05, Nathan Drew wrote: 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > Hi Tom, 

>>> 

>>> > 

>>> 

>>> > Glad to know it's not something glaringly obvious we're missing
(at 

>>> 

>>> > least for now anyway!) - it is indeed a confusing issue since it
works 

>>> 

>>> > on two out of the three JEE server platforms we develop for
without issue. 

>>> 

>>> > 

>>> 

>>> > In answer to your questions: 

>>> 

>>> > 

>>> 

>>> > *Is the packaging the same on all the different servers you are
running on? 

>>> 

>>> > 

>>> 

>>> > oIt should be, yes, our ANT scripts only do JEE platform specific 

>>> 

>>> > things such as use specific libraries and perhaps include specific
WAR 

>>> 

>>> > files according to the type 

>>> 

>>> > 

>>> 

>>> > *How is your persistence unit packaged and deployed? 

>>> 

>>> > 

>>> 

>>> > oWe have a single persistence.xml configured inside one of our Jar
files. 

>>> 

>>> > 

>>> 

>>> > oThe mapping file is stored within the same JAR 

>>> 

>>> > 

>>> 

>>> > *Are all the classes in the same jar? 

>>> 

>>> > 

>>> 

>>> > oNo, the persistence.xml references 4 <jar-files> 

>>> 

>>> > 

>>> 

>>> > *Are the classes dependent on classes from other jars? 

>>> 

>>> > 

>>> 

>>> > oThe ones that it is complaining about exist within one of the 

>>> 

>>> > specified <jar-files> and don't 

>>> 

>>> > 

>>> 

>>> > *Is there a chance that some of the dependencies are not properly
loaded? 

>>> 

>>> > 

>>> 

>>> > oI think TopLink Essentials would have had a similar problem if
this 

>>> 

>>> > was the case. 

>>> 

>>> > 

>>> 

>>> > *Is there anything in common between queries that do not seem to
work? 

>>> 

>>> > 

>>> 

>>> > oOne thing I do notice about the queries it complains about is
that 

>>> 

>>> > they all seem to be of the type "SELECT NEW ... FROM ..." not sure
how relevant 

>>> that is. 

>>> 

>>> > 

>>> 

>>> > *(inherited fields?) 

>>> 

>>> > 

>>> 

>>> > oThe entity classes that are complained about do extend other
classes 

>>> 

>>> > that are defined as @MappedSuperclass, which in turn extend an 

>>> 

>>> > abstract class (and those aren't annotated as @MappedSuperclass) 

>>> 

>>> > 

>>> 

>>> > oIt always seems to reference @Embedded fields 

>>> 

>>> > 

>>> 

>>> > *Is there a chance that queries of the same name are defined in 

>>> 

>>> > multiple places? 

>>> 

>>> > 

>>> 

>>> > oI don't believe so - we've recently added a JUnit test to check
for 

>>> 

>>> > this, plus I manually checked via grep and an Excel spread sheet. 

>>> 

>>> > 

>>> 

>>> > I'm not sure if that answers all of your questions, specifically
about 

>>> 

>>> > the packaging so please let me know if you need more detail. 

>>> 

>>> > 

>>> 

>>> > We were operating TopLink Essentials without any problems with 

>>> 

>>> > WebSphere - which is why we think it might be a bug within
EclipseLink 

>>> somehow. 

>>> 

>>> > 

>>> 

>>> > Kind Regards 

>>> 

>>> > 

>>> 

>>> > Nathan 

>>> 

>>> > 

>>> 

>>> > -----Original Message----- 

>>> 

>>> > From: eclipselink-users-bounces@xxxxxxxxxxx 

>>> 

>>> > <mailto:eclipselink-users-bounces@xxxxxxxxxxx>
<mailto:eclipselink-users-bounces@xxxxxxxxxxx>  

>>> 

>>> > [mailto:eclipselink-users-bounces@xxxxxxxxxxx] 
<mailto:[mailto:eclipselink-users-bounces@xxxxxxxxxxx]>
<mailto:[mailto:eclipselink-users-bounces@xxxxxxxxxxx]>  On Behalf Of
Tom Ware 

>>> 

>>> > Sent: 01 November 2011 17:35 

>>> 

>>> > To: eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > Subject: Re: [eclipselink-users] Bug 362564 - WebSphere specific 

>>> 

>>> > randomisedorg.eclipse.persistence.exceptions.JPQLException error
on 

>>> 

>>> > startup 

>>> 

>>> > 

>>> 

>>> > I have to admit that I am as confused about this issue as you
appear to be. 

>>> 

>>> > 

>>> 

>>> > The only theory I can come up with is that there is some issue
with 

>>> 

>>> > all the queries and that the error is different for different 

>>> 

>>> > deployments because they are instantiated parsed into the
EclipseLink 

>>> metadata in a random order. 

>>> 

>>> > 

>>> 

>>> > Since deployment is working on other application servers, this
leads 

>>> 

>>> > me to believe that this is somehow a packaging issue. 

>>> 

>>> > 

>>> 

>>> > Is the packaging the same on all the different servers you are
running on? 

>>> 

>>> > 

>>> 

>>> > How is your persistence unit packaged and deployed? 

>>> 

>>> > 

>>> 

>>> > Are all the classes in the same jar? 

>>> 

>>> > 

>>> 

>>> > Are the classes dependent on classes from other jars? 

>>> 

>>> > 

>>> 

>>> > Is there a chance that some of the dependencies are not properly
loaded? 

>>> 

>>> > 

>>> 

>>> > Is there anything in common between queries that do not seem to
work? 

>>> 

>>> > 

>>> 

>>> > (inherited fields?) 

>>> 

>>> > 

>>> 

>>> > Is there a chance that queries of the same name are defined in
multiple 

>>> places? 

>>> 

>>> > 

>>> 

>>> > -Tom 

>>> 

>>> > 

>>> 

>>> > On 01/11/2011 10:54 AM, Nathan Drew wrote: 

>>> 

>>> > 

>>> 

>>> > > Hi Tom, 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > I've retried with another example stack trace added to the
ticket 

>>> 

>>> > for 

>>> 

>>> > 

>>> 

>>> > > eclipselink version 2.3.1-RC1 (2.3.1.v20111018-r10243) 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > Kind Regards 

>>> 

>>> > 

>>> 

>>> > > Nathan 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > -----Original Message----- 

>>> 

>>> > 

>>> 

>>> > > From: eclipselink-users-bounces@xxxxxxxxxxx 

>>> 

>>> > <mailto:eclipselink-users-bounces@xxxxxxxxxxx>
<mailto:eclipselink-users-bounces@xxxxxxxxxxx>  

>>> 

>>> > 

>>> 

>>> > > [mailto:eclipselink-users-bounces@xxxxxxxxxxx] 

>>> <mailto:[mailto:eclipselink-users-bounces@xxxxxxxxxxx]>
<mailto:[mailto:eclipselink-users-bounces@xxxxxxxxxxx]>  On Behalf Of
Nathan 

>>> 

>>> > 

>>> 

>>> > > Drew 

>>> 

>>> > 

>>> 

>>> > > Sent: 01 November 2011 13:49 

>>> 

>>> > 

>>> 

>>> > > To: EclipseLink User Discussions 

>>> 

>>> > 

>>> 

>>> > > Subject: Re: [eclipselink-users] Bug 362564 - WebSphere specific


>>> 

>>> > 

>>> 

>>> > > randomisedorg.eclipse.persistence.exceptions.JPQLException error
on 

>>> 

>>> > 

>>> 

>>> > > startup 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > Will do - just noticed in the trace that it had the old 2.2.1 

>>> 

>>> > library 

>>> 

>>> > 

>>> 

>>> > > running, will retry and update the ticket and let you know. 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > Kind Regards 

>>> 

>>> > 

>>> 

>>> > > Nathan 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > -----Original Message----- 

>>> 

>>> > 

>>> 

>>> > > From: eclipselink-users-bounces@xxxxxxxxxxx 

>>> 

>>> > <mailto:eclipselink-users-bounces@xxxxxxxxxxx>
<mailto:eclipselink-users-bounces@xxxxxxxxxxx>  

>>> 

>>> > 

>>> 

>>> > > [mailto:eclipselink-users-bounces@xxxxxxxxxxx] 

>>> <mailto:[mailto:eclipselink-users-bounces@xxxxxxxxxxx]>
<mailto:[mailto:eclipselink-users-bounces@xxxxxxxxxxx]>  On Behalf Of
Tom 

>>> 

>>> > Ware 

>>> 

>>> > 

>>> 

>>> > > Sent: 01 November 2011 13:21 

>>> 

>>> > 

>>> 

>>> > > To: eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > 

>>> 

>>> > > Subject: Re: [eclipselink-users] Bug 362564 - WebSphere specific


>>> 

>>> > 

>>> 

>>> > > randomised org.eclipse.persistence.exceptions.JPQLException
error 

>>> 

>>> > on 

>>> 

>>> > 

>>> 

>>> > > startup 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > Can you try the latest 2.3.1 milestone (RC1)? 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > http://www.eclipse.org/eclipselink/downloads/milestones.php 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > -Tom 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > On 01/11/2011 9:07 AM, Nathan Drew wrote: 

>>> 

>>> > 

>>> 

>>> > >> Hi, 

>>> 

>>> > 

>>> 

>>> > >> 

>>> 

>>> > 

>>> 

>>> > >> Has anyone seen anything similar in WAS only? GlassFish and 

>>> 

>>> > WebLogic 

>>> 

>>> > 

>>> 

>>> > >> both seem to run without ever hitting this "random" JPQL
exception 

>>> 

>>> > on 

>>> 

>>> > 

>>> 

>>> > >> startup - see 

>>> 

>>> > 

>>> 

>>> > >> https://bugs.eclipse.org/bugs/show_bug.cgi?id=362564 for
details. 

>>> 

>>> > 

>>> 

>>> > >> 

>>> 

>>> > 

>>> 

>>> > >> Many Thanks 

>>> 

>>> > 

>>> 

>>> > >> 

>>> 

>>> > 

>>> 

>>> > >> Nathan 

>>> 

>>> > 

>>> 

>>> > >> 

>>> 

>>> > 

>>> 

>>> > >> 

>>> 

>>> > 

>>> 

>>> > >> 

>>> 

>>> > 

>>> 

>>> > >> _______________________________________________ 

>>> 

>>> > 

>>> 

>>> > >> eclipselink-users mailing list 

>>> 

>>> > 

>>> 

>>> > >> eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > 

>>> 

>>> > >> https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> > 

>>> 

>>> > > _______________________________________________ 

>>> 

>>> > 

>>> 

>>> > > eclipselink-users mailing list 

>>> 

>>> > 

>>> 

>>> > > eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > 

>>> 

>>> > > https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > _______________________________________________ 

>>> 

>>> > 

>>> 

>>> > > eclipselink-users mailing list 

>>> 

>>> > 

>>> 

>>> > > eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > 

>>> 

>>> > > https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > 

>>> 

>>> > 

>>> 

>>> > > _______________________________________________ 

>>> 

>>> > 

>>> 

>>> > > eclipselink-users mailing list 

>>> 

>>> > 

>>> 

>>> > > eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > 

>>> 

>>> > > https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> > 

>>> 

>>> > _______________________________________________ 

>>> 

>>> > 

>>> 

>>> > eclipselink-users mailing list 

>>> 

>>> > 

>>> 

>>> > eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > 

>>> 

>>> > https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > _______________________________________________ 

>>> 

>>> > eclipselink-users mailing list 

>>> 

>>> > eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > _______________________________________________ 

>>> 

>>> > eclipselink-users mailing list 

>>> 

>>> > eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> > 

>>> 

>>> > _______________________________________________ 

>>> 

>>> > eclipselink-users mailing list 

>>> 

>>> > eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > _______________________________________________ 

>>> 

>>> > eclipselink-users mailing list 

>>> 

>>> > eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> > 

>>> 

>>> > _______________________________________________ 

>>> 

>>> > eclipselink-users mailing list 

>>> 

>>> > eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > 

>>> 

>>> > _______________________________________________ 

>>> 

>>> > eclipselink-users mailing list 

>>> 

>>> > eclipselink-users@xxxxxxxxxxx 
<mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> > https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> _______________________________________________ 

>>> 

>>> eclipselink-users mailing list 

>>> 

>>> eclipselink-users@xxxxxxxxxxx <mailto:eclipselink-users@xxxxxxxxxxx>
<mailto:eclipselink-users@xxxxxxxxxxx>  

>>> 

>>> https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>>> 

>>> 

>>> 

>>> _______________________________________________ 

>>> eclipselink-users mailing list 

>>> eclipselink-users@xxxxxxxxxxx 

>>> https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>> _______________________________________________ 

>> eclipselink-users mailing list 

>> eclipselink-users@xxxxxxxxxxx 

>> https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

>> 

> 

> 

> _______________________________________________ 

> eclipselink-users mailing list 

> eclipselink-users@xxxxxxxxxxx 

> https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

_______________________________________________ 

eclipselink-users mailing list 

eclipselink-users@xxxxxxxxxxx 

https://dev.eclipse.org/mailman/listinfo/eclipselink-users 



_______________________________________________ 
eclipselink-users mailing list 
eclipselink-users@xxxxxxxxxxx 
https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

_______________________________________________ 
eclipselink-users mailing list 
eclipselink-users@xxxxxxxxxxx 
https://dev.eclipse.org/mailman/listinfo/eclipselink-users 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dev.eclipse.org/mailman/private/eclipselink-users/attachments/20111104/47624d4d/attachment.htm>
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: Eclipse Debugger Output 01.txt
URL: <https://dev.eclipse.org/mailman/private/eclipselink-users/attachments/20111104/47624d4d/attachment.txt>

------------------------------

_______________________________________________
eclipselink-users mailing list
eclipselink-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/eclipselink-users


End of eclipselink-users Digest, Vol 51, Issue 24
*************************************************


Back to the top