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.auditFields.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_NATURAL_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/rndvmCell/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/Bedrock-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/Bedrock-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/Bedrock-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/rndvmCell/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/rndvmCell/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/Bedrock-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/Bedrock-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/Bedrock-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/rndvmCell/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/rndvmCell/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.HedgeEquivalentsDiscountFactorWebService]: 
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.HedgeEquivalentsDiscountFactorWebService 
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.SDWorkFlowRuleTahoe] 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.SqmQueueMatrixTahoe] 
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.SqmQueueMatrixAudit] 
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.InstrumentProductTahoe] 
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.InstrumentProductMaker] 
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.RuleSetConfProfTahoe] 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.RuleSetConfProfMaker] 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.RuleNodeConfProfMaker. 
[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/classes:/opt/websphere/AppServer/classes:/opt/websphere/AppServer/lib:/opt/websphere/AppServer/installedChannels:/opt/websphere/AppServer/lib/ext:/opt/websphere/AppServer/web/help:/opt/websphere/AppServer/deploytool/itp/plugins/com.ibm.etools.ejbdeploy/runtime 
Classpath = 
/rndvm/java/profiles/AppSrvRNDVM/properties:/opt/websphere/AppServer/properties:/opt/websphere/AppServer/lib/startup.jar:/opt/websphere/AppServer/lib/bootstrap.jar:/opt/websphere/AppServer/lib/jsf-nls.jar:/opt/websphere/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/tools.jar 
Java Library path = 
/websphere/opt/websphere/AppServer/java/jre/lib/i386:/opt/websphere/AppServer/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.SettlementCentreAudit] 
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.MarginVolumeByUserCounterpartyProduct] 
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.CounterpartyCcyPairPositionGatheredEntity] 
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.InstrumentClassAudit] 
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.NettingCutoffTimeMaker] 
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.RuleNodeConfProfAudit] 
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.ConfirmationProfileMaker] 
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.ConfirmationProfileMaker 
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.CitySettlementConfigurationImpl] 
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.MessageTextAudit] 
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.SettlementCentreMaker] 
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.GlobalACProcessingAreaLive] 
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.InstrumentClassMaker] 
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.RuleNodeConfProfMaker] 
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.DealRegistrationValueDateDashBoardData] 
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.GlobalBOProcessingAreaAudit] 
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.MessageTextMaker] 
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.MessageGroupAudit] 
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.RuleNodeOurAccAudit] 
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.SwiftConfirmationProfileAudit] 
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.SDWorkFlowRuleAudit] 
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.SettlementCentre] 
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.MessageAckCounterByStatusId] 
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.InstrumentClassLimitAudit] 
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.GlobalSettlementConfigurationImpl] 
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.GlobalBOProcessingAreaMaker] 
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.CashflowSettlementDataByQueCategory] 
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.MessageGroupMaker] 
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.RuleNodeOurAccMaker] 
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.PortfolioCcyPairPositionGatheredEntityPK] 
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.SwiftConfirmationProfileMaker] 
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.SDWorkFlowRuleMaker] 
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.InstrumentProductLimitAudit] 
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.PaperConfirmationProfileAudit] 
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.PortfolioCcyPositionEntityPK] 
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.SwiftMessageTag] 
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.DataElementGroupAudit] 
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.InstrumentClassLimitMaker] 
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.MessageAckCounterByStatusAndTypeId] 
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.InstrumentProductAudit] 
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.FxInterfaceConfiguration] 
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.RuleSetConfProfAudit] 
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.RuleSetConfProfAudit 
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.InstrumentProductLimitMaker] 
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.PaperConfirmationProfileMaker] 
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.SqmActionsAuditDetail] 
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.DataElementGroupMaker] 
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/rndvmCell/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/rndvmCell/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.DealRegistrationValueDateDashBoardData; 
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.CashflowSettlementDataByQueue; 
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.CounterpartyCcyPairPositionScatteredEntity; 
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.PortfolioCcyPairPositionGatheredEntity; 
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.TxnApprovalDataByQueCategory; 
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.CashflowSettlementDataByQueCategory; 
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.PortfolioCcyPairPositionScatteredEntity; 
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.CounterpartyCcyPairPositionGatheredEntity; 
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.CounterpartyCcyPositionEntity; 
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(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: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(JPQLException.java:457) 
at org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.java:87)
at org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.java: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(EqualsNode.java:41) 
at org.eclipse.persistence.internal.jpa.parsing.Node.validate(Node.java:95) 
at 
org.eclipse.persistence.internal.jpa.parsing.LogicalOperatorNode.validate(LogicalOperatorNode.java:39) 
at 
org.eclipse.persistence.internal.jpa.parsing.WhereNode.validate(WhereNode.java:34) 
at 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTree.java:207) 
at 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTree.java:183) 
at 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTree.java:173) 
at 
org.eclipse.persistence.internal.jpa.parsing.JPQLParseTree.populateReadQueryInternal(JPQLParseTree.java:110) 
at 
org.eclipse.persistence.internal.jpa.parsing.JPQLParseTree.populateQuery(JPQLParseTree.java:84) 
at 
org.eclipse.persistence.internal.jpa.EJBQueryImpl.buildEJBQLDatabaseQuery(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.processJPAQueries(AbstractSession.java:2161) 
at 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.initializeDescriptors(DatabaseSessionImpl.java:442) 
at 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.postConnectDatasource(DatabaseSessionImpl.java:676) 
at 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.loginAndDetectDatasource(DatabaseSessionImpl.java:621) 
at 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryProvider.login(EntityManagerFactoryProvider.java:206) 
at 
org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:488) 
at 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryDelegate.getDatabaseSession(EntityManagerFactoryDelegate.java:188) 
at 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.getDatabaseSession(EntityManagerFactoryImpl.java:485) 
at 
org.eclipse.persistence.jpa.PersistenceProvider.createContainerEntityManagerFactory(PersistenceProvider.java:243) 
at com.ibm.ws.jpa.management.JPAPUnitInfo.createEMFactory(JPAPUnitInfo.java:1498)
at 
com.ibm.ws.jpa.management.JPAPUnitInfo.createEntityManagerFactory(JPAPUnitInfo.java:1332) 
at 
com.ibm.ws.jpa.management.JPAPxmlInfo.extractPersistenceUnits(JPAPxmlInfo.java:393) 
at 
com.ibm.ws.jpa.management.JPAScopeInfo.processPersistenceUnit(JPAScopeInfo.java:140) 
at com.ibm.ws.jpa.management.JPAApplInfo.processModulePUs(JPAApplInfo.java:169)
at 
com.ibm.ws.jpa.management.JPAComponentImpl.startingDeployedModule(JPAComponentImpl.java:895) 
at 
com.ibm.ws.jpa.management.JPAComponentImpl.stateChanged(JPAComponentImpl.java:748) 
at 
com.ibm.ws.runtime.component.ApplicationMgrImpl.stateChanged(ApplicationMgrImpl.java:1075) 
at 
com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectEvent(DeployedApplicationImpl.java:1302) 
at 
com.ibm.ws.runtime.component.DeployedModuleImpl.setState(DeployedModuleImpl.java:221) 
at 
com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl.java:607) 
at 
com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedApplicationImpl.java:944) 
at 
com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(ApplicationMgrImpl.java:726) 
at 
com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:2048) 
at 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.start(CompositionUnitMgrImpl.java:441) 
at 
com.ibm.ws.runtime.component.CompositionUnitImpl.start(CompositionUnitImpl.java:123) 
at 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.start(CompositionUnitMgrImpl.java:384) 
at 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.access$300(CompositionUnitMgrImpl.java:112) 
at 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl$CUInitializer.run(CompositionUnitMgrImpl.java:951) 
at 
com.ibm.wsspi.runtime.component.WsComponentImpl$_AsynchInitializer.run(WsComponentImpl.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/rndvmCell/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/rndvmCell/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/rndvmCell/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 
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/rndvmCell/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.PositionCounterpartyCcyPairUpdateDAO 
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/PositionCounterpartyCcyPairUpdateDAOEJB#biz.wss.server.services.local.position.counterparty.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.PositionCounterpartyCcyPairUpdateDAO 
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.PositionCounterpartyCcyPairUpdateDAO 
[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.RequestMsgProcessor 
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/RequestMsgProcessorEJB#biz.wss.server.services.local.bo.messages.actionrequests.RequestMsgProcessor 
[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.RequestMsgProcessor 
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.RequestMsgProcessor 
[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/PaymentcutofftimesDAOEJB#biz.wss.server.services.local.bo.payment.cutoff.PaymentcutofftimesDAO 
[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.PaymentcutofftimesDAO 
[11/3/11 15:53:41:757 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyPairDAO 
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/PositionPortfolioCcyPairDAOEJB#biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyPairDAO 
[11/3/11 15:53:41:760 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyPairDAO 
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.PositionPortfolioCcyPairDAO 
[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/NewDealCoreTranBatchEJB#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.PositionCounterpartyCcyPairUpdate1DAO 
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/PositionCounterpartyCcyPairUpdate1DAOEJB#biz.wss.server.services.local.position.counterparty.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.PositionCounterpartyCcyPairUpdate1DAO 
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.volumeupdaters.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#biz.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/RuleExecutionThreadDAOEJB#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/FXDealCaptureDAOEJB#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.PositionCounterpartyCcyPairUpdate9DAO 
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/PositionCounterpartyCcyPairUpdate9DAOEJB#biz.wss.server.services.local.position.counterparty.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.PositionCounterpartyCcyPairUpdate9DAO 
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.volumeupdaters.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/CloseOfSettlementCentreDAOEJB#biz.wss.server.services.workflow.coasc.CloseOfSettlementCentreDAO 
[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.CloseOfSettlementCentreDAO 
[11/3/11 15:53:41:845 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyPairUpdateDAO 
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/PositionPortfolioCcyPairUpdateDAOEJB#biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyPairUpdateDAO 
[11/3/11 15:53:41:849 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyPairUpdateDAO 
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.PositionPortfolioCcyPairUpdateDAO 
[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/AuthorisationJpaEJB#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.PositionPortfolioCcyPairUpdate8DAO 
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/PositionPortfolioCcyPairUpdate8DAOEJB#biz.wss.server.services.local.position.portfolio.volumeupdaters.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.PositionPortfolioCcyPairUpdate8DAO 
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/InterModuleDataWFServiceEJB#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#biz.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.GapDateDiscountFactorServiceRemote 
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#biz.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.RequestMsgInitialise 
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/RequestMsgInitialiseEJB#biz.wss.server.services.local.bo.messages.actionrequests.RequestMsgInitialise 
[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.RequestMsgInitialise 
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.RequestMsgInitialise 
[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/GenericWebServiceEjb#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/TaskControllerServiceEJB#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/AuditMakerRetrievalEjb#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.BOReNotificationWorkFlowServiceLocal 
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/BOReNotificationWorkFlowServiceEJB#biz.wss.interfaces.services.bo.renotify.BOReNotificationWorkFlowServiceLocal 
[11/3/11 15:53:42:521 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.renotify.BOReNotificationWorkFlowServiceLocal 
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.BOReNotificationWorkFlowServiceLocal 
[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/FXConfigurationDAOEJB#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.PositionCounterpartyCcyPairUpdate6DAO 
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/PositionCounterpartyCcyPairUpdate6DAOEJB#biz.wss.server.services.local.position.counterparty.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.PositionCounterpartyCcyPairUpdate6DAO 
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.volumeupdaters.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.SqmCountersDAO 
[11/3/11 15:53:42:537 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.server.services.local.position.counterparty.PositionCounterpartyCcyDAO 
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/PositionCounterpartyCcyDAOEJB#biz.wss.server.services.local.position.counterparty.PositionCounterpartyCcyDAO 
[11/3/11 15:53:42:539 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.server.services.local.position.counterparty.PositionCounterpartyCcyDAO 
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.PositionCounterpartyCcyDAO 
[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/RuleConditionsDAOEJB#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.DealRepairServiceRemote 
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.DealRepairServiceLocal 
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.UpdateOtherEntityHelper 
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/UpdateOtherEntityHelperEjb#biz.wss.server.services.local.foureyes.ejb.promoter.UpdateOtherEntityHelper 
[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.UpdateOtherEntityHelper 
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.UpdateOtherEntityHelper 
[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/TimedMessageDrainerEJB#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.PositionPortfolioCcyPairUpdate5DAO 
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/PositionPortfolioCcyPairUpdate5DAOEJB#biz.wss.server.services.local.position.portfolio.volumeupdaters.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.PositionPortfolioCcyPairUpdate5DAO 
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/AreaUnitUtilsDAOEJB#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/LiquidityGroupDAOEJB#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.SqmActionsAuditDAO 
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/SqmActionsAuditDAOEJB#biz.wss.server.services.local.bo.settlement.queue.audit.SqmActionsAuditDAO 
[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.SqmActionsAuditDAO 
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.SqmActionsAuditDAO 
[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.wss.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.BOTradeCancellationWorkFlowServiceLocal 
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/BOTradeCancellationWorkFlowServiceEJB#biz.wss.interfaces.services.bo.deal.cancel.BOTradeCancellationWorkFlowServiceLocal 
[11/3/11 15:53:42:724 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.deal.cancel.BOTradeCancellationWorkFlowServiceLocal 
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.BOTradeCancellationWorkFlowServiceLocal 
[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/GenericReadOnlyDaoEjb#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.TransactionEventExportProfileDAO 
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/TransactionEventExportProfileDAOEJB#biz.wss.server.services.local.bo.cmmintegration.TransactionEventExportProfileDAO 
[11/3/11 15:53:42:733 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.server.services.local.bo.cmmintegration.TransactionEventExportProfileDAO 
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.TransactionEventExportProfileDAO 
[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#biz.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/GenericP4ExecutorEjb#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.GenericP4Executor 
[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.PositionCounterpartyCcyPairUpdate3DAO 
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/PositionCounterpartyCcyPairUpdate3DAOEJB#biz.wss.server.services.local.position.counterparty.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.PositionCounterpartyCcyPairUpdate3DAO 
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.volumeupdaters.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/MarginVolumeUpdateServiceEJB#biz.wss.interfaces.services.fx.marvol.MarginVolumeUpdateService 
[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#biz.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/CustomerCycleDAOEJB#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/InterModuleDataDAOEJB#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.PositionPortfolioCcyPairUpdate2DAO 
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/PositionPortfolioCcyPairUpdate2DAOEJB#biz.wss.server.services.local.position.portfolio.volumeupdaters.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.PositionPortfolioCcyPairUpdate2DAO 
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.ExtMessageEngineMsgResponseService 
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/ExtMessageEngineMsgResponseServiceEJB#biz.wss.interfaces.services.bo.messageengine.response.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.ExtMessageEngineMsgResponseService 
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.ExtMessageEngineMsgResponseService 
[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/UserMessageServiceEJB#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/ReceiptSchedulerDAOEJB#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.SwiftMessageDetailDAO 
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/SwiftMessageDetailDAOEJB#biz.wss.server.services.local.bo.deal.details.swiftmessage.SwiftMessageDetailDAO 
[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.SwiftMessageDetailDAO 
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.SwiftMessageDetailDAO 
[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/SqmQueueMoveDAOEJB#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.SqmQueueMoveDAO 
[11/3/11 15:53:42:899 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.deal.register.BOTradeRegistrationWorkFlowServiceLocal 
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/BOTradeRegistrationWorkFlowServiceEJB#biz.wss.interfaces.services.bo.deal.register.BOTradeRegistrationWorkFlowServiceLocal 
[11/3/11 15:53:42:903 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.deal.register.BOTradeRegistrationWorkFlowServiceLocal 
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.BOTradeRegistrationWorkFlowServiceLocal 
[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.MessageTextDAO 
[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.PositionPortfolioCcyPairUpdate10DAO 
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/PositionPortfolioCcyPairUpdate10DAOEJB#biz.wss.server.services.local.position.portfolio.volumeupdaters.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.PositionPortfolioCcyPairUpdate10DAO 
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/FinMsgNotificationServiceEJB#biz.wss.interfaces.services.bo.notification.FinMsgNotificationService 
[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.FinMsgNotificationService 
[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/WssCoreDealNumServiceEJB#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/SettlementcentreDAOEJB#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.PositionCounterpartyCcyPairDAO 
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/PositionCounterpartyCcyPairDAOEJB#biz.wss.server.services.local.position.counterparty.PositionCounterpartyCcyPairDAO 
[11/3/11 15:53:43:119 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.server.services.local.position.counterparty.PositionCounterpartyCcyPairDAO 
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.PositionCounterpartyCcyPairDAO 
[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/PositionReaderDAOEJB#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.CashFlowNettingWorkerService 
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/CashFlowNettingWorkerServiceEJB#biz.wss.server.services.local.bo.settlement.netting.CashFlowNettingWorkerService 
[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.CashFlowNettingWorkerService 
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.CashFlowNettingWorkerService 
[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.PositionCounterpartyCcyPairUpdate8DAO 
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/PositionCounterpartyCcyPairUpdate8DAOEJB#biz.wss.server.services.local.position.counterparty.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.PositionCounterpartyCcyPairUpdate8DAO 
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.volumeupdaters.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#biz.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.BOTradeModificationWorkFlowServiceLocal 
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/BOTradeModificationWorkFlowServiceEJB#biz.wss.interfaces.services.bo.deal.modify.BOTradeModificationWorkFlowServiceLocal 
[11/3/11 15:53:43:164 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.deal.modify.BOTradeModificationWorkFlowServiceLocal 
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.BOTradeModificationWorkFlowServiceLocal 
[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#biz.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/JobControllerServiceEJB#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.PositionPortfolioCcyPairUpdate7DAO 
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/PositionPortfolioCcyPairUpdate7DAOEJB#biz.wss.server.services.local.position.portfolio.volumeupdaters.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.PositionPortfolioCcyPairUpdate7DAO 
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/AckNakCountersDAOEJB#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.AckNakCountersDAO 
[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/FinancialMessageContentDAOEJB#biz.wss.server.services.local.bo.messages.dao.FinancialMessageContentDAO 
[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.FinancialMessageContentDAO 
[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/MessageRequestDAOEJB#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/IdProviderNewTransactionForcerEjb#biz.wss.server.services.local.dao.IdProviderNewTransactionForcer 
[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.IdProviderNewTransactionForcer 
[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.PositionCounterpartyCcyPairUpdate5DAO 
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/PositionCounterpartyCcyPairUpdate5DAOEJB#biz.wss.server.services.local.position.counterparty.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.PositionCounterpartyCcyPairUpdate5DAO 
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.volumeupdaters.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/PersistenceServiceDAOEJB#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.TransactionEventCashflowDAO 
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/TransactionEventCashflowDAOEJB#biz.wss.server.services.local.bo.cmmintegration.TransactionEventCashflowDAO 
[11/3/11 15:53:43:323 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.server.services.local.bo.cmmintegration.TransactionEventCashflowDAO 
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.TransactionEventCashflowDAO 
[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.PositionPortfolioCcyPairUpdate4DAO 
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/PositionPortfolioCcyPairUpdate4DAOEJB#biz.wss.server.services.local.position.portfolio.volumeupdaters.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.PositionPortfolioCcyPairUpdate4DAO 
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.SqmQueueMatrixDAO 
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/SqmQueueMatrixDAOEJB#biz.wss.server.services.local.bo.settlement.queue.matrix.SqmQueueMatrixDAO 
[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.SqmQueueMatrixDAO 
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.SqmQueueMatrixDAO 
[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.RequestMsgBulkProcessor 
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/RequestMsgBulkProcessorEJB#biz.wss.server.services.local.bo.messages.actionrequests.RequestMsgBulkProcessor 
[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.RequestMsgBulkProcessor 
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.RequestMsgBulkProcessor 
[11/3/11 15:53:43:346 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.notification.BOTradeNotificationServiceLocal 
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/BOTradeNotificationServiceEJB#biz.wss.interfaces.services.bo.notification.BOTradeNotificationServiceLocal 
[11/3/11 15:53:43:348 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.notification.BOTradeNotificationServiceLocal 
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.BOTradeNotificationServiceLocal 
[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/InterfaceCodesDAOEJB#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.PositionCounterpartyCcyPairUpdate2DAO 
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/PositionCounterpartyCcyPairUpdate2DAOEJB#biz.wss.server.services.local.position.counterparty.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.PositionCounterpartyCcyPairUpdate2DAO 
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.volumeupdaters.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/PerformanceMonitorEJB#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.PositionPortfolioCcyPairUpdate1DAO 
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/PositionPortfolioCcyPairUpdate1DAOEJB#biz.wss.server.services.local.position.portfolio.volumeupdaters.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.PositionPortfolioCcyPairUpdate1DAO 
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/CashRecordVersionsDAOEJB#biz.wss.server.services.local.bo.cmmintegration.CashRecordVersionsDAO 
[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.CashRecordVersionsDAO 
[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/ServiceStateManagerEJB#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.ExtMessageEngineMsgRequestService 
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/ExtMessageEngineRequestMsgWorkerEJB#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.ExtMessageEngineMsgRequestService 
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.ExtMessageEngineMsgRequestService 
[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.PositionPortfolioCcyPairUpdate9DAO 
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/PositionPortfolioCcyPairUpdate9DAOEJB#biz.wss.server.services.local.position.portfolio.volumeupdaters.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.PositionPortfolioCcyPairUpdate9DAO 
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#biz.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/PositionPortfolioCcyDAOEJB#biz.wss.server.services.local.position.portfolio.PositionPortfolioCcyDAO 
[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.PositionPortfolioCcyDAO 
[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/FoTransactionDAOEJB#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.DealDetailsSnapshotServiceRemote 
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/DatabasePatchQueryEJB#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/ServerFunctionCheckEJB#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.ServerFunctionCheck 
[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.PositionCounterpartyCcyPairUpdate7DAO 
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/PositionCounterpartyCcyPairUpdate7DAOEJB#biz.wss.server.services.local.position.counterparty.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.PositionCounterpartyCcyPairUpdate7DAO 
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.volumeupdaters.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.PositionCounterpartyCcyPairUpdate10DAO 
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/PositionCounterpartyCcyPairUpdate10DAOEJB#biz.wss.server.services.local.position.counterparty.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.PositionCounterpartyCcyPairUpdate10DAO 
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.volumeupdaters.PositionCounterpartyCcyPairUpdate10DAO 
[11/3/11 15:53:43:595 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.notification.BOCashFlowNotificationService 
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/BOCashFlowNotificationServiceEJB#biz.wss.interfaces.services.bo.notification.BOCashFlowNotificationService 
[11/3/11 15:53:43:598 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.notification.BOCashFlowNotificationService 
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.BOCashFlowNotificationService 
[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/EventExportEnrichmentDAOEJB#biz.wss.server.services.local.bo.cmmintegration.EventExportEnrichmentDAO 
[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.EventExportEnrichmentDAO 
[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#biz.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.PositionPortfolioCcyPairUpdate6DAO 
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/PositionPortfolioCcyPairUpdate6DAOEJB#biz.wss.server.services.local.position.portfolio.volumeupdaters.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.PositionPortfolioCcyPairUpdate6DAO 
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.DataElementResolutionService 
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/DataElementResolutionServiceEJB#biz.wss.server.services.local.bo.dataelement.DataElementResolutionService 
[11/3/11 15:53:43:630 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.server.services.local.bo.dataelement.DataElementResolutionService 
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.DataElementResolutionService 
[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.wss.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.WssConfigurationPropertiesServiceRemote 
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.WssConfigurationPropertiesService 
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#biz.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/CurrencyPairDAOEJB#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.CashFlowNettingServiceDAO 
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/CashFlowNettingServiceDAOEJB#biz.wss.server.services.local.bo.settlement.netting.CashFlowNettingServiceDAO 
[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.CashFlowNettingServiceDAO 
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.CashFlowNettingServiceDAO 
[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.PositionCounterpartyCcyPairUpdate4DAO 
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/PositionCounterpartyCcyPairUpdate4DAOEJB#biz.wss.server.services.local.position.counterparty.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.PositionCounterpartyCcyPairUpdate4DAO 
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.volumeupdaters.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.FinMessageExportService 
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/FinMessageExportServiceEJB#biz.wss.server.services.local.bo.finmessage.export.FinMessageExportService 
[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.FinMessageExportService 
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.FinMessageExportService 
[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#biz.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#biz.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.PositionPortfolioCcyPairUpdate3DAO 
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/PositionPortfolioCcyPairUpdate3DAOEJB#biz.wss.server.services.local.position.portfolio.volumeupdaters.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.PositionPortfolioCcyPairUpdate3DAO 
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.DealApproveServiceRemote 
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.DealApproveService 
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/MarginVolumeDAOEJB#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#ExtMessageEngineRecMsgResponseListenerEJB 
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#ExtMessageEnginePmtMsgResponseListenerEJB 
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#RequestMsgScheduleListenerEJB 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#TimedMessageDrainerInitialiserMDB 
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#SwiftAckNackNotificationEJB 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#DealNumberUpdateListenerMDB 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#ExtMessageEnginePreviewMsgResponseListenerEJB 
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#ExtMessageEngineConfMsgResponseListenerEJB 
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#ExtMessageEngineReviewMsgResponseListenerEJB 
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.FXConfigurationServiceRemote 
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.DealerInterventionServiceRemote 
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#GapCacheInvalidatorMDB 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/MarginVolumeCloseOfAreaServiceEJB#biz.wss.interfaces.services.fx.marvol.MarginVolumeCloseOfAreaService 
[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.MarginVolumeCloseOfAreaService 
[11/3/11 15:53:45:215 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.quickpnl.LaunchQuickPNLPortfolioServiceRemote 
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.SqmQueueMoveServiceRemote 
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.SqmQueueMoveServiceLocal 
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.CashFlowNettingServiceRemote 
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/AlarmAckServiceBulkProcessorEJB#biz.wss.interfaces.services.bo.alarm.AlarmAckServiceBulkProcessor 
[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.AlarmAckServiceBulkProcessor 
[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/BoTradeSyncServiceEJB#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.BoTradeSyncServiceLocal 
[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/RuleResolutionServiceEJB#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.BOTradeCancellationService 
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/BOTradeCancellationServiceEJB#biz.wss.interfaces.services.bo.settlement.registration.BOTradeCancellationService 
[11/3/11 15:53:45:665 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.settlement.registration.BOTradeCancellationService 
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.BOTradeCancellationService 
[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/BOTradeCaptureServiceEJB#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.BOTradeCaptureServiceLocal 
[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.SqmCountersServiceRemote 
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.SqmCountersServiceLocal 
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/FtoDServiceBulkProcessorEJB#biz.wss.interfaces.services.bo.settlement.ftod.FtoDServiceBulkProcessor 
[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.FtoDServiceBulkProcessor 
[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/AlarmAckServiceWorkerEJB#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.SqmQueueMoveOptionsServiceRemote 
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.SqmQueueMoveOptionsServiceLocal 
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/BOTradeConversionServiceEJB#biz.wss.server.services.local.bo.convert.BOTradeConversionServiceLocal 
[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.BOTradeConversionServiceLocal 
[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.CMMCashForecastIntegrationService 
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/CMMCashForecastIntegrationEJB#biz.wss.interfaces.services.bo.cmmintegration.CMMCashForecastIntegrationService 
[11/3/11 15:53:46:676 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMCashForecastIntegrationService 
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.CMMCashForecastIntegrationService 
[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/BoCashFlowSyncServiceEJB#biz.wss.server.services.local.bo.cashflow.BoCashFlowSyncServiceLocal 
[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.BoCashFlowSyncServiceLocal 
[11/3/11 15:53:46:694 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.deal.enrichment.BOTradeEnrichmentServiceRemote 
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.BOTradeEnrichmentServiceLocal 
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/AlarmCutoffServiceWorkerEJB#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.PaymentcutofftimesServiceRemote 
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.PaymentcutofftimesServiceLocal 
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#biz.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.SqmActionsAuditServiceRemote 
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.SqmActionsAuditService 
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/PaymentServiceBulkProcessorEJB#biz.wss.interfaces.services.bo.payment.PaymentServiceBulkProcessor 
[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.PaymentServiceBulkProcessor 
[11/3/11 15:53:46:816 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.settlement.registration.BORegistrationServiceLocal 
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/BORegistrationServiceEJB#biz.wss.interfaces.services.bo.settlement.registration.BORegistrationServiceLocal 
[11/3/11 15:53:46:819 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.settlement.registration.BORegistrationServiceLocal 
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.BORegistrationServiceLocal 
[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/BOCashFlowCaptureServiceEJB#biz.wss.server.services.local.bo.cashflow.BOCashFlowCaptureServiceLocal 
[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.BOCashFlowCaptureServiceLocal 
[11/3/11 15:53:46:833 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.settlement.netting.CashFlowPreNettingServiceRemote 
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.CashFlowPreNettingServiceLocal 
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.CMMStaticDataIntegrationService 
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/CMMStaticDataIntegrationEJB#biz.wss.interfaces.services.bo.cmmintegration.CMMStaticDataIntegrationService 
[11/3/11 15:53:46:858 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMStaticDataIntegrationService 
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.CMMStaticDataIntegrationService 
[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/AlarmCutoffServiceEJB#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.BOCashFlowEnrichmentServiceRemote 
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.CMMTransactionEventsService 
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/CMMTransactionEventsEJB#biz.wss.interfaces.services.bo.cmmintegration.CMMTransactionEventsService 
[11/3/11 15:53:46:884 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMTransactionEventsService 
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.CMMTransactionEventsService 
[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/ReceiptServiceBulkProcessorEJB#biz.wss.interfaces.services.bo.receipt.ReceiptServiceBulkProcessor 
[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.ReceiptServiceBulkProcessor 
[11/3/11 15:53:46:899 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.settlement.netting.CashFlowNettingOverviewServiceRemote 
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.CashFlowNettingOverviewService 
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.CMMCashMovementIntegrationService 
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/CMMCashMovementIntegrationEJB#biz.wss.interfaces.services.bo.cmmintegration.CMMCashMovementIntegrationService 
[11/3/11 15:53:46:914 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.cmmintegration.CMMCashMovementIntegrationService 
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.CMMCashMovementIntegrationService 
[11/3/11 15:53:46:962 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.settlement.registration.BOTradeModificationService 
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/BOTradeModificationServiceEJB#biz.wss.interfaces.services.bo.settlement.registration.BOTradeModificationService 
[11/3/11 15:53:46:966 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.settlement.registration.BOTradeModificationService 
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.BOTradeModificationService 
[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.SwiftMessageDetailServiceRemote 
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.SwiftMessageDetailServiceLocal 
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#biz.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.CMMCashflowReplyService 
[11/3/11 15:53:46:990 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.services.bo.deal.enrichment.BOTradeCaptureEnhancementServiceRemote 
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.BOTradeCaptureEnhancementService 
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#ReceiptServiceWorkDispatcherEJB 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#PaymentServiceWorkDispatcherEJB 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#AlarmAckServiceWorkDispatcherEJB 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#AlarmCutoffServiceWorkDispatcherEJB 
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/ExceptionTopicSenderEJB#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/ExplicitExceptionAnalyzerEJB#biz.wss.server.services.logging.analysis.ExplicitExceptionAnalyzer 
[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.ExplicitExceptionAnalyzer 
[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/RegisterEntityWebService#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/GenericWebServiceWebService#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/CMMTransactionEventExportProfileWebService#biz.wss.cmm.transaction.export.CMMTransactionEventExportProfile 
[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/AuditMakerRetrievalWebService#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/ConfigWorkflowWebService#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#biz.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/SettlementCentreAPIWebservice#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.server.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#biz.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.DataElementGroupAPILocalInterface 
[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/PaymentMethodAPIWebservice#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.wss.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.server.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.wss.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/DataElementGroupAPIWebservice#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/TradeAPIBusinessMediatorEJB#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#biz.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.SettlementCentreAPILocalInterface 
[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.InterModuleDataProcessingService 
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/InterModuleDataProcessingServiceEJB#biz.wss.interfaces.intermodule.services.data.process.InterModuleDataProcessingService 
[11/3/11 15:53:48:330 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.intermodule.services.data.process.InterModuleDataProcessingService 
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.InterModuleDataProcessingService 
[11/3/11 15:53:48:335 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.intermodule.services.bo.trade.BoTradeProcessingMediationService 
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/BoTradeProcessingMediationServiceEJB#biz.wss.interfaces.intermodule.services.bo.trade.BoTradeProcessingMediationService 
[11/3/11 15:53:48:337 UTC] 0000000f EJBContainerI I CNTR0167I: The server is 
binding the 
biz.wss.interfaces.intermodule.services.bo.trade.BoTradeProcessingMediationService 
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.BoTradeProcessingMediationService 
[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.services.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.server.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(JPAPUnitInfo.java:1369) 
at 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerPool(JPAPUnitInfo.java:1577) 
at 
com.ibm.ws.jpa.management.JPATxEntityManager.<init>(JPATxEntityManager.java:156) 
at 
com.ibm.ws.jpa.management.JPAComponentImpl.getEntityManager(JPAComponentImpl.java:1053) 
at 
com.ibm.ws.util.JPAJndiLookupObjectFactory.getObjectInstance(JPAJndiLookupObjectFactory.java:151) 
at 
com.ibm.wsspi.injectionengine.InjectionBinding.getInjectionObject(InjectionBinding.java:659) 
at 
com.ibm.wsspi.injectionengine.InjectionTargetField.inject(InjectionTargetField.java:245) 
at 
com.ibm.ws.injectionengine.InjectionEngineImpl.inject(InjectionEngineImpl.java:620) 
at com.ibm.ejs.container.StatelessBeanO.initialize(StatelessBeanO.java:287) 
at 
com.ibm.ejs.container.CMStatelessBeanOFactory.create(CMStatelessBeanOFactory.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(UncachedActivationStrategy.java:84) 
at com.ibm.ejs.container.activator.Activator.activateBean(Activator.java:599)
at com.ibm.ejs.container.EJSContainer.preInvokeActivate(EJSContainer.java:3964)
at com.ibm.ejs.container.EJSContainer.EjbPreInvoke(EJSContainer.java:3349) 
at 
biz.wss.interfaces.services.fx.pricing.fotinfo.EJSLocal0SLFotDAOEJB_73eeba3d.getConfig(EJSLocal0SLFotDAOEJB_73eeba3d.java) 
at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotRepository.initialise(FotRepository.java:72) 
at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.start(FotInitialiser.java:80) 
at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.onMessage(FotInitialiser.java:65) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.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(InvocationContextImpl.java:586) 
at 
biz.wss.server.services.logging.analysis.MethodTimerInterceptor.intercept(MethodTimerInterceptor.java:161) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) 
at java.lang.reflect.Method.invoke(Method.java:611) 
at 
com.ibm.ejs.container.interceptors.InterceptorProxy.invokeInterceptor(InterceptorProxy.java:227) 
at 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(InvocationContextImpl.java:566) 
at 
com.ibm.ejs.container.interceptors.InvocationContextImpl.doAroundInvoke(InvocationContextImpl.java:217) 
at 
com.ibm.ejs.container.MessageEndpointHandler.invokeMdbMethod(MessageEndpointHandler.java:1080) 
at 
com.ibm.ejs.container.MessageEndpointHandler.invoke(MessageEndpointHandler.java:778) 
at $Proxy42.onMessage(Unknown Source) 
at 
com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl.invokeEndpoint(JmsJcaEndpointInvokerImpl.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(JPAPUnitInfo.java:1369) 
at 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerPool(JPAPUnitInfo.java:1577) 
at 
com.ibm.ws.jpa.management.JPATxEntityManager.<init>(JPATxEntityManager.java:156) 
at 
com.ibm.ws.jpa.management.JPAComponentImpl.getEntityManager(JPAComponentImpl.java:1053) 
at 
com.ibm.ws.util.JPAJndiLookupObjectFactory.getObjectInstance(JPAJndiLookupObjectFactory.java:151) 
at 
com.ibm.wsspi.injectionengine.InjectionBinding.getInjectionObject(InjectionBinding.java:659) 
at 
com.ibm.wsspi.injectionengine.InjectionTargetField.inject(InjectionTargetField.java:245) 
at 
com.ibm.ws.injectionengine.InjectionEngineImpl.inject(InjectionEngineImpl.java:620) 
at com.ibm.ejs.container.StatelessBeanO.initialize(StatelessBeanO.java:287) 
at 
com.ibm.ejs.container.CMStatelessBeanOFactory.create(CMStatelessBeanOFactory.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(UncachedActivationStrategy.java:84) 
at com.ibm.ejs.container.activator.Activator.activateBean(Activator.java:599)
at com.ibm.ejs.container.EJSContainer.preInvokeActivate(EJSContainer.java:3964)
at com.ibm.ejs.container.EJSContainer.EjbPreInvoke(EJSContainer.java:3349) 
at 
biz.wss.interfaces.services.fx.pricing.fotinfo.EJSLocal0SLFotDAOEJB_73eeba3d.getConfig(EJSLocal0SLFotDAOEJB_73eeba3d.java) 
at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotRepository.initialise(FotRepository.java:72) 
at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.start(FotInitialiser.java:80) 
at 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.onMessage(FotInitialiser.java:65) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.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(InvocationContextImpl.java:586) 
at 
biz.wss.server.services.logging.analysis.MethodTimerInterceptor.intercept(MethodTimerInterceptor.java:161) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) 
at java.lang.reflect.Method.invoke(Method.java:611) 
at 
com.ibm.ejs.container.interceptors.InterceptorProxy.invokeInterceptor(InterceptorProxy.java:227) 
at 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(InvocationContextImpl.java:566) 
at 
com.ibm.ejs.container.interceptors.InvocationContextImpl.doAroundInvoke(InvocationContextImpl.java:217) 
at 
com.ibm.ejs.container.MessageEndpointHandler.invokeMdbMethod(MessageEndpointHandler.java:1080) 
at 
com.ibm.ejs.container.MessageEndpointHandler.invoke(MessageEndpointHandler.java:778) 
at $Proxy42.onMessage(Unknown Source) 
at 
com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl.invokeEndpoint(JmsJcaEndpointInvokerImpl.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" 
> xmlns:xsi="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_ACCEPTED_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.auditFields.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.DataElementGroupAudit]. 
> at 
> 
org.eclipse.persistence.exceptions.JPQLException.unknownAttribute(JPQLException.java:457) 
> at 
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.java: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(JPQLException.java:457) 
>>> 
>>> 
>>> at 
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.java:87) 
>>> 
>>> at 
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.java: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(EqualsNode.java:41) 
>>> 
>>> 
>>> at org.eclipse.persistence.internal.jpa.parsing.Node.validate(Node.java:95) 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.parsing.LogicalOperatorNode.validate(LogicalOperatorNode.java:39) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.parsing.WhereNode.validate(WhereNode.java:34) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTree.java:207) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTree.java:183) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.parsing.ParseTree.validate(ParseTree.java:173) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.parsing.JPQLParseTree.populateReadQueryInternal(JPQLParseTree.java:110) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.parsing.JPQLParseTree.populateQuery(JPQLParseTree.java:84) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.EJBQueryImpl.buildEJBQLDatabaseQuery(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.processJPAQueries(AbstractSession.java:2161) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.initializeDescriptors(DatabaseSessionImpl.java:442) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.postConnectDatasource(DatabaseSessionImpl.java:676) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.loginAndDetectDatasource(DatabaseSessionImpl.java:621) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryProvider.login(EntityManagerFactoryProvider.java:206) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:488) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryDelegate.getDatabaseSession(EntityManagerFactoryDelegate.java:188) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.getDatabaseSession(EntityManagerFactoryImpl.java:485) 
>>> 
>>> 
>>> at 
>>> 
org.eclipse.persistence.jpa.PersistenceProvider.createContainerEntityManagerFactory(PersistenceProvider.java:243) 
>>> 
>>> 
>>> at 
com.ibm.ws.jpa.management.JPAPUnitInfo.createEMFactory(JPAPUnitInfo.java:1498) 
>>> 
>>> at 
>>> 
com.ibm.ws.jpa.management.JPAPUnitInfo.createEntityManagerFactory(JPAPUnitInfo.java:1332) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.jpa.management.JPAPxmlInfo.extractPersistenceUnits(JPAPxmlInfo.java:393) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.jpa.management.JPAScopeInfo.processPersistenceUnit(JPAScopeInfo.java:140) 
>>> 
>>> 
>>> at 
com.ibm.ws.jpa.management.JPAApplInfo.processModulePUs(JPAApplInfo.java:169) 
>>> 
>>> at 
>>> 
com.ibm.ws.jpa.management.JPAComponentImpl.startingDeployedModule(JPAComponentImpl.java:895) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.jpa.management.JPAComponentImpl.stateChanged(JPAComponentImpl.java:748) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.ApplicationMgrImpl.stateChanged(ApplicationMgrImpl.java:1075) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectEvent(DeployedApplicationImpl.java:1302) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.DeployedModuleImpl.setState(DeployedModuleImpl.java:221) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl.java:607) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedApplicationImpl.java:944) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(ApplicationMgrImpl.java:726) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:2048) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.start(CompositionUnitMgrImpl.java:441) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.CompositionUnitImpl.start(CompositionUnitImpl.java:123) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.start(CompositionUnitMgrImpl.java:384) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl.access$300(CompositionUnitMgrImpl.java:112) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.runtime.component.CompositionUnitMgrImpl$CUInitializer.run(CompositionUnitMgrImpl.java:951) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.wsspi.runtime.component.WsComponentImpl$_AsynchInitializer.run(WsComponentImpl.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> 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.services.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> 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.server.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> 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(JPAPUnitInfo.java:1369) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerPool(JPAPUnitInfo.java:1577) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.jpa.management.JPATxEntityManager.<init>(JPATxEntityManager.java:156) 
>>> 
>>> at 
>>> 
com.ibm.ws.jpa.management.JPAComponentImpl.getEntityManager(JPAComponentImpl.java:1053) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.util.JPAJndiLookupObjectFactory.getObjectInstance(JPAJndiLookupObjectFactory.java:151) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.wsspi.injectionengine.InjectionBinding.getInjectionObject(InjectionBinding.java:659) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.wsspi.injectionengine.InjectionTargetField.inject(InjectionTargetField.java:245) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.injectionengine.InjectionEngineImpl.inject(InjectionEngineImpl.java:620) 
>>> 
>>> 
>>> at com.ibm.ejs.container.StatelessBeanO.initialize(StatelessBeanO.java:287) 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.CMStatelessBeanOFactory.create(CMStatelessBeanOFactory.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(UncachedActivationStrategy.java:84) 
>>> 
>>> 
>>> at com.ibm.ejs.container.activator.Activator.activateBean(Activator.java:599)
>>> 
>>> at 
com.ibm.ejs.container.EJSContainer.preInvokeActivate(EJSContainer.java:3964) 
>>> 
>>> at com.ibm.ejs.container.EJSContainer.EjbPreInvoke(EJSContainer.java:3349) 
>>> 
>>> at 
>>> 
biz.wss.interfaces.services.fx.pricing.fotinfo.EJSLocal0SLFotDAOEJB_73eeba3d.getConfig(EJSLocal0SLFotDAOEJB_73eeba3d.java) 
>>> 
>>> 
>>> at 
>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotRepository.initialise(FotRepository.java:72) 
>>> 
>>> 
>>> at 
>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.start(FotInitialiser.java:80) 
>>> 
>>> 
>>> at 
>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.onMessage(FotInitialiser.java:65) 
>>> 
>>> 
>>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
>>> 
>>> at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60) 
>>> 
>>> at 
>>> 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.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(InvocationContextImpl.java:586) 
>>> 
>>> 
>>> at 
>>> 
biz.wss.server.services.logging.analysis.MethodTimerInterceptor.intercept(MethodTimerInterceptor.java:161) 
>>> 
>>> 
>>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
>>> 
>>> at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60) 
>>> 
>>> at 
>>> 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) 
>>> 
>>> 
>>> at java.lang.reflect.Method.invoke(Method.java:611) 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.interceptors.InterceptorProxy.invokeInterceptor(InterceptorProxy.java:227) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(InvocationContextImpl.java:566) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.interceptors.InvocationContextImpl.doAroundInvoke(InvocationContextImpl.java:217) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.MessageEndpointHandler.invokeMdbMethod(MessageEndpointHandler.java:1080) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.MessageEndpointHandler.invoke(MessageEndpointHandler.java:778) 
>>> 
>>> 
>>> at $Proxy42.onMessage(Unknown Source) 
>>> 
>>> at 
>>> 
com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl.invokeEndpoint(JmsJcaEndpointInvokerImpl.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(JPAPUnitInfo.java:1369) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.jpa.management.JPAPUnitInfo.getEntityManagerPool(JPAPUnitInfo.java:1577) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.jpa.management.JPATxEntityManager.<init>(JPATxEntityManager.java:156) 
>>> 
>>> at 
>>> 
com.ibm.ws.jpa.management.JPAComponentImpl.getEntityManager(JPAComponentImpl.java:1053) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.util.JPAJndiLookupObjectFactory.getObjectInstance(JPAJndiLookupObjectFactory.java:151) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.wsspi.injectionengine.InjectionBinding.getInjectionObject(InjectionBinding.java:659) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.wsspi.injectionengine.InjectionTargetField.inject(InjectionTargetField.java:245) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ws.injectionengine.InjectionEngineImpl.inject(InjectionEngineImpl.java:620) 
>>> 
>>> 
>>> at com.ibm.ejs.container.StatelessBeanO.initialize(StatelessBeanO.java:287) 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.CMStatelessBeanOFactory.create(CMStatelessBeanOFactory.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(UncachedActivationStrategy.java:84) 
>>> 
>>> 
>>> at com.ibm.ejs.container.activator.Activator.activateBean(Activator.java:599)
>>> 
>>> at 
com.ibm.ejs.container.EJSContainer.preInvokeActivate(EJSContainer.java:3964) 
>>> 
>>> at com.ibm.ejs.container.EJSContainer.EjbPreInvoke(EJSContainer.java:3349) 
>>> 
>>> at 
>>> 
biz.wss.interfaces.services.fx.pricing.fotinfo.EJSLocal0SLFotDAOEJB_73eeba3d.getConfig(EJSLocal0SLFotDAOEJB_73eeba3d.java) 
>>> 
>>> 
>>> at 
>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotRepository.initialise(FotRepository.java:72) 
>>> 
>>> 
>>> at 
>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.start(FotInitialiser.java:80) 
>>> 
>>> 
>>> at 
>>> 
biz.wss.server.services.local.fx.pricing.fotinfo.FotInitialiser.onMessage(FotInitialiser.java:65) 
>>> 
>>> 
>>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
>>> 
>>> at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60) 
>>> 
>>> at 
>>> 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.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(InvocationContextImpl.java:586) 
>>> 
>>> 
>>> at 
>>> 
biz.wss.server.services.logging.analysis.MethodTimerInterceptor.intercept(MethodTimerInterceptor.java:161) 
>>> 
>>> 
>>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
>>> 
>>> at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60) 
>>> 
>>> at 
>>> 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) 
>>> 
>>> 
>>> at java.lang.reflect.Method.invoke(Method.java:611) 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.interceptors.InterceptorProxy.invokeInterceptor(InterceptorProxy.java:227) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.interceptors.InvocationContextImpl.proceed(InvocationContextImpl.java:566) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.interceptors.InvocationContextImpl.doAroundInvoke(InvocationContextImpl.java:217) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.MessageEndpointHandler.invokeMdbMethod(MessageEndpointHandler.java:1080) 
>>> 
>>> 
>>> at 
>>> 
com.ibm.ejs.container.MessageEndpointHandler.invoke(MessageEndpointHandler.java:778) 
>>> 
>>> 
>>> at $Proxy42.onMessage(Unknown Source) 
>>> 
>>> at 
>>> 
com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl.invokeEndpoint(JmsJcaEndpointInvokerImpl.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.InstrumentClassLimitAudit]. 
>>> 
>>> 
>>> *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.auditFields.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(JPQLException.java:457) 
>>> 
>>> 
>>> at 
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.java:87) 
>>> 
>>> at 
org.eclipse.persistence.internal.jpa.parsing.DotNode.validate(DotNode.java: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]> *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.DataElementGroupAudit]. 
>>> 
>>> 
>>> > 
>>> 
>>> > 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:[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> 
>>> 
>>> > 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:[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:[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> 
>>> 
>>> > 
>>> 
>>> > > 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> 
>>> 
>>> > 
>>> 
>>> > >> 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> 
>>> 
>>> > 
>>> 
>>> > > 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> 
>>> 
>>> > 
>>> 
>>> > > 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> 
>>> 
>>> > 
>>> 
>>> > > 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> 
>>> 
>>> > 
>>> 
>>> > 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 <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 <mailto:eclipselink-users@xxxxxxxxxxx> 
>>> 
>>> > https://dev.eclipse.org/mailman/listinfo/eclipselink-users 
>>> 
>>> _______________________________________________ 
>>> 
>>> eclipselink-users mailing list 
>>> 
>>> 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