EJB2.0 issue on weblogic server 8.1 sp4

We are doing some ejb2.0 development on weblogic 8.1 sp4, and We have noticed some unusual and undesirable behavior with CMR.
The following session bean code is used to define a Many-Many relationship between different entity beans in the same EJB using CMR.
The method does the following:
1. Gets the existing Collection of parents EJBs for the child EJB.
2. Checks that the new parent EJB is not in the existing parents Collection
3. Adds the new parent to the Collection and finally sets the parents Collections for the child EJB.
public static void addChild(EntityHandle a_parent, EntityHandle a_child)
throws TrackingException
TrackedEntityLocal parent = null;
TrackedEntityLocal child = null;
parent = getEntity(a_parent);
child = getEntity(a_child);
Collection parents = child.getParents();
if (!containsEJB(parents, parent)) // return true if parent already exists in collection parents.
parents.add(parent);
child.setParents(parents);
In the problem scenario we are creating the child and its parent entities in the same transaction.
We then define the raltionships by adding parents to the same child EJB on the client side within the same transaction (that created the EJBs) like this:
addChild( parentOne, child);
addChild( parentTwo, child);
addChild( parentThree, child);
I expect 3 records in the CMR EJB table entity_relationship but I end up with 6 records in table entity_relationship like this.
parentOne,child
parentOne,child
parentTwo,child
parentOne,child
parentTwo,child
parentThree,child
What seems to be happening is that these EJB relationships are being duplicated in the EJB cache which means that when the container persists the relationships it breaks a unique constraint that is defined in Oracle.
It seems that each time I call child.getParents() I get a copy of the bean's current parent relationships in the cache (which I then add one new parent to).
Even though I set the parent Collection back into the bean (which i would expect to replace the existing Collection) at persist time the container seems to attempt to persist 3 distinct Collections.
We only seem to get this problem if the parent entity itself has not yet been persisted.
If the parent EJBs have already been created in table entity beforehand, we only get 3 relationships in table entity_relationship.
parentOne,child
parentTwo,child
parentThree,child
Anybody has any idea what's going on here? thanks a million.
EJB schema below:
both parent and child are from one table:entity.
CREATE TABLE entity
( id INTEGER NOT NULL PRIMARY KEY,
type_id INTEGER NOT NULL
CONSTRAINT entity_FK
REFERENCES entity_type(id),
orig_comp_id INTEGER NOT NULL
CONSTRAINT entity_FK2
REFERENCES component(id)
entity_relationship defines the relation between parent and child
CREATE TABLE entity_relationship
( end1_id INTEGER NOT NULL
CONSTRAINT entity_relationship_FK
REFERENCES entity(id),
end2_id INTEGER NOT NULL
CONSTRAINT entity_relationship_FK2
REFERENCES entity(id),
type_id INTEGER DEFAULT(1)
NOT NULL
CONSTRAINT entity_relationship_FK3
REFERENCES entity_rel_type(id),
CONSTRAINT entity_relationship_PK PRIMARY KEY(end1_id,end2_id,type_id)
EJB descriptors given below:
============================================ejb-jar.xml===============================================
<entity>
<ejb-name>TrackedEntityEJB</ejb-name>
<local-home>uk.police.pnn.psni.eai.bcomp.tracking.entity.TrackedEntityHomeLocal</local-home>
<local>uk.police.pnn.psni.eai.bcomp.tracking.entity.TrackedEntityLocal</local>
<ejb-class>uk.police.pnn.psni.eai.bcomp.tracking.entity.TrackedEntityBean</ejb-class>
<persistence-type>Container</persistence-type>
<prim-key-class>java.lang.Integer</prim-key-class>
<reentrant>False</reentrant>
<cmp-version>2.x</cmp-version>
<abstract-schema-name>entity</abstract-schema-name>
<cmp-field>
<field-name>id</field-name>
</cmp-field>
<primkey-field>id</primkey-field>
<security-identity>
<use-caller-identity/>
</security-identity>
</entity>
<ejb-relation>
<ejb-relation-name>entity-entity</ejb-relation-name>
<ejb-relationship-role>
<ejb-relationship-role-name>Entity-has-Parents</ejb-relationship-role-name>
<multiplicity>Many</multiplicity>
<relationship-role-source>
<ejb-name>TrackedEntityEJB</ejb-name>
</relationship-role-source>
<cmr-field>
<cmr-field-name>parents</cmr-field-name>
<cmr-field-type>java.util.Collection</cmr-field-type>
</cmr-field>
</ejb-relationship-role>
<ejb-relationship-role>
<ejb-relationship-role-name>Entity-has-Children</ejb-relationship-role-name>
<multiplicity>Many</multiplicity>
<relationship-role-source>
<ejb-name>TrackedEntityEJB</ejb-name>
</relationship-role-source>
<cmr-field>
<cmr-field-name>children</cmr-field-name>
<cmr-field-type>java.util.Collection</cmr-field-type>
</cmr-field>
</ejb-relationship-role>
</ejb-relation>
<container-transaction>
<method>
<ejb-name>TrackedEntityEJB</ejb-name>
<method-name>*</method-name>
</method>
<trans-attribute>Supports</trans-attribute>
</container-transaction>
==========================weblogic-ejb-jar.xml===================================================
<weblogic-enterprise-bean>
<ejb-name>TrackedEntityEJB</ejb-name>
<entity-descriptor>
<persistence>
<persistence-use>
<type-identifier>WebLogic_CMP_RDBMS</type-identifier>
<type-version>6.0</type-version>
<type-storage>META-INF/weblogic-cmp-rdbms-jar.xml</type-storage>
</persistence-use>
</persistence>
</entity-descriptor>
<enable-call-by-reference>true</enable-call-by-reference>
<local-jndi-name>bcomp.tracking.entity.TrackedEntityHomeLocal</local-jndi-name>
</weblogic-enterprise-bean>
=============================weblogic-cmp-rdbms-jar.xml==========================================
<weblogic-rdbms-relation>
<relation-name>entity-entity</relation-name>
<table-name>entity_relationship</table-name>
<weblogic-relationship-role>
<relationship-role-name>Entity-has-Parents</relationship-role-name>
<relationship-role-map>
<column-map>
<foreign-key-column>end2_id</foreign-key-column>
<key-column>id</key-column>
</column-map>
</relationship-role-map>
</weblogic-relationship-role>
<weblogic-relationship-role>
<relationship-role-name>Entity-has-Children</relationship-role-name>
<relationship-role-map>
<column-map>
<foreign-key-column>end1_id</foreign-key-column>
<key-column>id</key-column>
</column-map>
</relationship-role-map>
</weblogic-relationship-role>
</weblogic-rdbms-relation>
Edited by: user10185877 on 26-Aug-2008 02:06

I am also wondering what the status of this problem is? It is preventing us from going to SP4.
_Mike                                                                                                                                                                                                                                                                                           

Similar Messages

  • Running Weblogic Server 7.0 SP4 using JDK 1.4

    Is it possible to run Weblogic Server 7.0 SP4 with a different JRE than the one
    that ships with 7.0 SP4. I am having issues with a bug in JDK 1.3.1 which when
    I run under JBuilder X using 1.4 is not there. ANy help as to how I go about
    doing this would be welcomed.
    Thanks
    Justin

    Yes,
    The JDK is just the Sun JDK...nothing special. You may upgrade minor versions quite safely by dowloading later one at Sun website and pointting your "JAVA_HOME" at it.
    I would not jump to 1.4, as changes in java language may impact.

  • Issue in Weblogic Server - Server Stops abruptly

    Hi All,
    I am facing an issue with Weblogic server(8.1). One of the managed servers stops abruptly. Server run for some days. After 5 or 6 days it stops without giving any log message. Admin(mgt server) and this managed server are running in the same box(AIX Environment). Below is the only log I got. Any idea why it is happening?
    According to the BEA Message it may be due to network problem. Since both the servers are running in same box, i don't think it is network issue.
    Can anyone please help me on this? - thanks in advance
    Log Trace Message:
    ==================
    <AF[196]: Allocation Failure. need 528 bytes, 67173345 ms since last AF>
    <AF[196]: managing allocation failure, action=1 (0/1040390840) (32611304/33283912)>
    <GC(197): freeing class jsp_servlet._ofr._invoice._shipper._jsp.__exceptioninvoicelist(302453c8)>
    <GC(197): freeing class jsp_servlet._lcom._common._jsp.__page_navigation(3024ecc8)>
    <Dec 21, 2005 10:47:18 PM KST> <Warning> <Management> <BEA-141138> <Managed Server ofrserver is disconnected from the ad
    min server. This may be either due to a managed server getting temporarily partitioned or the managed server process exi
    ting.>
    <GC(197): freeing class jsp_servlet._ofr._filter._jsp.__filterdetails(30252718)>
    <GC(197): freeing class jsp_servlet._lcom._admin._jsp.__devtools(3040f898)>
    <GC(197): freeing class jsp_servlet._lcom._admin._util._jsp.__devtoolslogin(3040f260)>
    <GC(197): freeing class jsp_servlet._lcom._admin._util._jsp.__processdevtoolslogin(30411870)>
    <GC(197): freeing class jsp_servlet._ofr._admin._util._jsp.__xmlcommmanagerimport(30413e58)>
    <GC(197): freeing class jsp_servlet._ofr._admin._util._jsp.__processxmlcommmanagerimport(30414a88)>
    <GC(197): unloaded and freed 8 classes>
    <GC(197): GC cycle started Wed Dec 21 22:47:23 2005
    <GC(197): freed 721499624 bytes, 70% free (754110928/1073674752), in 263157 ms>
    <GC(197): mark: 248258 ms, sweep: 1857 ms, compact: 13042 ms>
    <GC(197): refs: soft 0 (age >= 32), weak 0, final 27363, phantom 0>
    <GC(197): moved 0 objects, 0 bytes, IC reason=14>
    <GC(197): stop threads time: 1356, start threads time: 19>
    <AF[196]: completed in 282883 ms>
    Thanks,
    Shanmuga perumal
    [email protected]

    I think you should be able to follow the same steps but whenever you come across Domain B in the instructions, just substitute the values for Domain A. Because it is the same domain you may not even have to go through some of the certificate steps. If you have questions I suggest you post them in the WLS Security forum.
    WebLogic Server - Security

  • Where can i get weblogic server 6.1 sp4 11/08/2002 21:50:43 #221641

    Hi everybody,
    from where can I download weblogic server 6.1 sp4 11/08/2002 21:50:43 #221641software?
    cheers

    Hi Praveen,
    You're better off consulting the weblogic website for this kind of information.
    Regards.
    Ken
    Kenneth Saks
    J2EE SDK Team
    SUN Microsystems

  • Upgrading weblogic server 7.0 sp4 JDK issue

    I have amended the C:\bea\weblogic700\server\bin\startWLS.cmd and C:\bea\weblogic700\server\bin\setWLSEnv.cmd to point to a jdk.1.4.1_07 install and I get the following error when I try starting the server. I have done the same on another machine some time ago and I am sure it was relatively straight forward. I may have well forgot another step that needs to be done.
    Starting WebLogic Server...
    <20-Aug-2004 08:42:54 BST> <Notice> <Management> <140005> <Loading configuration
    C:\bea\user_projects\fastRepair\.\config.xml>
    <20-Aug-2004 08:43:01 BST> <Critical> <WebLogicServer> <000364> <Server failed d
    uring initialization. Exception:java.net.UnknownHostException: 10.234.213.236
    java.net.UnknownHostException: 10.234.213.236
    at java.net.InetAddress.getAllByName0(InetAddress.java:1004)
    at java.net.InetAddress.getAllByName0(InetAddress.java:969)
    at java.net.InetAddress.getAllByName(InetAddress.java:963)
    at java.net.InetAddress.getByName(InetAddress.java:883)
    at weblogic.rjvm.JVMID.setLocalID(JVMID.java:144)
    at weblogic.t3.srvr.T3Srvr.setJVMID(T3Srvr.java:525)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:684)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    Any help welcomed.
    Justin

    If you are running SSL, you may be encountering the same problem as in http://forums.bea.com/bea/thread.jspa?threadID=200006577&tstart=15

  • Solution for starting weblogic server 6.1 SP4 after changing of JVM to JDK 1.4 in startweblogic.cmd file

    Hi,
    I am using WebLogic 6.1 SP4 on a windows 2000 system.
    I have changed the JAVA_HOME variable in startweblogic.cmd file to point to j2sdk1.4.0_01
    instead of the default. I have set the weblogic startup password also in the WLS_PW
    variable in startweblogic.cmd file. After this change when i start the server,
    i get the following stack trace error and the server does not start up at all.
    Stack trace:
    java.lang.SecurityException: Unable to locate a login configuration
    at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:97)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at java.lang.Class.newInstance0(Class.java:296)
    at java.lang.Class.newInstance(Class.java:249)
    at javax.security.auth.login.Configuration$3.run(Configuration.java:221)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.Configuration.getConfiguration(Configuratio
    n.java:215)
    at javax.security.auth.login.LoginContext$1.run(LoginContext.java:170)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.init(LoginContext.java:167)
    at javax.security.auth.login.LoginContext.<init>(LoginContext.java:393)
    at weblogic.security.internal.ServerAuthenticate.main(ServerAuthenticate
    .java:78)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:210)
    at weblogic.Server.main(Server.java:35)
    Caused by: java.io.IOException: Unable to locate a login configuration
    at com.sun.security.auth.login.ConfigFile.init(ConfigFile.java:206)
    at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:95)
    For the above problem there is a workaround suggested at this link
    http://www.genuitec.com/products/JDK14_WLS61.pdf
    The same does not happen in WebLogic 7.0 even after i change the default JAVA_HOME
    variable . It starts without any problem.
    So is there any solution given by WebLogic . If so please do let me know.
    Thanks in advance
    Raj Kumar

    Hi,
    I am using WebLogic 6.1 SP4 on a windows 2000 system.
    I have changed the JAVA_HOME variable in startweblogic.cmd file to point to j2sdk1.4.0_01
    instead of the default. I have set the weblogic startup password also in the WLS_PW
    variable in startweblogic.cmd file. After this change when i start the server,
    i get the following stack trace error and the server does not start up at all.
    Stack trace:
    java.lang.SecurityException: Unable to locate a login configuration
    at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:97)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at java.lang.Class.newInstance0(Class.java:296)
    at java.lang.Class.newInstance(Class.java:249)
    at javax.security.auth.login.Configuration$3.run(Configuration.java:221)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.Configuration.getConfiguration(Configuratio
    n.java:215)
    at javax.security.auth.login.LoginContext$1.run(LoginContext.java:170)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.init(LoginContext.java:167)
    at javax.security.auth.login.LoginContext.<init>(LoginContext.java:393)
    at weblogic.security.internal.ServerAuthenticate.main(ServerAuthenticate
    .java:78)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:210)
    at weblogic.Server.main(Server.java:35)
    Caused by: java.io.IOException: Unable to locate a login configuration
    at com.sun.security.auth.login.ConfigFile.init(ConfigFile.java:206)
    at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:95)
    For the above problem there is a workaround suggested at this link
    http://www.genuitec.com/products/JDK14_WLS61.pdf
    The same does not happen in WebLogic 7.0 even after i change the default JAVA_HOME
    variable . It starts without any problem.
    So is there any solution given by WebLogic . If so please do let me know.
    Thanks in advance
    Raj Kumar

  • Security issue between weblogic server

    Hello,
    Here is security issue that we are facing.
    Here is setup
    Environment 1
    Admin server say "env1admin"
    Managed Weblogic Server say "env1managed"
    We deployed an EJB called HelloEJB in env1managed server and this has an api
    sayHello(). HelloClient is a client to HelloEJB.
    S/w Weblogic 6.1 sp3
    Environment 2
    Admin server say "env2admin"
    Managed Weblogic Server say "env2managed"
    We deployed an EJB called ServiceEJB in env2managed server and this has an api
    serviceRequest(). We use weblogic role based security and restrict access to this
    api by user HelloEJB.
    s/w Weblogic 6.1 sp3
    Here is how the system works:
    We start the env2admin, env2managed (ServiceEJB is which is a Stateless session
    EJB deployed in env2Managed)
    We start the env1admin and env1managed (HelloEJB(which is a Stateless session
    EJB is deployed in env1Managed)
    Test case:
    1)HelloClient invokes HelloEJB api sayHello().
    2)Now at this point in ejbCreate() at HelloEJB() end we get a reference to ServiceEJB
    using Jndi and the context is never closed ). HelloEJB then calls serviceRequest()
    api in ServiceEJB. Then gets back a response and then returns response to HelloClient.
    Now if we repeat the above testcase.
    After step1 in step2 HelloEJB though has all the permissions to invoke api on
    ServiceEJB gets an SecurityException.
    Question is why doe this happen. Only way HelloEJB can make api calls to serviceEJB
    is by making a lookup() every single time. Which is very expensive. I looked at
    documents what they say is leave the context open and never close it. Though I
    am doing that I am getting this exception.
    Any thoughts ?
    Thanks in advance,
    Vijay

    Here are the details of exception stack trace:
    java.rmi.AccessException: Security violation: insufficient permission to access
    method; nested exception is:
    java.lang.SecurityException: Security violation: insufficient permission
    to access method
    java.lang.SecurityException: Security violation: insufficient permission to access
    method
    at weblogic.ejb20.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:92)
    at weblogic.ejb20.internal.StatelessEJBObject.preInvoke(StatelessEJBObject.java:63)
    at service.ServiceBean_nr0s19_EOImpl.sendServiceRequest(ServiceBean_nr0s19_EOImpl.java:25)
    at service.ServiceBean_nr0s19_EOImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:298)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:267)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    ; nested exception is:
    Vijay
    "Vijay" <[email protected]> wrote:
    >
    Hello,
    Here is security issue that we are facing.
    Here is setup
    Environment 1
    Admin server say "env1admin"
    Managed Weblogic Server say "env1managed"
    We deployed an EJB called HelloEJB in env1managed server and this has
    an api
    sayHello(). HelloClient is a client to HelloEJB.
    S/w Weblogic 6.1 sp3
    Environment 2
    Admin server say "env2admin"
    Managed Weblogic Server say "env2managed"
    We deployed an EJB called ServiceEJB in env2managed server and this has
    an api
    serviceRequest(). We use weblogic role based security and restrict access
    to this
    api by user HelloEJB.
    s/w Weblogic 6.1 sp3
    Here is how the system works:
    We start the env2admin, env2managed (ServiceEJB is which is a Stateless
    session
    EJB deployed in env2Managed)
    We start the env1admin and env1managed (HelloEJB(which is a Stateless
    session
    EJB is deployed in env1Managed)
    Test case:
    1)HelloClient invokes HelloEJB api sayHello().
    2)Now at this point in ejbCreate() at HelloEJB() end we get a reference
    to ServiceEJB
    using Jndi and the context is never closed ). HelloEJB then calls serviceRequest()
    api in ServiceEJB. Then gets back a response and then returns response
    to HelloClient.
    Now if we repeat the above testcase.
    After step1 in step2 HelloEJB though has all the permissions to invoke
    api on
    ServiceEJB gets an SecurityException.
    Question is why doe this happen. Only way HelloEJB can make api calls
    to serviceEJB
    is by making a lookup() every single time. Which is very expensive. I
    looked at
    documents what they say is leave the context open and never close it.
    Though I
    am doing that I am getting this exception.
    Any thoughts ?
    Thanks in advance,
    Vijay

  • BPM engine deployment issue on Weblogic server

    Hello,
    I read all threads related to this issue, but I am getting mad.
    Yesterday:
    I have successfully deployed BPM 10.3.1 + certified WLS 10.3.0 on Linux Redhat + Oracle
    I have successfully created a BPM configuration with the BPM Admin configuration wizard.
    I could successfully access to BPM workspace admin and BPM workskape.
    Today:
    I have restarted weblogic server and BPM, the engine is not starting, with an error raised in another thread. Below is the most detailed message:
    [EJB:011025]The XML parser encountered an error in your deployment descriptor. Please ensure that your DOCTYPE is correct. You may wish to compare your deployment descriptors with the WebLogic Server examples to ensure the format is correct. The error was:
    ParseError at [row,col]:[5,148]
    Message: Tried all: '1' addresses, but could not connect over HTTP to server: 'www.bea.com', port: '80'..
    weblogic.application.ModuleException: Exception preparing module: EJBModule(engine-soapocengine.jar)
    [EJB:011025]The XML parser encountered an error in your deployment descriptor. Please ensure that your DOCTYPE is correct. You may wish to compare your deployment descriptors with the WebLogic Server examples to ensure the format is correct. The error was:
    ParseError at [row,col]:[5,148]
    Message: Tried all: '1' addresses, but could not connect over HTTP to server: 'www.bea.com', port: '80'.
    at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:452)
    My server is not connected to the Internet, and will probably not. But it could not access the internet yesterday (before restart) neither...
    a reply to another thread says that a patch coprrects this issue. which one is it? please note I cannot download it from the server... I have downloaded all public patches for WLS 10.3 for Linux (ZIP files), but the BSU tool refused to detect them... how should I proceed?
    Thank you for your help
    Hervé

    Hi,
    I have downloaded weblogic from oracle downloads 2 weeks back. i thought all the patches would be installed?? But am facing the same issue when deploying engine ear..
    Do you think I need to install the above patch ???
    A month back I downloaded ( might be by March) Weblogic. I was not facing any issue. But with the new download am facing the issue.
    Kindly suggest.
    Thanks,
    Charan

  • Issues starting weblogic server

    I get the following error in my Jdeveloper console whenever I try starting the webLogic server.
    <AnnotatedLogger> <logWithThrowable> JAXB marshaller creation fails due to underlying error "javax.xml.bind.PropertyException: property "com.sun.xml.bind.namespacePrefixMapper" must be an instance of type com.sun.xml.bind.marshaller.NamespacePrefixMapper, not oracle.wsm.resmgmt.ResourceMarshaller$ResourceNamespacePrefixMapper".
    javax.xml.bind.PropertyException: property "com.sun.xml.bind.namespacePrefixMapper" must be an instance of type com.sun.xml.bind.marshaller.NamespacePrefixMapper, not oracle.wsm.resmgmt.ResourceMarshaller$ResourceNamespacePrefixMapper
         at com.sun.xml.bind.v2.runtime.MarshallerImpl.setProperty(MarshallerImpl.java:502)
         at oracle.wsm.resmgmt.ResourceMarshaller$1.run(ResourceMarshaller.java:297)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.wsm.resmgmt.ResourceMarshaller.<init>(ResourceMarshaller.java:285)
         at oracle.wsm.resmgmt.ResourceMarshaller.<init>(ResourceMarshaller.java:263)
         at oracle.wsm.policymanager.accessor.BeanAccessor.buildIndexes(BeanAccessor.java:477)
         at oracle.wsm.policymanager.accessor.BeanAccessor.updateCache(BeanAccessor.java:1647)
         at oracle.wsm.policymanager.accessor.BeanAccessor.fetchDocuments(BeanAccessor.java:989)
         at oracle.wsm.policymanager.accessor.BeanAccessor.access$400(BeanAccessor.java:133)
         at oracle.wsm.policymanager.accessor.BeanAccessor$MissingDocsFetcherTask.run(BeanAccessor.java:208)
         at oracle.wsm.common.scheduler.TimerManagerWrapper$TimerListenerImpl.timerExpired(TimerManagerWrapper.java:57)
         at weblogic.timers.internal.commonj.ListenerWrap.timerExpired(ListenerWrap.java:37)
         at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    <WsmMessageLogger> <logSevere> Failed to retrieve requested documents due to underlying error "javax.xml.bind.PropertyException: property "com.sun.xml.bind.namespac

    go to the below loacation and remove the system folder and try to start weblogic server it will ask to set the login credentials and port number,
    C:\Users\###\AppData\Roaming\JDeveloper
    let us know how it goes...

  • BIBeans internationalization issue with weblogic server 8.1 sp2

    We use oralce bibeans 9.0.4 to develop OLAP web application in Chinsese Simplified environment. When deploy the web application on the embedded OC4J server, everything goes well. All the labels (Line items and image button labels etc. ) of the crosstab is displayed in chinese. but it always display English labels when delploy it on weblogic server V8.1 sp2.
    currently on my web page java.util.Locale.getDefault() return zh_CN
    I have done two things:
    first, add exportCharacterEncoding init param for UIXServlet
    <init-param>
    <param-name>exportCharacterEncoding</param-name>
    <param-value>GBK</param-value>
    </init-param>
    second,Set locale for the BIThinSession instance in jsp file.
    oracle.dss.addins.jspTags.BIThinSession bisession = (oracle.dss.addins.jspTags.BIThinSession) pageContext.findAttribute("SalesBIThinSession");
    bisession.setLocale(Locale.getDefault());
    Is this a bug that bibeans can not locate resource bundles correctly base on the user's specified environment? Is there an invisible environment variable base on which the bibean tags judge to select a resource file and result in this phenomenon?

    The intersting point here is that the application works using an Oracle stack but does not work using an IBM stack. I will contact our development engineers for more information and will post another response when I have a reply.
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • Weblogic Server 8.1 SP4 SSL Problem

    I had a server setup using SSL and x.509 certificates on Weblogic 8.1 SP3. Everything was setup fine and working properly.
    I installed SP4 and I couldnt get the Certificates to work properly. I keeps rejecting the certificate. All the Identity, Trust, and all configurations seem to be identical.
    I get a message
    Could not establish encrypted connection because your certificate was rejected by localhost Error Code: -12271
    Any ideas on what the problem could be.

    I am also wondering what the status of this problem is? It is preventing us from going to SP4.
    _Mike                                                                                                                                                                                                                                                                                           

  • Weblogic Server 8.1 SP4 "Deploy" tasks

    Since upgrading to SP4 on WL Server 8.1 the deployment task for our application is now taking twice as long as it did in SP2. Can anyone advise if there are any known issues with deployments.

    I am also wondering what the status of this problem is? It is preventing us from going to SP4.
    _Mike                                                                                                                                                                                                                                                                                           

  • TopLink issues using Weblogic Server 8.1 SP3 and MAC OS X with Oracle 9i

    Hi, I have successfully deployed my EJB (entity bean) on WLS 8.1 (the generic version) on Mac OS X. I also have installed Apple jdk 1.4.2 and everything seems to be ok. The server came up without any problem and can connect to my Oracle DB. I verify this from Weblogic console. However, when I try to access the bean (create/find), I got this AbstractMethodError exception. Can anyone help ?
    Thanks for any help/pointer you can provide.
    Regards,
    Message = Could not create network. javax.ejb.TransactionRolledbackLocalExceptio
    n: EJB Exception: : java.lang.AbstractMethodError: oracle.toplink.internal.ejb.c
    mp.wls.Wls81BeanManager.localCreate(Lweblogic/ejb20/internal/InvocationWrapper;L
    java/lang/reflect/Method;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljavax/ej
    b/EJBLocalObject;
    at weblogic.ejb20.internal.EntityEJBLocalHome.create(EntityEJBLocalHome.
    java:170)
    at com.maranti.msm.server.objectRepository.Network_kmp5vn_LocalHomeImpl.
    create(Network_kmp5vn_LocalHomeImpl.java:151)
    at com.maranti.msm.server.topologyManagement.TopologyManagerEJB.createNe
    tworkBean(TopologyManagerEJB.java:157)
    at com.maranti.msm.server.topologyManagement.TopologyManagerEJB.getRootN
    etwork(TopologyManagerEJB.java:347)
    at com.maranti.msm.server.topologyManagement.TopologyManager_363sal_EOIm
    pl.getRootNetwork(TopologyManager_363sal_EOImpl.java:1558)
    at com.maranti.msm.server.topologyManagement.TopologyManager_363sal_EOIm
    pl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerR
    ef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.jav
    a:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest
    .java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)

    Any idea, anyone ?

  • Problems Starting Weblogic  Server for Tutorials (Fresh install)...

    Hi guys, need a little help here.
    I'm trying to startup Weblogic Server for Java Control Tutorial application and I get all sorts of errors, mostly seeming to deal with JMS/JNDI network stuff. Here's the error dump I get:
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
    Starting WLS with line:
    C:\bea\JDK142~1\bin\java -client -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket
    ,address=8453,server=y,suspend=n -Djava.compiler=NONE -Xms256m -Xmx256m -XX:Com
    pileThreshold=8000 -XX:PermSize=32m -XX:MaxPermSize=128m -Xverify:none -ea -da
    :com.bea... -da:javelin... -da:weblogic... -Dplatform.home=C:\bea\WEBLOG~1 -Dwls
    .home=C:\bea\WEBLOG~1\server -Dwli.home=C:\bea\WEBLOG~1\integration -Dlog4j.con
    figuration=file:C:\bea\WEBLOG~1\common\lib\workshopLogCfg.xml -Dweblogic.managem
    ent.discover=true -Dweblogic.ProductionModeEnabled= -Dweblogic.security.SSL.ign
    oreHostnameVerify=false -Dwlw.iterativeDev=true -Dwlw.testConsole=true -Dwlw.log
    ErrorsToConsole=true -Dweblogic.Name=cgServer -Djava.security.policy=C:\bea\WEBL
    OG~1\server\lib\weblogic.policy weblogic.Server
    <Oct 30, 2005 2:33:31 PM PST> <Info> <WebLogicServer> <BEA-000377> <Starting Web
    Logic Server with Java HotSpot(TM) Client VM Version 1.4.2_05-b04 from Sun Micro
    systems Inc.>
    <Oct 30, 2005 2:33:31 PM PST> <Info> <Configuration Management> <BEA-150016> <Th
    is server is being started as the administration server.>
    <Oct 30, 2005 2:33:31 PM PST> <Info> <Management> <BEA-141107> <Version: WebLogi
    c Server 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647
    WebLogic XMLX Module 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647
    WebLogic Server 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647
    WebLogic Server 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647
    WebLogic Integration 8.1 SP4 Tue Nov 30 10:34:16 PST 2004 471877>
    <Oct 30, 2005 2:33:32 PM PST> <Notice> <Management> <BEA-140005> <Loading domain
    configuration from configuration repository at C:\bea\WEBLOG~1\samples\domains\
    workshop\.\config.xml.>
    <Oct 30, 2005 2:33:33 PM PST> <Notice> <Log Management> <BEA-170019> <The server
    log file C:\bea\weblogic81\samples\domains\workshop\cgServer\cgServer.log is op
    ened. All server side log events will be written to this file.>
    <Oct 30, 2005 2:33:34 PM PST> <Notice> <Security> <BEA-090082> <Security initial
    izing using security realm myrealm.>
    <Oct 30, 2005 2:33:34 PM PST> <Notice> <WebLogicServer> <BEA-000327> <Starting W
    ebLogic Admin Server "cgServer" for domain "workshop">
    <Oct 30, 2005 2:33:38 PM PST> <Warning> <JDBC> <BEA-001129> <Received exception
    while creating connection for pool "cgJMSPool-nonXA": SQL-server rejected establ
    ishment of SQL-connection. Pointbase Server may not be running on localhost at p
    ort 9093.>
    <Oct 30, 2005 2:33:40 PM PST> <Warning> <JDBC> <BEA-001129> <Received exception
    while creating connection for pool "cgJMSPool-nonXA": SQL-server rejected establ
    ishment of SQL-connection. Pointbase Server may not be running on localhost at p
    ort 9093.>
    <Oct 30, 2005 2:33:42 PM PST> <Warning> <JDBC> <BEA-001129> <Received exception
    while creating connection for pool "cgJMSPool-nonXA": SQL-server rejected establ
    ishment of SQL-connection. Pointbase Server may not be running on localhost at p
    ort 9093.>
    <Oct 30, 2005 2:33:44 PM PST> <Warning> <JDBC> <BEA-001129> <Received exception
    while creating connection for pool "cgJMSPool-nonXA": SQL-server rejected establ
    ishment of SQL-connection. Pointbase Server may not be running on localhost at p
    ort 9093.>
    <Oct 30, 2005 2:33:46 PM PST> <Warning> <JDBC> <BEA-001129> <Received exception
    while creating connection for pool "cgJMSPool-nonXA": SQL-server rejected establ
    ishment of SQL-connection. Pointbase Server may not be running on localhost at p
    ort 9093.>
    <Oct 30, 2005 2:33:47 PM PST> <Error> <JDBC> <BEA-001150> <Connection Pool "cgJM
    SPool-nonXA" deployment failed with the following error: 0:Could not create pool
    connection. The DBMS driver exception was: SQL-server rejected establishment of
    SQL-connection. Pointbase Server may not be running on localhost at port 9093..
    >
    <Oct 30, 2005 2:33:48 PM PST> <Warning> <JDBC> <BEA-001129> <Received exception
    while creating connection for pool "cgPool": SQL-server rejected establishment o
    f SQL-connection. Pointbase Server may not be running on localhost at port 9093.
    >
    <Oct 30, 2005 2:33:50 PM PST> <Warning> <JDBC> <BEA-001129> <Received exception
    while creating connection for pool "cgPool": SQL-server rejected establishment o
    f SQL-connection. Pointbase Server may not be running on localhost at port 9093.
    >
    <Oct 30, 2005 2:33:52 PM PST> <Warning> <JDBC> <BEA-001129> <Received exception
    while creating connection for pool "cgPool": SQL-server rejected establishment o
    f SQL-connection. Pointbase Server may not be running on localhost at port 9093.
    >
    <Oct 30, 2005 2:33:54 PM PST> <Warning> <JDBC> <BEA-001129> <Received exception
    while creating connection for pool "cgPool": SQL-server rejected establishment o
    f SQL-connection. Pointbase Server may not be running on localhost at port 9093.
    >
    <Oct 30, 2005 2:33:56 PM PST> <Warning> <JDBC> <BEA-001129> <Received exception
    while creating connection for pool "cgPool": SQL-server rejected establishment o
    f SQL-connection. Pointbase Server may not be running on localhost at port 9093.
    >
    <Oct 30, 2005 2:33:57 PM PST> <Error> <JDBC> <BEA-001150> <Connection Pool "cgPo
    ol" deployment failed with the following error: 0:Could not create pool connecti
    on. The DBMS driver exception was: SQL-server rejected establishment of SQL-conn
    ection. Pointbase Server may not be running on localhost at port 9093..>
    <Oct 30, 2005 2:33:57 PM PST> <Error> <JDBC> <BEA-001151> <Data Source "cgDataSo
    urce" deployment failed with the following error: DataSource(cgDataSource;cgSamp
    leDataSource) can't be created with non-existent Pool (connection or multi) (cgP
    ool).>
    <Oct 30, 2005 2:33:57 PM PST> <Error> <JDBC> <BEA-001151> <Data Source "cgDataSo
    urce-nonXA" deployment failed with the following error: DataSource(cgDataSource-
    nonXA;weblogic.jdbc.jts.ebusinessPool) can't be created with non-existent Pool (
    connection or multi) (cgJMSPool-nonXA).>
    <Oct 30, 2005 2:33:57 PM PST> <Alert> <JMS> <BEA-040052> <JMSServer "cgJMSServer
    " store failed to open java.io.IOException: JMS JDBC store, connection pool = <c
    gJMSPool-nonXA>, prefix = <weblogic>: connection pool does not exist.
    java.io.IOException: JMS JDBC store, connection pool = <cgJMSPool-nonXA>, prefix
    = <weblogic>: connection pool does not exist
    at weblogic.jms.store.JDBCIOStream.throwIOException(JDBCIOStream.java:48
    8)
    at weblogic.jms.store.JDBCIOStream.checkPool(JDBCIOStream.java:1599)
    at weblogic.jms.store.JDBCIOStream.open(JDBCIOStream.java:548)
    at weblogic.jms.store.JMSStore.open(JMSStore.java:224)
    at weblogic.jms.backend.BEStore.open(BEStore.java:262)
    at weblogic.jms.backend.BEStore.start(BEStore.java:151)
    at weblogic.jms.backend.BackEnd.openStores(BackEnd.java:1171)
    at weblogic.jms.backend.BackEnd.resume(BackEnd.java:1290)
    at weblogic.jms.JMSService.addJMSServer(JMSService.java:2260)
    at weblogic.jms.JMSService.addDeployment(JMSService.java:2031)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Depl
    oymentTarget.java:337)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Dep
    loymentTarget.java:597)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploy
    ments(DeploymentTarget.java:575)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(
    DeploymentTarget.java:241)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:754)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:733)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:509)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    60)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    28)
    at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(Rem
    oteMBeanServerImpl.java:988)
    at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBean
    ServerImpl.java:946)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:954)
    at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanPro
    xy.java:481)
    at weblogic.management.configuration.ServerMBean_Stub.updateDeployments(
    ServerMBean_Stub.java:7691)
    at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployment
    s(SlaveDeployer.java:1304)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.j
    ava:347)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resum
    e(DeploymentManagerServerLifeCycleImpl.java:229)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:966)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
    at weblogic.Server.main(Server.java:32)
    >
    <Oct 30, 2005 2:33:57 PM PST> <Error> <JMS> <BEA-040123> <Failed to start JMS Se
    rver "cgJMSServer" due to weblogic.jms.common.JMSException: JMS can not open sto
    re cgJMSStore.
    weblogic.jms.common.JMSException: JMS can not open store cgJMSStore
    at weblogic.jms.backend.BEStore.start(BEStore.java:163)
    at weblogic.jms.backend.BackEnd.openStores(BackEnd.java:1171)
    at weblogic.jms.backend.BackEnd.resume(BackEnd.java:1290)
    at weblogic.jms.JMSService.addJMSServer(JMSService.java:2260)
    at weblogic.jms.JMSService.addDeployment(JMSService.java:2031)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Depl
    oymentTarget.java:337)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Dep
    loymentTarget.java:597)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploy
    ments(DeploymentTarget.java:575)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(
    DeploymentTarget.java:241)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:754)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:733)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:509)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    60)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    28)
    at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(Rem
    oteMBeanServerImpl.java:988)
    at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBean
    ServerImpl.java:946)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:954)
    at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanPro
    xy.java:481)
    at weblogic.management.configuration.ServerMBean_Stub.updateDeployments(
    ServerMBean_Stub.java:7691)
    at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployment
    s(SlaveDeployer.java:1304)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.j
    ava:347)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resum
    e(DeploymentManagerServerLifeCycleImpl.java:229)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:966)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
    at weblogic.Server.main(Server.java:32)
    Caused by: java.io.IOException: JMS JDBC store, connection pool = <cgJMSPool-non
    XA>, prefix = <weblogic>: connection pool does not exist
    at weblogic.jms.store.JDBCIOStream.throwIOException(JDBCIOStream.java:48
    8)
    at weblogic.jms.store.JDBCIOStream.checkPool(JDBCIOStream.java:1599)
    at weblogic.jms.store.JDBCIOStream.open(JDBCIOStream.java:548)
    at weblogic.jms.store.JMSStore.open(JMSStore.java:224)
    at weblogic.jms.backend.BEStore.open(BEStore.java:262)
    at weblogic.jms.backend.BEStore.start(BEStore.java:151)
    ... 29 more
    >
    <Oct 30, 2005 2:33:57 PM PST> <Warning> <EJB> <BEA-010061> <The Message-Driven E
    JB: CreditScoreTutorial is unable to connect to the JMS destination: tutorial.cr
    edit.request.topic. The Error was:
    [EJB:011010]The JMS destination with the JNDI name: tutorial.credit.request.topi
    c could not be found. Please ensure that the JNDI name in the weblogic-ejb-jar.x
    ml is correct, and the JMS destination has been deployed.>
    <Oct 30, 2005 2:33:58 PM PST> <Warning> <EJB> <BEA-010061> <The Message-Driven E
    JB: KNEX.bean.QueueTransport is unable to connect to the JMS destination: jws.qu
    eue. The Error was:
    [EJB:011010]The JMS destination with the JNDI name: jws.queue could not be found
    . Please ensure that the JNDI name in the weblogic-ejb-jar.xml is correct, and t
    he JMS destination has been deployed.>
    <Oct 30, 2005 2:33:58 PM PST> <Notice> <Security> <BEA-090170> <Loading the priv
    ate key stored under the alias DemoIdentity from the jks keystore file C:\bea\we
    blogic81\server\lib\DemoIdentity.jks.>
    <Oct 30, 2005 2:33:58 PM PST> <Notice> <Security> <BEA-090171> <Loading the iden
    tity certificate stored under the alias DemoIdentity from the jks keystore file
    C:\bea\weblogic81\server\lib\DemoIdentity.jks.>
    <Oct 30, 2005 2:33:58 PM PST> <Notice> <Security> <BEA-090169> <Loading trusted
    certificates from the jks keystore file C:\bea\weblogic81\server\lib\DemoTrust.j
    ks.>
    <Oct 30, 2005 2:33:58 PM PST> <Notice> <Security> <BEA-090169> <Loading trusted
    certificates from the jks keystore file C:\bea\JDK142~1\jre\lib\security\cacerts
    .>
    <Oct 30, 2005 2:33:58 PM PST> <Notice> <WebLogicServer> <BEA-000331> <Started We
    bLogic Admin Server "cgServer" for domain "workshop" running in Development Mode
    >
    <Oct 30, 2005 2:33:58 PM PST> <Notice> <WebLogicServer> <BEA-000360> <Server sta
    rted in RUNNING mode>
    <Oct 30, 2005 2:33:58 PM PST> <Warning> <WebLogicServer> <BEA-000372> <HostName:
    0.0.0.0, maps to multiple IP addresses:192.168.0.1,70.34.104.139>
    <Oct 30, 2005 2:33:58 PM PST> <Warning> <WebLogicServer> <BEA-000372> <HostName:
    0.0.0.0, maps to multiple IP addresses:192.168.0.1,70.34.104.139>
    <Oct 30, 2005 2:33:58 PM PST> <Notice> <WebLogicServer> <BEA-000355> <Thread "Li
    stenThread.Default" listening on port 7001, ip address *.*>
    <Oct 30, 2005 2:33:58 PM PST> <Notice> <WebLogicServer> <BEA-000355> <Thread "SS
    LListenThread.Default" listening on port 7002, ip address *.*>
    <Oct 30, 2005 2:34:07 PM PST> <Warning> <EJB> <BEA-010096> <The Message-Driven E
    JB: CreditScoreTutorial is unable to connect to the JMS destination: tutorial.cr
    edit.request.topic. Connection failed after 2 attempts. The MDB will attempt to
    reconnect every 10 seconds. This log message will repeat every 600 seconds until
    the condition clears.>
    <Oct 30, 2005 2:34:07 PM PST> <Warning> <EJB> <BEA-010061> <The Message-Driven E
    JB: CreditScoreTutorial is unable to connect to the JMS destination: tutorial.cr
    edit.request.topic. The Error was:
    [EJB:011010]The JMS destination with the JNDI name: tutorial.credit.request.topi
    c could not be found. Please ensure that the JNDI name in the weblogic-ejb-jar.x
    ml is correct, and the JMS destination has been deployed.>
    <Oct 30, 2005 2:34:08 PM PST> <Warning> <EJB> <BEA-010096> <The Message-Driven E
    JB: KNEX.bean.QueueTransport is unable to connect to the JMS destination: jws.qu
    eue. Connection failed after 2 attempts. The MDB will attempt to reconnect every
    10 seconds. This log message will repeat every 600 seconds until the condition
    clears.>
    <Oct 30, 2005 2:34:08 PM PST> <Warning> <EJB> <BEA-010061> <The Message-Driven E
    JB: KNEX.bean.QueueTransport is unable to connect to the JMS destination: jws.qu
    eue. The Error was:
    [EJB:011010]The JMS destination with the JNDI name: jws.queue could not be found
    . Please ensure that the JNDI name in the weblogic-ejb-jar.xml is correct, and t
    he JMS destination has been deployed.>
    <Oct 30, 2005 2:44:08 PM PST> <Warning> <EJB> <BEA-010096> <The Message-Driven E
    JB: KNEX.bean.QueueTransport is unable to connect to the JMS destination: jws.qu
    eue. Connection failed after 62 attempts. The MDB will attempt to reconnect ever
    y 10 seconds. This log message will repeat every 600 seconds until the condition
    clears.>
    <Oct 30, 2005 2:44:08 PM PST> <Warning> <EJB> <BEA-010061> <The Message-Driven E
    JB: KNEX.bean.QueueTransport is unable to connect to the JMS destination: jws.qu
    eue. The Error was:
    [EJB:011010]The JMS destination with the JNDI name: jws.queue could not be found
    . Please ensure that the JNDI name in the weblogic-ejb-jar.xml is correct, and t
    he JMS destination has been deployed.>
    <Oct 30, 2005 2:44:17 PM PST> <Warning> <EJB> <BEA-010096> <The Message-Driven E
    JB: CreditScoreTutorial is unable to connect to the JMS destination: tutorial.cr
    edit.request.topic. Connection failed after 63 attempts. The MDB will attempt to
    reconnect every 10 seconds. This log message will repeat every 600 seconds unti
    l the condition clears.>
    <Oct 30, 2005 2:44:17 PM PST> <Warning> <EJB> <BEA-010061> <The Message-Driven E
    JB: CreditScoreTutorial is unable to connect to the JMS destination: tutorial.cr
    edit.request.topic. The Error was:
    [EJB:011010]The JMS destination with the JNDI name: tutorial.credit.request.topi
    c could not be found. Please ensure that the JNDI name in the weblogic-ejb-jar.x
    ml is correct, and the JMS destination has been deployed.>
    <Oct 30, 2005 2:54:08 PM PST> <Warning> <EJB> <BEA-010096> <The Message-Driven E
    JB: KNEX.bean.QueueTransport is unable to connect to the JMS destination: jws.qu
    eue. Connection failed after 122 attempts. The MDB will attempt to reconnect eve
    ry 10 seconds. This log message will repeat every 600 seconds until the conditio
    n clears.>
    <Oct 30, 2005 2:54:08 PM PST> <Warning> <EJB> <BEA-010061> <The Message-Driven E
    JB: KNEX.bean.QueueTransport is unable to connect to the JMS destination: jws.qu
    eue. The Error was:
    [EJB:011010]The JMS destination with the JNDI name: jws.queue could not be found
    . Please ensure that the JNDI name in the weblogic-ejb-jar.xml is correct, and t
    he JMS destination has been deployed.>
    <Oct 30, 2005 2:54:17 PM PST> <Warning> <EJB> <BEA-010096> <The Message-Driven E
    JB: CreditScoreTutorial is unable to connect to the JMS destination: tutorial.cr
    edit.request.topic. Connection failed after 123 attempts. The MDB will attempt t
    o reconnect every 10 seconds. This log message will repeat every 600 seconds unt
    il the condition clears.>
    <Oct 30, 2005 2:54:17 PM PST> <Warning> <EJB> <BEA-010061> <The Message-Driven E
    JB: CreditScoreTutorial is unable to connect to the JMS destination: tutorial.cr
    edit.request.topic. The Error was:
    [EJB:011010]The JMS destination with the JNDI name: tutorial.credit.request.topi
    c could not be found. Please ensure that the JNDI name in the weblogic-ejb-jar.x
    ml is correct, and the JMS destination has been deployed.>
    THANK YOU for any help you can provide!

    These are errors/warning because of incorrect connection pool settings.Either the database parameters were not configured correctly or there were some issues with the configuration itself.
    Your server did start up correctly though.
    "<Server started in RUNNING mode>"

  • Enable SSL between oracle JDBC Connection in weblogic server.

    Hi ALL,
    I have an requirement to enable SSL Mechanism in weblogic JDBC Connection Pool.we are using Oracle9i Enterprise Edition Release 9.2.0.7.0 - 64bit Production and Driver as "jdbc:oracle:thin@..." / oracle.jdbc.OracleDriver.
    weblogic server 8.1 SP4
    can anybody know what are the steps / configuration has to be done for enable Oracle Advanced Security encryption on the JDBC Oracle Thin driver with a WebLogic JDBC Connection Pool.
    Thanks,
    Karthik,

    Hi,
    I changed the code as given below. Still getting the same error. Can I migrate my question to jdbc section? I am new to this forum.
    import java.sql.*;
    public class jdbc {
    public static void main(String[] args) throws ClassNotFoundException, SQLException
    Class.forName("oracle.jdbc.driver.OracleDriver");
    String url = "jdbc:oracle:thin:@localhost:1521:xe";
    Connection conn =
    DriverManager.getConnection(url,"jestin","jj");
    conn.setAutoCommit(false);
    Statement stmt = conn.createStatement();
    ResultSet rset =
    stmt.executeQuery("select BANNER from SYS.V_$VERSION");
    while (rset.next()) {
    System.out.println (rset.getString(1));
    stmt.close();
    System.out.println ("Ok.");
    jestinjoy@debian:~/java$ javac -classpath /usr/lib/java/ jdbc.java
    jestinjoy@debian:~/java$ java jdbc
    Exception in thread "main" java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:169)
         at jdbc.main(jdbc.java:7)
    same error when I give the command without classpath

Maybe you are looking for