Deployment error - Errors in named queries in weblogic 10

Hi, All.
I got the error message when I tried to deploy my webapp to weblogic 10 & 10.1(10M1).
Stacktrace:
<May 19, 2008 11:51:14 AM EDT> <Error> <Console> <BEA-240003> <Console encounter
ed the following error weblogic.application.ModuleException:
at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:314)
at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedM
oduleDriver.java:176)
at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(Modu
leListenerInvoker.java:93)
at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(Depl
oymentCallbackFlow.java:360)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
river.java:26)
at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(Dep
loymentCallbackFlow.java:56)
at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(Dep
loymentCallbackFlow.java:46)
at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
va:615)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
river.java:26)
at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
ava:191)
at weblogic.application.internal.DeploymentStateChecker.prepare(Deployme
ntStateChecker.java:147)
at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(App
ContainerInvoker.java:61)
at weblogic.deploy.internal.targetserver.operations.ActivateOperation.cr
eateAndPrepareContainer(ActivateOperation.java:189)
at weblogic.deploy.internal.targetserver.operations.ActivateOperation.do
Prepare(ActivateOperation.java:87)
at weblogic.deploy.internal.targetserver.operations.AbstractOperation.pr
epare(AbstractOperation.java:217)
at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploym
entPrepare(DeploymentManager.java:719)
at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploy
mentList(DeploymentManager.java:1186)
at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare
(DeploymentManager.java:248)
at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.pre
pare(DeploymentServiceDispatcher.java:157)
at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallb
ackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157)
at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallb
ackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:12)
at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallb
ackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:45)
at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTunin
gWorkManagerImpl.java:464)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
Caused by: java.lang.Throwable: Substituted for missing class org.hibernate.Hibe
rnateException - Errors in named queries: SpotType.findById, Spot.findByTopic, T
argetAudience.findById, SpotOrder.findById, SpotAuditDetails.findById, ProjectOf
ficer.findById, SpotOrderAvailable.findById, ProjectOfficer.findByStatus, SpotOr
derTopic.findById, Topic.findById, findAllSpots, SpotOrderDetails.findById, find
AllCategory, SME.findById, SpotAudit.findById, ContactInfo.findById, SpotCategor
y.findById, SpotOrderTopicSpot.findById, ProjectTopic.findById, NetworkType.find
ById, Source.findById, NetworkType.findByStatus, RecordStatus.findById, SpotType
.findByStatus, findAllClient, Spot.findByTitle, findAllRecordStatus, SMETopicCom
ments.findById, ContractInfo.findById, Channel.findById, Client.findById, findAl
lSource, SMETopic.findById, Project.findById, SpotComments.findById, SpotOrderCo
mments.findById, ContactInfoComments.findById, Spot.findById
at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:
365)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.jav
a:1300)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(Annotat
ionConfiguration.java:859)
at org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Con
figuration.java:669)
at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFa
ctory(HibernatePersistence.java:132)
at weblogic.deployment.PersistenceUnitInfoImpl.createEntityManagerFactor
y(PersistenceUnitInfoImpl.java:264)
at weblogic.deployment.PersistenceUnitInfoImpl.<init>(PersistenceUnitInf
oImpl.java:110)
at weblogic.deployment.AbstractPersistenceUnitRegistry.storeDescriptors(
AbstractPersistenceUnitRegistry.java:316)
at weblogic.deployment.AbstractPersistenceUnitRegistry.loadPersistenceDe
scriptors(AbstractPersistenceUnitRegistry.java:96)
at weblogic.deployment.ModulePersistenceUnitRegistry.<init>(ModulePersis
tenceUnitRegistry.java:53)
at weblogic.servlet.internal.WebAppModule.initPURegistry(WebAppModule.ja
va:1151)
at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:304)
>
I included named queries on orm.xml file and also in each entities using annotations like following.
orm.xml>
<?xml version="1.0" encoding="UTF-8"?>
<entity-mappings xmlns="http://java.sun.com/xml/ns/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_1_0.xsd"
     version="1.0">
     <!-- WE PLACE LARGER AND JOIN QUERIES STATEMENTS HERE -->
     <named-query name="findAllClient">
<query><![CDATA[SELECT e FROM Client e ORDER BY e.clientName]]></query>
</named-query>
<named-query name="findAllSource">
<query><![CDATA[SELECT e FROM Source e ORDER BY e.sourceDesc]]></query>
</named-query>
<named-query name="findAllCategory">
<query><![CDATA[SELECT e FROM SpotCategory e ORDER BY e.spotCategoryDesc]]></query>
</named-query>
<named-query name="findAllRecordStatus">
<query><![CDATA[SELECT e FROM RecordStatus e ORDER BY e.id]]></query>
</named-query>
<named-query name="findAllSpots">
<query><![CDATA[SELECT e FROM Spot e ORDER BY e.id]]></query>
</named-query>
</entity-mappings>
entity example:
@Entity
@Table(name = "SPOTTYPE")
@NamedQueries( { @NamedQuery(name = "SpotType.findById", query = "SELECT e FROM SpotType e WHERE e.id = :id"),
     @NamedQuery(name = "SpotType.findByStatus", query = "SELECT e FROM SpotType e WHERE e.recordStatus.id = :status") })
public class SpotType implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(generator = "spotTypeSeq")
@SequenceGenerator(name = "spotTypeSeq", sequenceName = "SEQ_SPOTTYPE", allocationSize = 1)
@Column(name = "SPOTTYPEID", nullable = false, length = 2)
private Long id;
@Column(name = "SPOTTYPESHRTNM", nullable = false, length = 2)
private String spotTypeShortName;
@Column(name = "SPOTTYPELONGNM", nullable = false, length = 35)
everything works until I clicked the activate the change button. I tried to override libs by putting libs I'm using in my domain, still I have the same error message.
Libs that I have:
Name 5 Size Type Date Modified
antlr-2.7.6.jar 434 KB ALZip jar File 2/13/2008 5:28 PM
asm.jar 26 KB ALZip jar File 2/13/2008 5:28 PM
asm-attrs.jar 17 KB ALZip jar File 3/17/2005 4:05 PM
cglib-2.1.3.jar 276 KB ALZip jar File 2/13/2008 5:28 PM
commons-beanutils-1.7.0.jar 185 KB ALZip jar File 12/15/2007 7:12 PM
commons-codec-1.3.jar 46 KB ALZip jar File 12/15/2007 7:12 PM
commons-collections-3.1.jar 547 KB ALZip jar File 4/24/2008 10:28 AM
commons-digester-1.8.jar 141 KB ALZip jar File 12/15/2007 7:13 PM
commons-discovery-0.4.jar 75 KB ALZip jar File 12/15/2007 9:08 PM
commons-el-1.0.jar 110 KB ALZip jar File 5/15/2008 1:11 PM
commons-logging-1.0.4.jar 38 KB ALZip jar File 7/4/2004 4:49 AM
dom4j-1.6.1.jar 307 KB ALZip jar File 2/13/2008 5:28 PM
ehcache-1.2.jar 116 KB ALZip jar File 2/13/2008 5:28 PM
ejb3-persistence.jar 52 KB ALZip jar File 3/14/2008 4:45 PM
hibernate3.jar 2,222 KB ALZip jar File 2/6/2008 9:31 PM
hibernate-annotations.jar 274 KB ALZip jar File 3/14/2008 4:44 PM
hibernate-commons-annotatio... 65 KB ALZip jar File 3/14/2008 4:45 PM
hibernate-entitymanager.jar 116 KB ALZip jar File 3/14/2008 8:07 PM
jaas.jar 102 KB ALZip jar File 6/3/2004 11:31 AM
javassist.jar 449 KB ALZip jar File 2/13/2008 5:28 PM
jaxen-1.1-beta-7.jar 222 KB ALZip jar File 8/16/2005 2:04 PM
jboss-archive-browsing.jar 13 KB ALZip jar File 2/13/2008 5:28 PM
jhighlight-1.0.jar 92 KB ALZip jar File 12/20/2007 4:51 PM
jsf-facelets.jar 294 KB ALZip jar File 9/27/2007 12:20 PM
jstl-1.2.jar 405 KB ALZip jar File 5/15/2008 1:12 PM
jta.jar 9 KB ALZip jar File 6/3/2004 11:31 AM
junit-4.4.jar 158 KB ALZip jar File 5/15/2008 1:12 PM
log4j-1.2.11.jar 343 KB ALZip jar File 8/13/2005 3:28 PM
myfaces-api-1.2.2.jar 319 KB ALZip jar File 1/22/2008 3:40 PM
myfaces-impl-1.2.2.jar 739 KB ALZip jar File 1/22/2008 3:40 PM
nekohtml-0.9.5.jar 104 KB ALZip jar File 12/20/2007 4:42 PM
ojdbc14.jar 1,322 KB ALZip jar File 2/13/2008 5:30 PM
readme.txt 1 KB Text Document 5/15/2008 3:58 PM
richfaces-api-3.2.0.GA.jar 150 KB ALZip jar File 3/31/2008 4:23 PM
richfaces-impl-3.2.0.GA.jar 1,372 KB ALZip jar File 3/31/2008 4:23 PM
richfaces-ui-3.2.0.GA.jar 2,215 KB ALZip jar File 3/31/2008 4:50 PM
spring.jar 2,604 KB ALZip jar File 5/15/2008 1:12 PM
xerces-2.6.2.jar 988 KB ALZip jar File 12/19/2004 6:14 PM
xml-apis.jar 121 KB ALZip jar File 6/3/2004 11:31 AM
This can be deployed to tomcat 6 without any problems.
Thank you in advance for reading and your help.
Edited by gzson at 05/19/2008 9:07 AM

Follow the below link:
http://www.hibernate.org/250.html#A25

Similar Messages

  • OAS 10G WAR file deployment error (Errors in named queries)

    Hi again,
    I setup a 10G 10.1.3.1 Application Server and tried deploying my WAR file. In tomcat the WAR file deployment works fine. however in OAS I get this error and currently I'm clueless as to what causes the error.
    [Oct 24, 2007 6:03:37 PM] Operation failed with error: Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: org.hibernate.HibernateException: Errors in named queries: Book_List_By_RegisterDate ... (other named queries)
    My ApplicationContext.xml file contains this
    <bean id="entityManagerFactory"
    class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
    <property name="persistenceUnitManager" ref="persistenceUnitManager" />
    <property name="persistenceUnitName" value="BookStudy" />
    <property name="dataSource" ref="dataSource" />
    <property name="jpaVendorAdapter">
    <bean
    class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
    <property name="database" value="ORACLE" />
    <property name="showSql" value="true" />
    </bean>
    </property>
    </bean>
    And a sample named query in the hbm.xml file is this
    <query name="Book_List_By_RegisterDate">
              from BookData
              where to_char(regdate, 'MM/dd/yyyy') = to_char(:regdate, 'MM/dd/yyyy')
              order by Author.author_name desc, bookname desc
    </query>
    Thanks,

    Uncomment, or add, the following line in your application's orion-web.xml file:
    <web-app-class-loader search-local-classes-first="true" include-war-manifest-class-path="true" />
    See njr28's comments @ http://forum.hibernate.org/viewtopic.php?t=951324&highlight=oc4j

  • Error While Deploying ADF BC JSF Application on Oracle WebLogic Server 10.3

    Hi All,
    I am Deploying ADF BC JSF Application on Oracle WebLogic Server 10.3
    My JDeveloper Version is - JDeveloper10.1.3.0.4
    I followed Following Links for Deployment
    http://download.oracle.com/otn_hosted_doc/jdeveloper/11/demos/wls/wls.html
    http://blog.fekw.de/2008/08/23/howto-install-adf-10-runtime-and-deploy-adf-bc-app-to-oracle-weblogic-103-running-on-linux/
    I am Getting Following Error
    java.lang.NoClassDefFoundError: oracle/xml/parser/v2/XMLParseException
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.<clinit>(ADFPhaseListener.java:463)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:711)
         at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:400)
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:328)
    [ServerConnectionImpl.close():334] : Closing DM connection
    [ServerConnectionImpl.close():354] : Unregistered all listeners
    Thanks
    Vijay Chavan

    My bc4j.conf file is like bellow and my datasource name is expertDS
    <BC4JConfig>
    <AppModuleConfigBag>
    <AppModuleConfig name="DeptAMLocal">
    <AppModuleJndiName>model.ent.DeptAM</AppModuleJndiName>
    <DeployPlatform>LOCAL</DeployPlatform>
    <JDBCName>expert</JDBCName>
    <ApplicationName>model.ent.DeptAM</ApplicationName>
    <jbo.project>Model</jbo.project>
    </AppModuleConfig>
    <AppModuleConfig name="DeptAMEmbeddedAS">
    <jbo.internal.embedded>true</jbo.internal.embedded>
    <JDBCDataSource>jdbc/expertDS</JDBCDataSource>
    <ApplicationPath>current-workspace-app</ApplicationPath>
    <ConnectionPort>23891</ConnectionPort>
    <AppModuleJndiName>DeptAMBean</AppModuleJndiName>
    <HostName>localhost</HostName>
    <java.naming.security.authentication>simple</java.naming.security.authentication>
    <java.naming.security.credentials>
    <![CDATA[{904}05DDD90D64C79A7BC508C94B403DD81551]]>
    </java.naming.security.credentials>
    <java.naming.security.principal>oc4jadmin</java.naming.security.principal>
    <DeployPlatform>EjbIas</DeployPlatform>
    <jbo.server.internal_connection>jdbc/expertCoreDS</jbo.server.internal_connection>
    <ApplicationName>model.ent.DeptAM</ApplicationName>
    </AppModuleConfig>
    <AppModuleConfig name="DeptAMAS">
    <jbo.ampool.maxinactiveage>300000</jbo.ampool.maxinactiveage>
    <AppServerConnectionName>weblogic</AppServerConnectionName>
    <AppModuleJndiName>DeptAMBean</AppModuleJndiName>
    <DeployPlatform>EjbIas</DeployPlatform>
    <jbo.ejb.txntimeout>86400</jbo.ejb.txntimeout>
    <DtMiddleTierDeploymentProfile>../ModelMiddleTier1.deploy</DtMiddleTierDeploymentProfile>
    <jbo.security.enforce>Test</jbo.security.enforce>
    <jbo.ampool.maxpoolsize>600</jbo.ampool.maxpoolsize>
    <ApplicationName>model.ent.DeptAM</ApplicationName>
    <DtDeploymentProfile>../ModelEJB1.deploy</DtDeploymentProfile>
    <jbo.ampool.doampooling>false</jbo.ampool.doampooling>
    <java.naming.security.authentication>simple</java.naming.security.authentication>
    <DtCommonDeploymentProfile>../ModelCommon1.deploy</DtCommonDeploymentProfile>
    <JDBCDataSource>jdbc/expertDS</JDBCDataSource>
    <jbo.server.internal_connection>jdbc/expertCoreDS</jbo.server.internal_connection>
    <jbo.ampool.minavailablesize>0</jbo.ampool.minavailablesize>
    <ApplicationPath>BackBoneEJB</ApplicationPath>
    <jbo.ampool.monitorsleepinterval>10000</jbo.ampool.monitorsleepinterval>
    </AppModuleConfig>
    </AppModuleConfigBag>

  • Migrating to SAP Web AS - HibernateException: Errors in named queries

    Hi folks!
    We are migrating our web application to SAP Web AS (Netweaver CE SR5) but we are having some problems with hibernate: org.hibernate.HibernateException: Errors in named queries (see the stack below).
    It´s important to point out that this same application runs fine in Tomcat 5.5
    I followed the instructions in the following weblog but the problem continues:
    I also have read the following posts:
    I don´t know if our application-service.xml file is correctly configured (I used an example found in the SDN) so I will paste it below:
    (SessionFactoryImpl.java:364)
         at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1291)
         at org.springframework.orm.hibernate3.LocalSessionFactoryBean.newSessionFactory(LocalSessionFactoryBean.java:816)
         at org.springframework.orm.hibernate3.LocalSessionFactoryBean.buildSessionFactory(LocalSessionFactoryBean.java:734)
         at org.springframework.orm.hibernate3.AbstractSessionFactoryBean.afterPropertiesSet(AbstractSessionFactoryBean.java:211)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1333)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1299)
         ... 159 more

    Hi all!
    I´ve found the problem in my case.
    As stated in the links below, the application.xml version should refer to the Java 1.5:
    (look for the Vladimir Pavlov´s post on Jun 2, 2007 6:01 PM in the second page)
    In my case, I was using the Java 1.3 version.
    Now the problem is not happening anymore.
    My application.xml now looks as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd">
    Regards.
    Ballock.

  • Error while deployment of  CMP 2.0 bean on weblogic 11g

    Hi,
    I am not able to deploy my CMP 2.0 bean on Weblogic 11g. There are two JVM available in weblogic 11g.
    1) Java(TM) SE Runtime Environment (build 1.6.0_22-b04)
    2) Oracle JRockit(R) (build R28.1.1-14-139783-1.6.0_22-20101206-0241-windows-ia32, compiled mode)
    When we are using "Oracle JRockit(R) (build R28.1.1-14-139783-1.6.0_22-20101206-0241-windows-ia32, compiled mode)" And deploying the CMP bean then we got the Error as below:
    D:\Oracle\Middleware\wlserver_10.3\server\bin>java weblogic.appc -verbose C:\temp\Jproject.ear\DefinitionWizardBean.jar
    Created working directory: C:\DOCUME~1\cxp\LOCALS~1\Temp\1\appcgen_1309496813354_DefinitionWizardBean.jar
    <01-Jul-2011 06:06:57 o'clock BST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element persis
    tence in the deployment descriptor in C:\temp\Jproject.ear\DefinitionWizardBean.jar/META-INF/weblogic-ejb-jar.xml. A vers
    ion attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of
    the Weblogic Server will reject descriptors that do not specify the JEE version.>
    java.lang.NoClassDefFoundError: EntityBean
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:632)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
    at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:343)
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:302)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:296)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
    at weblogic.ejb.container.deployer.BeanInfoImpl.loadClass(BeanInfoImpl.java:510)
    at weblogic.ejb.container.deployer.BeanInfoImpl.<init>(BeanInfoImpl.java:242)
    at weblogic.ejb.container.deployer.ClientDrivenBeanInfoImpl.<init>(ClientDrivenBeanInfoImpl.java:156)
    at weblogic.ejb.container.deployer.EntityBeanInfoImpl.<init>(EntityBeanInfoImpl.java:115)
    at weblogic.ejb.container.deployer.BeanInfoImpl.createBeanInfoImpl(BeanInfoImpl.java:695)
    at weblogic.ejb.container.deployer.MBeanDeploymentInfoImpl.initializeBeanInfos(MBeanDeploymentInfoImpl.java:558)
    at weblogic.ejb.container.deployer.MBeanDeploymentInfoImpl.<init>(MBeanDeploymentInfoImpl.java:236)
    at weblogic.ejb.container.ejbc.EJBCompiler.getStandAloneDeploymentInfo(EJBCompiler.java:1185)
    at weblogic.ejb.container.ejbc.EJBCompiler.setupEJB(EJBCompiler.java:156)
    at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:439)
    at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:396)
    at weblogic.application.compiler.AppcUtils.compileEJB(AppcUtils.java:316)
    at weblogic.application.compiler.EJBModule.compile(EJBModule.java:128)
    at weblogic.application.compiler.flow.SingleModuleCompileFlow.proecessModule(SingleModuleCompileFlow.java:18)
    at weblogic.application.compiler.flow.SingleModuleFlow.compile(SingleModuleFlow.java:36)
    at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDriver.java:69)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.compiler.FlowDriver.nextState(FlowDriver.java:36)
    at weblogic.application.compiler.FlowDriver.run(FlowDriver.java:26)
    at weblogic.application.compiler.EJBCompiler.compile(EJBCompiler.java:29)
    at weblogic.application.compiler.flow.AppCompilerFlow.compileInput(AppCompilerFlow.java:112)
    at weblogic.application.compiler.flow.AppCompilerFlow.compile(AppCompilerFlow.java:37)
    at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDriver.java:69)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.compiler.FlowDriver.nextState(FlowDriver.java:36)
    at weblogic.application.compiler.FlowDriver.run(FlowDriver.java:26)
    at weblogic.application.compiler.Appc.runBody(Appc.java:203)
    at weblogic.utils.compiler.Tool.run(Tool.java:158)
    at weblogic.utils.compiler.Tool.run(Tool.java:115)
    at weblogic.application.compiler.Appc.main(Appc.java:262)
    at weblogic.appc.main(appc.java:14)
    EntityBean
    But I use JVM " Java(TM) SE Runtime Environment (build 1.6.0_22-b04) " and deploying CMP bean then i got error as below:
    D:\Oracle\Middleware\wlserver_10.3\server\bin>d:\Oracle\Middleware\jdk160_21\bin\java weblogic.appc -verbose C:\temp\Tr
    ading.ear\DefinitionWizardBean.jar
    Created working directory: C:\DOCUME~1\cxp\LOCALS~1\Temp\1\appcgen_1309496852057_DefinitionWizardBean.jar
    <01-Jul-2011 06:07:35 o'clock BST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element persis
    tence in the deployment descriptor in C:\temp\Jproject.ear\DefinitionWizardBean.jar/META-INF/weblogic-ejb-jar.xml. A vers
    ion attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of
    the Weblogic Server will reject descriptors that do not specify the JEE version.>
    java.lang.ClassNotFoundException: EntityBean
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:632)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
    at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:343)
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:302)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:296)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
    at weblogic.ejb.container.deployer.BeanInfoImpl.loadClass(BeanInfoImpl.java:510)
    at weblogic.ejb.container.deployer.BeanInfoImpl.<init>(BeanInfoImpl.java:242)
    at weblogic.ejb.container.deployer.ClientDrivenBeanInfoImpl.<init>(ClientDrivenBeanInfoImpl.java:156)
    at weblogic.ejb.container.deployer.EntityBeanInfoImpl.<init>(EntityBeanInfoImpl.java:115)
    at weblogic.ejb.container.deployer.BeanInfoImpl.createBeanInfoImpl(BeanInfoImpl.java:695)
    at weblogic.ejb.container.deployer.MBeanDeploymentInfoImpl.initializeBeanInfos(MBeanDeploymentInfoImpl.java:558)
    at weblogic.ejb.container.deployer.MBeanDeploymentInfoImpl.<init>(MBeanDeploymentInfoImpl.java:236)
    at weblogic.ejb.container.ejbc.EJBCompiler.getStandAloneDeploymentInfo(EJBCompiler.java:1185)
    at weblogic.ejb.container.ejbc.EJBCompiler.setupEJB(EJBCompiler.java:156)
    at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:439)
    at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:396)
    at weblogic.application.compiler.AppcUtils.compileEJB(AppcUtils.java:316)
    at weblogic.application.compiler.EJBModule.compile(EJBModule.java:128)
    at weblogic.application.compiler.flow.SingleModuleCompileFlow.proecessModule(SingleModuleCompileFlow.java:18)
    at weblogic.application.compiler.flow.SingleModuleFlow.compile(SingleModuleFlow.java:36)
    at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDriver.java:69)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.compiler.FlowDriver.nextState(FlowDriver.java:36)
    at weblogic.application.compiler.FlowDriver.run(FlowDriver.java:26)
    at weblogic.application.compiler.EJBCompiler.compile(EJBCompiler.java:29)
    at weblogic.application.compiler.flow.AppCompilerFlow.compileInput(AppCompilerFlow.java:112)
    at weblogic.application.compiler.flow.AppCompilerFlow.compile(AppCompilerFlow.java:37)
    at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDriver.java:69)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.compiler.FlowDriver.nextState(FlowDriver.java:36)
    at weblogic.application.compiler.FlowDriver.run(FlowDriver.java:26)
    at weblogic.application.compiler.Appc.runBody(Appc.java:203)
    at weblogic.utils.compiler.Tool.run(Tool.java:158)
    at weblogic.utils.compiler.Tool.run(Tool.java:115)
    at weblogic.application.compiler.Appc.main(Appc.java:262)
    at weblogic.appc.main(appc.java:14)
    EntityBean
    Please assist me regarding above error
    Thanks,
    Amritesh
    Edited by: 869636 on 01-Jul-2011 00:49

    What is the jee version you have on that server? are the environment variables correctly set?

  • Deployment Manager Error with Oracle Weblogic Server 10.3.1

    I have installed Identity Manager 9.1.0.2 (patch upgraded from 9.1.0.1) on OEL 5.3 64bit and Weblogic 10.3.1
    Database:Oracle 11gR2 (remote machine).
    **I am aware that IM 9.1.0.2 is not certified on Weblogic 10.3.1 (it is only certified on 10.3),
    The installation was successful and OIManager is up and running. Able to create Users, Resources etc. as well.
    As part of configuring OIM Connectors tried to Import .xml file using Import option from Deployment Management section as below and the following error was displayed.
    "Either your session timed out or you are trying to access a page without logging in".
    Did all workarounds like enabling java, changing browsers, restarting machine etc as per the below discussion but in vain.
    Deployment Manager Error with Oracle Weblogic Server
    Can any one suggest any workaround or solution for this problem.
    Or atleast can any one confirm there is no Identity manager available on this date which is compatible with 10.3.1? and cannot be continued further.
    Thanks in Advance
    Sudheer
    Edited by: SudheerPrabhala on Oct 20, 2009 1:26 AM

    You are facing this issue because you're using a non certified combination.
    Other folks who tried to use OIM in 10.3.1 ended up in the same problem you're facing.

  • Compilation error while deploying an iView containing BI Queries

    Hi All,
    I am trying to use a BW Query in my VC.
    Using BI Query Wizard, i have selected my query. So, when I preview my output in VC, it is giving the output. But when I am deploying my iView into the portal, I am getting the following error:
    Error in executing a process for compilation, .\GUIMachine_Business_Packages\testbi_21817\com.autogen.guimachine.testbi.iView_TestBI\src.core\Iview_testbi_ctl.java:46: cannot resolve symbol
    symbol  : constructor BWQueryFunction (java.lang.String,com.sapportals.guimachine.ep5kit.Iview_testbi_ctl,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,int,java.lang.String)
    location: class com.sap.portal.guimachine.bikit.runtime.BWQueryFunction
       BWQueryFunction BWQGTF = new BWQueryFunction ("BWQGTF", this, profile.getProperty ^
    ^
    ("System1"), "/sap/bw/xml/soap/queryview", "ZVC_CUBE", "VCQUERY1", "", 2, 500,"KEY");
    1 error
    The error says that symbol cannot be resolved, which symbol is it talking about?
    Thanks in advance,
    Deep.

    Hi Norbert,
    We add few addons on portal for visual composer.Till EP6.0 sp13 the addons had to be deployed separately onto portal,but since SP14 onwards these come with the portal patch itself and we don't have to deploy the .sda files explicitly for visual composer.
    The constructor of BWQueryFunction class which is being generated by the guimachine of Visual composer corresponds to that present in com.sap.portal.guimachine.BIKITapi.jar file present in SP13 addons and hence you get a compile time error when trying to deploy onto sp15 or sp16 portal.
    One solution to this problem is to deploy the visual composer addons corresponding to SP13.The jar file com.sap.portal.guimachine.BIKITapi.jar is present in com.sap.visualcomposer.BIKiT.sda file.
    Hope this solves your problem.
    Regards,
    Pradeep

  • Error deploying application: error retrieving component [ caching Stub] Pro

    Hi we are using web logic 6.1, everything was working fine untill we restarted the server. once i restarted i got this error...
    Error deploying application m1_model_responsecurvefacility.jar: error retrieving component [Caching Stub]Proxy for m192:ApplicationConfig=m1_model_responsecurvefacility.jar,Location=m192admin,Name=m1_model_responsecurvefacility.jar,Type=EJBComponentConfig>
    can i know what are all the possible cause for this error to occur ?

    ####<Jan 14, 2008 9:24:06 PM EST> <Info> <Logging> <server> <m192admin> <main> <> <> <000000> <FileLogger Opened.>
    ####<Jan 14, 2008 9:24:22 PM EST> <Notice> <WebLogicServer> <server> <m192admin> <main> <system> <> <000327> <Starting WebLogic Admin Server "m192admin" for domain "m192">
    ####<Jan 14, 2008 9:24:22 PM EST> <Info> <WebLogicServer> <server> <m192admin> <main> <system> <> <000214> <WebLogic Server "m192admin" version:
    WebLogic Server 6.1 SP2 12/18/2001 11:13:46 #154529
    WebLogic XML Module 6.1 SP2 12/18/2001 11:28:02 #154529
    (c) 1995, 1996, 1997, 1998 WebLogic, Inc.
    (c) 1999, 2000, 2001 BEA Systems, Inc.>
    ####<Jan 14, 2008 9:24:22 PM EST> <Info> <WebLogicServer> <server> <m192admin> <main> <system> <> <000215> <Loaded License : /opt/weblogic_m1/61sp2/license.bea>
    ####<Jan 14, 2008 9:24:38 PM EST> <Info> <Connector> <server> <m192admin> <main> <system> <> <190000> <Initializing J2EE Connector Service>
    ####<Jan 14, 2008 9:24:38 PM EST> <Info> <Connector> <server> <m192admin> <main> <system> <> <190001> <J2EE Connector Service initialized successfully>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <WebLogicServer> <server> <m192admin> <main> <system> <> <000000> <IIOP subsystem enabled.>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101128> <Initializing HTTP services.>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101133> <Initializing WEB server m192admin>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101052> <[HTTP m192admin] Initialized>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101135> <m192admin is the default web server>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <J2EE> <server> <m192admin> <main> <system> <> <000000> <J2EE service initializing>
    ####<Jan 14, 2008 9:24:41 PM EST> <Info> <JMS> <server> <m192admin> <main> <system> <> <040090> <Deployed 4 default connection factories.>
    ####<Jan 14, 2008 9:24:41 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101129> <Initializing Web services.>
    ####<Jan 14, 2008 9:24:41 PM EST> <Info> <HTTP m192admin> <server> <m192admin> <main> <system> <> <000000> <Log rotation is size based>
    ####<Jan 14, 2008 9:24:44 PM EST> <Info> <HTTP Session> <server> <m192admin> <main> <system> <> <100037> <Creating SessionContext of type: memory for webapp: /bea_wls_internal>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(3029388,bea_wls_internal,/bea_wls_internal)] registering classpath servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(3029388,bea_wls_internal,/bea_wls_internal)] registering getior servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(3029388,bea_wls_internal,/bea_wls_internal)] registering tunneling servlets with initArgs 'wl-dispatch-policy=direct'>
    ####<Jan 14, 2008 9:24:45 PM EST> <Debug> <HTTP> <server> <m192admin> <main> <system> <> <101097> <Registering ServletContext: "bea_wls_internal:/bea_wls_internal">
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101051> <[HTTP m192admin] started>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <ZAC> <server> <m192admin> <main> <system> <> <000000> <ZAC ACLs initialized>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <ZAC> <server> <m192admin> <main> <system> <> <000000> <ZAC packages stored in local directory exports>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vendor = Sun Microsystems Inc.>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: os.name = SunOS>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: sun.boot.class.path = /opt/weblogic_m1/MercuryDiagnostics/JAVAProbe/classes/boot:/opt/weblogic_m1/61sp2/jdk131/jre/lib/rt.jar:/opt/weblogic_m1/61sp2/jdk131/jre/lib/i18n.jar:/opt/weblogic_m1/61sp2/jdk131/jre/lib/sunrsasign.jar:/opt/weblogic_m1/61sp2/jdk131/jre/classes>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.specification.vendor = Sun Microsystems Inc.>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.runtime.version = 1.3.1_01>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: maxBH = 49999>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.Name = m192admin>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.implementation.vendor = Sun Microsystems>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: user.name = m192>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: bea.home = /opt/weblogic_m1/61sp2>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: javax.xml.parsers.SAXParserFactory = weblogic.xml.jaxp.RegistrySAXParserFactory>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.implementation.name = JMX RI>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: user.language = en>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: sun.boot.library.path = /opt/weblogic_m1/61sp2/jdk131/jre/lib/sparc>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: vo.poolingString = false>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.specification.name = Java Management Extensions>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.version = 1.3.1_01>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.collection.finders = true>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: user.timezone = America/New_York>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: m1tempproxy.MaxTries = 1>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.specification.version = 1.0 Final Release>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.implementation.version = 1.0>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: sun.cpu.isalist = sparcv9+vis sparcv9 sparcv8plus+vis sparcv8plus sparcv8 sparcv8-fsmuld sparcv7 sparc>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: file.encoding.pkg = sun.io>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: file.separator = />
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.specification.name = Java Platform API Specification>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.email.host = ponyex.capitalone.com>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.class.version = 47.0>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.home = /opt/weblogic_m1/61sp2/jdk131/jre>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: javax.xml.parsers.DocumentBuilderFactory = weblogic.xml.jaxp.RegistryDocumentBuilderFactory>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.info = mixed mode>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.email.sender = [email protected]>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: os.version = 5.8>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: probe.id = hulk_m192>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.url = t3://localhost:7092>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.awt.fonts = >
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: path.separator = :>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.version = 1.3.1_01>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.protocol.handler.pkgs = weblogic.net|weblogic.management|weblogic.utils>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.specification.vendor = Sun Microsystems>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.awt.printerjob = sun.awt.motif.PSPrinterJob>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.security.policy = =/opt/weblogic_m1/61sp2/wlserver6.1/lib/weblogic.policy>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: sun.io.unicode.encoding = UnicodeBig>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.naming.factory.url.pkgs = weblogic.jndi.factories>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: user.home = /export/home/m1/m192>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: SMS_HOME = /m1/src/m192/sms>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.specification.vendor = Sun Microsystems Inc.>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: org.xml.sax.driver = weblogic.apache.xerces.parsers.SAXParser>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.library.path = /opt/weblogic_m1/61sp2/jdk131/jre/bin/../lib/sparc/hotspot:/opt/weblogic_m1/61sp2/jdk131/jre/bin/../lib/sparc:::/opt/hpnpl/lib:/opt/weblogic_m1/61sp2/wlserver6.1/lib/solaris:/opt/weblogic_m1/61sp2/wlserver6.1/lib/solaris/oci816_8:/usr/lib>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vendor.url = http://java.sun.com/>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.vendor = Sun Microsystems Inc.>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.runtime.name = Java(TM) 2 Runtime Environment, Standard Edition>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.class.path = /opt/weblogic_m1/61sp2/wlserver6.1:/opt/weblogic_m1/61sp2/wlserver6.1/lib/weblogic_sp.jar:/opt/weblogic_m1/61sp2/wlserver6.1/lib/weblogic.jar:/m1/src/m192/commons-net-1.3.0.jar:config/m192/applications:/m1/src/m192:/opt/weblogic_m1/61sp2/wlserver6.1/lib/ejb20.jar:/m1/src/m192/aspectjrt.jar:/m1/src/m192/activation.jar:/m1/src/m192/techteam.jar:/m1/src/m192/jce1_2-do.jar:/m1/src/m192/junit.jar:/m1/src/m192/httpunit.jar:/m1/src/m192/Tidy.jar:/m1/src/m192/crypto.jar:/m1/src/m192/entbase.jar:/m1/src/m192/performance.jar:/m1/src/m192/logging.jar:/m1/src/m192/smartupload.jar:/m1/src/m192/connectionfilter.jar:/m1/src/m192/jaxb-api.jar:/m1/src/m192/jaxb-libs.jar:/m1/src/m192/jaxb-ri.jar:/m1/src/m192/saaj-api.jar:/m1/src/m192/saaj-ri.jar:/m1/src/m192/dom4j.jar:/m1/src/m192/commons-logging.jar:/m1/src/m192/poi.jar:/m1/src/m192/fakeGA.jar>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.Domain = m192>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.specification.name = Java Virtual Machine Specification>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: javax.rmi.CORBA.PortableRemoteObjectClass = weblogic.iiop.PortableRemoteObjectDelegateImpl>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.specification.version = 1.0>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: sun.cpu.endian = big>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.io.tmpdir = /var/tmp/>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vendor.url.bug = http://java.sun.com/cgi-bin/bugreport.cgi>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.system.name = m192>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: entity.auditlog = true>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: os.arch = sparc>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.awt.graphicsenv = sun.awt.X11GraphicsEnvironment>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.ext.dirs = /opt/weblogic_m1/61sp2/jdk131/jre/lib/ext>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: user.dir = /opt/weblogic_m1/61sp2/wlserver6.1>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: line.separator =
    >
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.name = Java HotSpot(TM) Client VM>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: m1proxy.MaxTries = 1>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.management.discover = false>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: loadPS = false>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: file.encoding = 646>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.ProductionModeEnabled = false>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.specification.version = 1.3>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: javax.xml.transform.TransformerFactory = weblogic.xml.jaxp.RegistrySAXTransformerFactory>
    ####<Jan 14, 2008 9:24:49 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101053> <[HTTP m192admin] Loading web app: wl_management_internal2>
    ####<Jan 14, 2008 9:24:49 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101059> <[m192admin] Loading wl_management_internal2 from WAR file: /opt/weblogic_m1/61sp2/wlserver6.1/./config/m192/applications/.wlnotdelete/wl_comp3387.war>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101031> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] extracting classfiles to /m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_wl_management_internal2:>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101032> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] extracted classfiles successfully...>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP Session> <server> <m192admin> <main> <system> <> <100037> <Creating SessionContext of type: memory for webapp: /wl_management_internal2>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] registering classpath servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] registering getior servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] registering tunneling servlets with initArgs 'wl-dispatch-policy=direct'>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] registering JSPServlet with initArgs '[JspConfig: verbose=true,packagePrefix=jsp_servlet,-compiler=javac,compileFlags=,workingDir=/m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_wl_management_internal2,pageCheckSeconds=1,superclass=null,keepgenerated=false,compilerSupportsEncoding=false,encoding=null,defaultfilename=index.jsp,compilerclass=null,noTryBlocks=false]'>
    ####<Jan 14, 2008 9:25:03 PM EST> <Debug> <HTTP> <server> <m192admin> <main> <system> <> <101097> <Registering ServletContext: "wl_management_internal2:/wl_management_internal2">
    ####<Jan 14, 2008 9:25:03 PM EST> <Info> <J2EE> <server> <m192admin> <main> <system> <> <160003> <Deployed : wl_management_internal2>
    ####<Jan 14, 2008 9:25:04 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101053> <[HTTP m192admin] Loading web app: console>
    ####<Jan 14, 2008 9:25:04 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101059> <[m192admin] Loading console from WAR file: /opt/weblogic_m1/61sp2/wlserver6.1/./config/m192/applications/.wlnotdelete/wl_comp3389.war>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101031> <[WebAppServletContext(4340768,console,/console)] extracting classfiles to /m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_console:>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101032> <[WebAppServletContext(4340768,console,/console)] extracted classfiles successfully...>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP Session> <server> <m192admin> <main> <system> <> <100037> <Creating SessionContext of type: memory for webapp: /console>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4340768,console,/console)] registering classpath servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4340768,console,/console)] registering getior servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4340768,console,/console)] registering tunneling servlets with initArgs 'wl-dispatch-policy=direct'>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4340768,console,/console)] registering JSPServlet with initArgs '[JspConfig: verbose=true,packagePrefix=jsp_servlet,-compiler=javac,compileFlags=,workingDir=/m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_console,pageCheckSeconds=1,superclass=weblogic.servlet.jsp.JspBase,keepgenerated=false,compilerSupportsEncoding=false,encoding=null,defaultfilename=index.jsp,compilerclass=null,noTryBlocks=false]'>
    ####<Jan 14, 2008 9:25:08 PM EST> <Debug> <HTTP> <server> <m192admin> <main> <system> <> <101097> <Registering ServletContext: "console:/console">
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <J2EE> <server> <m192admin> <main> <system> <> <160003> <Deployed : console>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101053> <[HTTP m192admin] Loading web app: wl_management_internal1>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101059> <[m192admin] Loading wl_management_internal1 from WAR file: /opt/weblogic_m1/61sp2/wlserver6.1/./config/m192/applications/.wlnotdelete/wl_comp3391.war>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101031> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] extracting classfiles to /m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_wl_management_internal1:>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101032> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] extracted classfiles successfully...>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP Session> <server> <m192admin> <main> <system> <> <100037> <Creating SessionContext of type: memory for webapp: /wl_management_internal1>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] registering classpath servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] registering getior servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] registering tunneling servlets with initArgs 'wl-dispatch-policy=direct'>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] registering JSPServlet with initArgs '[JspConfig: verbose=true,packagePrefix=jsp_servlet,-compiler=javac,compileFlags=,workingDir=/m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_wl_management_internal1,pageCheckSeconds=1,superclass=null,keepgenerated=false,compilerSupportsEncoding=false,encoding=null,defaultfilename=index.jsp,compilerclass=null,noTryBlocks=false]'>
    ####<Jan 14, 2008 9:25:08 PM EST> <Debug> <HTTP> <server> <m192admin> <main> <system> <> <101097> <Registering ServletContext: "wl_management_internal1:/wl_management_internal1">
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <J2EE> <server> <m192admin> <main> <system> <> <160003> <Deployed : wl_management_internal1>
    ####<Jan 14, 2008 9:25:15 PM EST> <Info> <JDBC Pool M1Pool> <server> <m192admin> <main> <system> <> <000000> <Cannot set refreshTestMinutes with '0'. Will use 5 minutes.>
    ####<Jan 14, 2008 9:25:27 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001068> <Connection for pool "M1Pool" created.>
    ####<Jan 14, 2008 9:25:27 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001068> <Connection for pool "M1Pool" created.>
    ####<Jan 14, 2008 9:25:27 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001068> <Connection for pool "M1Pool" created.>
    ####<Jan 14, 2008 9:25:27 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001068> <Connection for pool "M1Pool" created.>
    ####<Jan 14, 2008 9:25:27 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001068> <Connection for pool "M1Pool" created.>
    ####<Jan 14, 2008 9:25:28 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001082> <Creating Data Source named M1DataSource-M1Pool for pool M1Pool>
    ####<Jan 14, 2008 9:25:28 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001070> <Checking existence of connection pool M1Pool requested by user system>
    ####<Jan 14, 2008 9:25:28 PM EST> <Info> <JMS> <server> <m192admin> <main> <system> <> <040090> <Deployed 4 default connection factories.>
    ####<Jan 14, 2008 9:25:31 PM EST> <Info> <JMS> <server> <m192admin> <main> <system> <> <040054> <JMSServer "JMSServer-0", no persistent store configured.>
    ####<Jan 14, 2008 9:25:33 PM EST> <Info> <JMS> <server> <m192admin> <main> <system> <> <040010> <JMSServer "JMSServer-0", configured no session pools.>
    ####<Jan 14, 2008 9:25:33 PM EST> <Info> <JMS> <server> <m192admin> <main> <system> <> <040109> <JMSServer "JMSServer-0" is started.>
    ####<Jan 14, 2008 9:25:39 PM EST> <Info> <EJB> <server> <m192admin> <main> <system> <> <010008> <EJB Deploying file: m1_model_bbamfacility.jar>
    ####<Jan 14, 2008 9:25:39 PM EST> <Warning> <J2EE> <server> <m192admin> <main> <system> <> <160007> <You are running WebLogic Server with J2EE 1.3 features enabled. The implementation of specific J2EE 1.3 features (EJB 2.0, JSP 1.2, Servlet 2.3, and J2EE Connector Architecture 1.0) in BEA WebLogic Server 6.1 is of a non-final version of the appropriate specification. It is subject to change in future releases once the specification becomes finalized. This may cause application code developed for BEA WebLogic Server 6.1 that uses the new features of J2EE 1.3 to be incompatible with the J2EE 1.3 platform supported in future releases of BEA WebLogic Server.>
    ####<Jan 14, 2008 9:25:41 PM EST> <Warning> <EJB> <server> <m192admin> <main> <system> <> <010001> <EJB Deployment: bbamfacility cannot be redeployed while the server is running. com.capitalone.intranet.solicitation.model.bbamfacility.BbamFacilityBean is located in the server's classpath.>
    ####<Jan 14, 2008 9:25:41 PM EST> <Warning> <EJB> <server> <m192admin> <main> <system> <> <010001> <EJB Deployment: bbamfacility cannot be redeployed while the server is running. com.capitalone.intranet.solicitation.model.bbamfacility.BbamFacilityHome is located in the server's classpath.>
    ####<Jan 14, 2008 9:25:41 PM EST> <Warning> <EJB> <server> <m192admin> <main> <system> <> <010001> <EJB Deployment: bbamfacility cannot be redeployed while the server is running. com.capitalone.intranet.solicitation.model.bbamfacility.BbamFacility is located in the server's classpath.>
    ####<Jan 14, 2008 9:25:42 PM EST> <Warning> <EJB> <server> <m192admin> <main> <system> <> <010001> <EJB Deployment: parameterentity cannot be redeployed while the server is running. com.capitalone.intranet.solicitation.model.bbamfacility.parameterentity.ParameterEntityBean is located in the server's classpath.>
    ####<Jan 14, 2008 9:25:42 PM EST> <Warning> <EJB> <server> <m192admin> <main> <system> <> <010001> <EJB Deployment: parameterentity cannot be redeployed while the server is running. com.capitalone.intranet.solicitation.model.bbamfacility.parameterentity.ParameterEntityHome is located in the server's classpath.>
    ####<Jan 14, 2008 9:25:42 PM EST> <Warning> <EJB> <server> <m192admin> <main>

  • Error when setting up cluster in weblogic 10.3.6

    Hi All,
    We are trying to set up a cluster with 2 managed servers in WLS 10.3.6. The issue is that we do not manage to deploy our application on the managed server as when we start the managed servesr we have the following error message :
    javax.naming.NameNotFoundException: While trying to lookup 'ouaf.servicebean' didn't find subcontext 'ouaf'. Resolved '' [Root exception is javax.naming.NameNotFoundException: While trying to lookup 'ouaf.servicebean' didn't find subcontext 'ouaf'. Resolved '']; remaining name 'ouaf/servicebean'
    Unfotunately, we are failing to resolve this issue. Any help would be greatly appreciated !!!
    Many thanks.

    HI,
    Just try to clear tmp and cache once a see if you still face same problem.
    If not please put the complete error stack to verify what exactly going on there.
    Regards,
    Kal

  • Getting Error while Publishing Web Application using weblogic workshop 10.2

    Hi all,
    I am trying to create a simple webapplication using the weblogic workshop studio for weblogic. I have created a domain using the configration wizard.
    when i am trying to deploy the newly created dynamic web project EAR in to the server, its throwing a error
    !MESSAGE Referenced library module 'weblogic-controls-10.0#[email protected]' failed to deploy.
    !SUBENTRY 2 com.bea.workshop.wls.core 4 4000 2008-05-21 15:32:06.117
    !MESSAGE java.net.MalformedURLException: no protocol: 10.2/wlserver_10.0/platform/lib/p13n/p13n_common.jar
    !STACK 0
    java.lang.Exception: Exception received from deployment driver. See Error Log view for more detail.
         at com.bea.workshop.wls.core.server.internal.WlsJ2EEDeploymentHelper$DeploymentProgressListener.watch(WlsJ2EEDeploymentHelper.java:1459)
         at com.bea.workshop.wls.core.server.internal.WlsJ2EEDeploymentHelper.deployLibrary(WlsJ2EEDeploymentHelper.java:1200)
         at com.bea.workshop.wls.core.server.internal.WlsJ2EEDeploymentHelper.deployLibraryModules(WlsJ2EEDeploymentHelper.java:1079)
         at com.bea.workshop.wls.core.server.internal.WlsJ2EEDeploymentHelper.deployAllLibraryModules(WlsJ2EEDeploymentHelper.java:1046)
         at com.bea.workshop.wls.core.server.internal.WlsJ2EEDeploymentHelper.deploy(WlsJ2EEDeploymentHelper.java:710)
         at com.bea.workshop.wls.core.server.internal.WeblogicServerBehaviour.publishWeblogicModules(WeblogicServerBehaviour.java:1195)
         at com.bea.workshop.wls.core.server.internal.WeblogicServerBehaviour.publishOnce(WeblogicServerBehaviour.java:657)
         at com.bea.workshop.wls.core.server.internal.WeblogicServerBehaviour.publish(WeblogicServerBehaviour.java:486)
         at org.eclipse.wst.server.core.internal.Server.doPublish(Server.java:875)
         at org.eclipse.wst.server.core.internal.Server.publish(Server.java:863)
         at org.eclipse.wst.server.core.internal.PublishServerJob.run(PublishServerJob.java:142)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:58)
    Caused by: java.net.MalformedURLException: no protocol: 10.2/wlserver_10.0/platform/lib/p13n/p13n_common.jar
         at java.net.URL.<init>(URL.java:567)
         at java.net.URL.<init>(URL.java:464)
         at java.net.URL.<init>(URL.java:413)
         at sun.rmi.server.LoaderHandler.pathToURLs(LoaderHandler.java:747)
         at sun.rmi.server.LoaderHandler.loadClass(LoaderHandler.java:147)
         at java.rmi.server.RMIClassLoader$2.loadClass(RMIClassLoader.java:620)
         at java.rmi.server.RMIClassLoader.loadClass(RMIClassLoader.java:247)
         at sun.rmi.server.MarshalInputStream.resolveClass(MarshalInputStream.java:197)
         at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1544)
         at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1466)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1699)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
         at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1634)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
         at java.rmi.MarshalledObject.get(MarshalledObject.java:135)
         at javax.management.remote.rmi.RMIConnectionImpl$6.run(RMIConnectionImpl.java:1595)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.management.remote.rmi.RMIConnectionImpl.unwrap(RMIConnectionImpl.java:1586)
         at javax.management.remote.rmi.RMIConnectionImpl.access$600(RMIConnectionImpl.java:81)
         at javax.management.remote.rmi.RMIConnectionImpl$7.run(RMIConnectionImpl.java:1631)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.management.remote.rmi.RMIConnectionImpl.unwrap(RMIConnectionImpl.java:1627)
         at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:766)
         at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:479)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:475)
         at weblogic.rmi.internal.BasicServerRef.access$300(BasicServerRef.java:59)
         at weblogic.rmi.internal.BasicServerRef$BasicExecuteRequest.run(BasicServerRef.java:1016)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    Any help on this is welcomed
    Thanks and regards
    Vishnu

    If you don't mind can you please provide a more step-by-step instructions to reproduce.

  • From RFC 2068 Error while testing ADF Application in Weblogic Server

    Hi All,
    Created an ADF application and Deployed this application to Weblogic server.
    I am getting the below error After deploy into weblogic server while running the application
    I am able to run this application well in JDeveloper using the IntegratedWebLogicServer.
    The Application is successfully deployed to the Web Logic server.
    While creating the domain, I have extended the Oracle JRF classes.
    Error
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    JDeveloper Version : 11.1.1.3.0
    Weblogic Version : 10.3.3.0
    Thanks
    Satish

    HI John,
    In The web.xml i added /faces/TestPG
    This is URL in Weblogic Server
    http://10.146.2.232:7001/TestDeployee-ViewController-context-root/faces/TestPG
    Thanks
    Sathish

  • Coherence Error at the time of Starting weblogic Server

    Hi ,
    I am getting below error at the time of starting Weblogic OSB managed server
    We are using osb_cluster1 (Unicast) for osb_server1 managed server.
    When Weblogic server try to start the managed server we get following Coherence errors and startup scripts try to point to Oracle Coherence 3.6.0.4.(its mainly happening in starting osb_server1 managed server, this error is not appearing during soa_server1 managed server start)
    We don't want to use the coherence at all, we are trying to disable the coherence feature, but hardly getting any success in it, every time during server start-up following error appears.
    Let me know if you have any solution to it.
    ####<Mar 5, 2012 9:18:55.424 AM > <Warning> <Coherence> <sjsj-idm.kuy.co.wo> <osb_server1> <Logger@406289568 3.6.0.4> <<anonymous>> <> <3976a80e38d52337:-f13ff44:135df5aa8b6:-8000-0000000000000007> <1330892335424> <BEA-000000> <Oracle Coherence 3.6.0.4 (member=n/a): This Member(Id=0, Timestamp=2012-03-05 09:18:23.752, Address=11.49.63.33:7880, MachineId=31265, Location=site:kuy.co.wo,machine:deap-idm01,process:10629, Role=OSB-node) has been attempting to join the cluster using WKA list [sjsj-idm.kuy.co.wo/11.49.63.33:9003] for 31 seconds without success; this could indicate a mis-configured WKA, or it may simply be the result of a busy cluster or active failover.>
    ####<Mar 5, 2012 9:18:55.425 AM > <Warning> <Coherence> <sjsj-idm.kuy.co.wo> <osb_server1> <Logger@406289568 3.6.0.4> <<anonymous>> <> <3976a80e38d52337:-f13ff44:135df5aa8b6:-8000-0000000000000007> <1330892335425> <BEA-000000> <Oracle Coherence 3.6.0.4 (member=n/a): Delaying formation of a new cluster; waiting for well-known nodes to respond>
    ####<Mar 5, 2012 9:22:58.769 AM > <Error> <Coherence> <sjsj-idm.kuy.co.wo> <osb_server1> <Logger@406289568 3.6.0.4> <<anonymous>> <> <3976a80e38d52337:-f13ff44:135df5aa8b6:-8000-0000000000000007> <1330892578769> <BEA-000000> <Oracle Coherence 3.6.0.4 (member=n/a): Detected soft timeout) of {WrapperGuardable Guard{Daemon=IpMonitor} Service=ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_ANNOUNCE), Id=0, Version=3.6}}>
    ####<Mar 5, 2012 9:22:58.770 AM > <Warning> <Coherence> <sjsj-idm.kuy.co.wo> <osb_server1> <Logger@406289568 3.6.0.4> <<anonymous>> <> <3976a80e38d52337:-f13ff44:135df5aa8b6:-8000-0000000000000007> <1330892578770> <BEA-000000> <Oracle Coherence 3.6.0.4 (member=n/a): Attempting recovery of Guard{Daemon=IpMonitor}>
    ####<Mar 5, 2012 9:23:25.530 AM > <Error> <Coherence> <sjsj-idm.kuy.co.wo> <osb_server1> <Logger@406289568 3.6.0.4> <<anonymous>> <> <3976a80e38d52337:-f13ff44:135df5aa8b6:-8000-0000000000000007> <1330892605530> <BEA-000000> <Oracle Coherence 3.6.0.4 (member=n/a): Failure to join a cluster for 301 seconds; stopping cluster service.>
    ####<Mar 5, 2012 9:23:25.879 AM > <Error> <Coherence> <sjsj-idm.kuy.co.wo> <osb_server1> <Logger@406289568 3.6.0.4> <<anonymous>> <> <3976a80e38d52337:-f13ff44:135df5aa8b6:-8000-0000000000000007> <1330892605879> <BEA-000000> <Oracle Coherence 3.6.0.4 (member=n/a): Error while starting cluster: com.tangosol.net.RequestTimeoutException: Timeout during service start: ServiceInfo(Id=0, Name=Cluster, Type=Cluster
    MemberSet=ServiceMemberSet(
    OldestMember=n/a
    ActualMemberSet=MemberSet(Size=0, BitSetCount=0
    MemberId/ServiceVersion/ServiceJoined/MemberState
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onStartupTimeout(Grid.CDB:6)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.start(Service.CDB:28)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.start(Grid.CDB:6)
    at com.tangosol.coherence.component.net.Cluster.onStart(Cluster.CDB:637)
    at com.tangosol.coherence.component.net.Cluster.start(Cluster.CDB:11)
    at com.tangosol.coherence.component.util.SafeCluster.startCluster(SafeCluster.CDB:4)
    at com.tangosol.coherence.component.util.SafeCluster.restartCluster(SafeCluster.CDB:7)
    at com.tangosol.coherence.component.util.SafeCluster.ensureRunningCluster(SafeCluster.CDB:26)
    at com.tangosol.coherence.component.util.SafeCluster.start(SafeCluster.CDB:2)
    at com.tangosol.net.CacheFactory.ensureCluster(CacheFactory.java:998)
    at com.bea.alsb.coherence.impl.CoherenceProvider.<init>(CoherenceProvider.java:45)
    at com.bea.alsb.coherence.impl.CoherenceProviderFactory.newInstance(CoherenceProviderFactory.java:21)
    at com.bea.alsb.coherence.init.CoherenceAppListener.preStart(CoherenceAppListener.java:45)
    at weblogic.application.internal.flow.BaseLifecycleFlow$PreStartAction.run(BaseLifecycleFlow.java:282)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.application.internal.flow.BaseLifecycleFlow$LifecycleListenerAction.invoke(BaseLifecycleFlow.java:199)
    at weblogic.application.internal.flow.BaseLifecycleFlow.preStart(BaseLifecycleFlow.java:62)
    at weblogic.application.internal.flow.HeadLifecycleFlow.prepare(HeadLifecycleFlow.java:284)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:614)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:54)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:184)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:58)
    at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
    at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:141)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
    at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
    at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:22)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
    at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:166)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)>
    Edited by: 858026 on Mar 4, 2012 6:21 PM
    Edited by: 858026 on Mar 4, 2012 6:23 PM

    Hi NJ,
    In WL console while setting up cluster I have given Messaging
    Mode to Unicast,
    By default Multicast address and ports comes up
    Multicast Address - 239.192.0.0,
    Multicast Port- 7001
    I have modified the override file but still getting given error logs while server startup and its trying to look for override file in Oracle Coherence 3.6.0.4/coherence.jar
    <!DOCTYPE coherence SYSTEM ""coherence.dtd"">
    <coherence>
    <cluster-config>
         <!-- By default, this is using a multicast listener for cluster discovery, etc.
              If you wish to use a unicast listener:
              - update the entries in /coherence/unicast-listener/well-known-addresses/socket for each member of the cluster
                   (or specify the corresponding system properties)
              - set the /coherence/unicast-listener/address to the host name of this machine
              See http://coherence.oracle.com/display/COH35UG/well-known-addresses for more details. -->
         <unicast-listener>
              <well-known-addresses>
                   <socket-address id=""1"">
                        <address system-property=""OSB.coherence.wka1""></address>
                        <port system-property=""OSB.coherence.wka1.port""></port>
                   </socket-address>
                   <socket-address id=""2"">
                        <address system-property=""OSB.coherence.wka2""></address>
                        <port system-property=""OSB.coherence.wka2.port""></port>
                   </socket-address>
                   <socket-address id=""3"">
                        <address system-property=""OSB.coherence.wka3""></address>
                        <port system-property=""OSB.coherence.wka3.port""></port>
                   </socket-address>
                   <socket-address id=""4"">
                        <address system-property=""OSB.coherence.wka4""></address>
                        <port system-property=""OSB.coherence.wka4.port""></port>
                   </socket-address>
                   <socket-address id=""5"">
                        <address system-property=""OSB.coherence.wka5""></address>
                        <port system-property=""OSB.coherence.wka5.port""></port>
                   </socket-address>
                   <socket-address id=""6"">
                        <address system-property=""OSB.coherence.wka6""></address>
                        <port system-property=""OSB.coherence.wka6.port""></port>
                   </socket-address>
                   <socket-address id=""7"">
                        <address system-property=""OSB.coherence.wka7""></address>
                        <port system-property=""OSB.coherence.wka7.port""></port>
                   </socket-address>
                   <socket-address id=""8"">
                        <address system-property=""OSB.coherence.wka8""></address>
                        <port system-property=""OSB.coherence.wka8.port""></port>
                   </socket-address>
                   <socket-address id=""9"">
                        <address system-property=""OSB.coherence.wka9""></address>
                        <port system-property=""OSB.coherence.wka9.port""></port>
                   </socket-address>
              </well-known-addresses>
                   <address system-property=""OSB.coherence.localhost"">127.0.0.1</address>
                   <port system-property=""OSB.coherence.localport"">7890</port>
              </unicast-listener>
              <multicast-listener>
                   <address system-property=""OSB.coherence.clusteraddress"">239.192.0.0</address>
                   <port system-property=""OSB.coherence.clusterport"">7001</port>
              </multicast-listener>
         </cluster-config>
    </coherence>
    ####<Mar 6, 2012 3:00:44.050 PM NZDT> <Notice> <StdErr> <dete-idm01.hnz.co.nz> <osb_server1> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1330999244050> <BEA-000000> <2012-03-06 15:00:44.015 Oracle Coherence 3.6.0.4 <Info> (thread=[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'): Loaded operational configuration from "zip:/u01/app/oracle/product/OSB11.1.1.4/oracle_common/modules/oracle.coherence_3.6/coherence.jar!/tangosol-coherence.xml">
    ####<Mar 6, 2012 3:00:44.053 PM NZDT> <Notice> <StdErr> <dete-idm01.hnz.co.nz> <osb_server1> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1330999244053> <BEA-000000> <2012-03-06 15:00:44.029 Oracle Coherence 3.6.0.4 <Info> (thread=[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'): Loaded operational overrides from "zip:/u01/app/oracle/product/OSB11.1.1.4/oracle_common/modules/oracle.coherence_3.6/coherence.jar!/tangosol-coherence-override-dev.xml">
    ####<Mar 6, 2012 3:00:44.053 PM NZDT> <Notice> <StdErr> <dete-idm01.hnz.co.nz> <osb_server1> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1330999244053> <BEA-000000> <2012-03-06 15:00:44.030 Oracle Coherence 3.6.0.4 <Info> (thread=[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'): Loaded operational overrides from "zip:/u01/app/oracle/product/OSB11.1.1.4/user_projects/domains/OSBD/servers/osb_server1/tmp/_WL_user/ALSB Coherence Cache Provider/yannht/APP-INF/lib/com.bea.alsb.coherence-impl.jar!/tangosol-coherence-override.xml">
    ####<Mar 6, 2012 3:00:44.073 PM NZDT> <Error> <OSB Coherence WebLogic> <dete-idm01.hnz.co.nz> <osb_server1> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <0ed5cc20267507d3:a44cfd4:135e5bc3642:-8000-0000000000000003> <1330999244073> <BEA-2032481> <Unable to initialize OSB Coherence Cache Provider because there was an error starting Coherence:
    com.bea.alsb.coherence.impl.ConfigurationException: Error starting Coherence from cache configuration file /coherence/osb-coherence-cache-config.xml:
    (Wrapped) java.lang.reflect.InvocationTargetException
         at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
         at com.tangosol.util.Base.ensureRuntimeException(Base.java:269)
         at com.tangosol.net.CacheFactory.getServiceConfig(CacheFactory.java:1355)
         at com.tangosol.net.CacheFactory.getCacheFactoryBuilderConfig(CacheFactory.java:1231)
         at com.tangosol.net.CacheFactory.getCacheFactoryBuilder(CacheFactory.java:593)
         at com.bea.alsb.coherence.impl.CoherenceProvider.<init>(CoherenceProvider.java:42)
         at com.bea.alsb.coherence.impl.CoherenceProviderFactory.newInstance(CoherenceProviderFactory.java:21)
         at com.bea.alsb.coherence.init.CoherenceAppListener.preStart(CoherenceAppListener.java:45)
         at weblogic.application.internal.flow.BaseLifecycleFlow$PreStartAction.run(BaseLifecycleFlow.java:282)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.application.internal.flow.BaseLifecycleFlow$LifecycleListenerAction.invoke(BaseLifecycleFlow.java:199)
         at weblogic.application.internal.flow.BaseLifecycleFlow.preStart(BaseLifecycleFlow.java:62)
         at weblogic.application.internal.flow.HeadLifecycleFlow.prepare(HeadLifecycleFlow.java:283)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:613)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:184)
         at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:58)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:141)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.tangosol.net.CacheFactory.getServiceConfig(CacheFactory.java:1350)
         ... 29 more
    Caused by: (Wrapped: Failed to apply the element override: /tangosol-coherence-override-dev.xml) (Wrapped: Failed to apply the element override: /tangosol-coherence-override.xml) (Wrapped: Failed to apply the element override: /coherence/osb-coherence-override.xml) (Wrapped) java.io.IOException: Exception occurred during parsing: looking for id=10, found id=1((0,29,13) Name coherence.dtd)
         at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
         at com.tangosol.coherence.component.application.console.Coherence.loadOverrides(Coherence.CDB:83)
         at com.tangosol.coherence.component.application.console.Coherence.loadConfiguration(Coherence.CDB:46)
         at com.tangosol.coherence.component.application.console.Coherence.getServiceConfig(Coherence.CDB:14)
         at com.tangosol.coherence.component.application.console.Coherence.ensureRunningLogger(Coherence.CDB:10)
         at com.tangosol.coherence.component.application.console.Coherence.getSafeCluster(Coherence.CDB:14)
         at com.tangosol.coherence.component.application.console.Coherence.getServiceConfig(Coherence.CDB:8)
         ... 34 more
    Caused by: (Wrapped: Failed to apply the element override: /tangosol-coherence-override.xml) (Wrapped: Failed to apply the element override: /coherence/osb-coherence-override.xml) (Wrapped) java.io.IOException: Exception occurred during parsing: looking for id=10, found id=1((0,29,13) Name coherence.dtd)
         at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
         at com.tangosol.coherence.component.application.console.Coherence.loadOverrides(Coherence.CDB:83)
         at com.tangosol.coherence.component.application.console.Coherence.loadOverrides(Coherence.CDB:64)
         ... 39 more
    Caused by: (Wrapped: Failed to apply the element override: /coherence/osb-coherence-override.xml) (Wrapped) java.io.IOException: Exception occurred during parsing: looking for id=10, found id=1((0,29,13) Name coherence.dtd)
         at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
         at com.tangosol.coherence.component.application.console.Coherence.loadOverrides(Coherence.CDB:83)
         at com.tangosol.coherence.component.application.console.Coherence.loadOverrides(Coherence.CDB:64)
         ... 40 more
    Caused by: (Wrapped) java.io.IOException: Exception occurred during parsing: looking for id=10, found id=1((0,29,13) Name coherence.dtd)
         at com.tangosol.run.xml.XmlHelper.loadXml(XmlHelper.java:120)
         at com.tangosol.run.xml.XmlHelper.loadXml(XmlHelper.java:155)
         at com.tangosol.coherence.component.application.console.Coherence.loadOverrides(Coherence.CDB:41)
         at com.tangosol.coherence.component.application.console.Coherence.loadOverrides(Coherence.CDB:64)
         at com.tangosol.coherence.component.application.console.Coherence.loadOverrides(Coherence.CDB:64)
         at com.tangosol.coherence.component.application.console.Coherence.loadConfiguration(Coherence.CDB:46)
         at com.tangosol.coherence.component.application.console.Coherence.getServiceConfig(Coherence.CDB:14)
         at com.tangosol.coherence.component.application.console.Coherence.ensureRunningLogger(Coherence.CDB:10)
         at com.tangosol.coherence.component.application.console.Coherence.getSafeCluster(Coherence.CDB:16)
         at com.tangosol.coherence.component.application.console.Coherence.getServiceConfig(Coherence.CDB:8)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.tangosol.net.CacheFactory.getServiceConfig(CacheFactory.java:1350)
         at com.tangosol.net.CacheFactory.getCacheFactoryBuilderConfig(CacheFactory.java:1231)
         at com.tangosol.net.CacheFactory.getCacheFactoryBuilder(CacheFactory.java:593)
         at com.bea.alsb.coherence.impl.CoherenceProvider.<init>(CoherenceProvider.java:42)
         at com.bea.alsb.coherence.impl.CoherenceProviderFactory.newInstance(CoherenceProviderFactory.java:21)
         at com.bea.alsb.coherence.init.CoherenceAppListener.preStart(CoherenceAppListener.java:45)
         at weblogic.application.internal.flow.BaseLifecycleFlow$PreStartAction.run(BaseLifecycleFlow.java:282)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.application.internal.flow.BaseLifecycleFlow$LifecycleListenerAction.invoke(BaseLifecycleFlow.java:199)
         at weblogic.application.internal.flow.BaseLifecycleFlow.preStart(BaseLifecycleFlow.java:62)
         at weblogic.application.internal.flow.HeadLifecycleFlow.prepare(HeadLifecycleFlow.java:284)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:614)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:54)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:184)
         at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:58)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:141)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:22)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:166)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
         ... 3 more
    Caused by: java.io.IOException: Exception occurred during parsing: looking for id=10, found id=1((0,29,13) Name coherence.dtd)
         at com.tangosol.run.xml.SimpleParser.parseXml(SimpleParser.java:134)
         at com.tangosol.run.xml.SimpleParser.parseXml(SimpleParser.java:71)
         at com.tangosol.run.xml.SimpleParser.parseXml(SimpleParser.java:84)
         at com.tangosol.run.xml.XmlHelper.loadXml(XmlHelper.java:116)
         ... 43 more
    The error can be caused by one of the following:
    1) The operational configuration file is invalid (see $DOMAIN_DIR$/config/osb/coherence/osb-coherence-override.xml)
    2) The cache configuration file is invalid (see $DOMAIN_DIR$/config/osb/coherence/osb-coherence-cache-config.xml)>

  • Problem deploying application - ERROR: No j2ee modules detected

    Hi
    I am new to jDeveloper, and I have created a stateless session EJB, and a JSF page with one ADF component on. When I try to deploy my application to Weblogic, I get this error:
    ERROR: No j2ee modules detected in EAR archive. Deployment aborted
    Any ideas what I can do to fix this?
    Thank you
    Søren

    Hi, I had this same problem. The whole purpose of a EAR is containing a J2EE app. It's divided on a Web Components Archive (WAR) and a JAR with the Enterprise App. I found this document useful and the app could be deployed successfully to an EAR. Remember to include all you extra libraries as another file Group of the "Libraries Type". Basically you owuld have to separatelly create the WAR deployment descriptor, the EJB JAR deployment descriptor and after that create the EAR based on one or two of them.
    [http://download.oracle.com/otndocs/tech/ias/portal/files/RG/OBE/deployToAppServer/lesson_Deployment.htm|http://download.oracle.com/otndocs/tech/ias/portal/files/RG/OBE/deployToAppServer/lesson_Deployment.htm ]
    This document is intended for Jdev10g and OracleAS 10, but the procedure is almost the same for both versions.

  • Business Rules Decision Service Error using SOA Suite with the WebLogic

    Hi,
    We are working with Oracle SOA Suite 10.1.3.4 on WebLogic 9.2. We have some decision services that work properly on Oracle SOA Suite 10.1.3.4 with Oracle Application Server. Following http://download.oracle.com/docs/cd/E12524_01/core.1013/e13058/weblogic.htm, we have made necesary changes and deployed bpel process and deployed manually Decision Services EAR Files on Weblogic.
    When we invoke decision service from BPEL proccess next error appears, Could anybody help me to knows if this is a product installation/configuration problem or there is a failure on my ear rule file?
    Any help would be appreciated. Regards,
    <messages><input><dsIn><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="payload"><assertExecuteWatchStateful name="AsignarTaller" xmlns="http://www.oracle.com/PoC/ProcesoTest/AsignarTaller">
    <configURL>http://devenv:9700/orabpel/default/modelo_proceso__test/1.0/decisionservices.decs</configURL>
    <bpelInstance>
    <processId xmlns="http://xmlns.oracle.com/bpel">modelo_proceso__test</processId>
    <processVersion xmlns="http://xmlns.oracle.com/bpel">1.0</processVersion>
    <domainId xmlns="http://xmlns.oracle.com/bpel">default</domainId>
    <processURL xmlns="http://xmlns.oracle.com/bpel">http://devenv:9700/orabpel/default/modelo_proceso__test/1.0</processURL>
    <instanceId xmlns="http://xmlns.oracle.com/bpel">80004</instanceId>
    <conversationId xmlns="http://xmlns.oracle.com/bpel"/>
    </bpelInstance>
    <assertList>
    <datosTaller xmlns="http://www.oracle.com/PoC/ReglaTalleres">
    <provincia>1</provincia>
    <nombreTaller/>
    </datosTaller>
    </assertList>
    </assertExecuteWatchStateful>
    </part></dsIn></input><fault><bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="code"><code>Server</code>
    </part><part name="summary"><summary>[Server CodecHandler] Failed to encode Failed to encode message</summary>
    </part><part name="detail"><detail>&lt;detail>
    &lt;bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webservice/fault/1.0.0" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">weblogic.wsee.codec.CodecException: Failed to encode message
         at weblogic.wsee.codec.soap11.SoapCodec.encode(SoapCodec.java:111)
         at weblogic.wsee.ws.dispatch.server.CodecHandler.encode(CodecHandler.java:103)
         at weblogic.wsee.ws.dispatch.server.CodecHandler.handleResponse(CodecHandler.java:50)
         at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:242)
         at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:226)
         at weblogic.wsee.ws.dispatch.server.ServerDispatcher.callHandleResponse(ServerDispatcher.java:142)
         at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:115)
         at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
         at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
         at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
         at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:181)
         at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:92)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3244)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Caused by: com.bea.xml.XmlException: object type unknown: class oracle.xml.parser.v2.XMLElement
         at weblogic.wsee.bind.types.SOAPElementTypeMapper.serialize(SOAPElementTypeMapper.java:94)
         at weblogic.wsee.bind.types.SOAPElementTypeMapper.serializeElement(SOAPElementTypeMapper.java:110)
         at weblogic.wsee.bind.types.TypeRegistry.serializeElement(TypeRegistry.java:161)
         at weblogic.wsee.bind.runtime.internal.BaseSerializerContext.serializeElement(BaseSerializerContext.java:123)
         at weblogic.wsee.codec.soap11.SoapEncoder.encodePart(SoapEncoder.java:272)
         at weblogic.wsee.codec.soap11.SoapEncoder.encodeReturn(SoapEncoder.java:188)
         at weblogic.wsee.codec.soap11.SoapEncoder.encodeParts(SoapEncoder.java:175)
         at weblogic.wsee.codec.soap11.SoapEncoder.encode(SoapEncoder.java:102)
         at weblogic.wsee.codec.soap11.SoapCodec.encode(SoapCodec.java:105)
         ... 24 more
    Caused by: com.bea.xml.XmlException: object type unknown: class oracle.xml.parser.v2.XMLElement
         at weblogic.wsee.bind.types.SOAPElementTypeMapper.serialize(SOAPElementTypeMapper.java:94)
         at weblogic.wsee.bind.types.SOAPElementTypeMapper.serializeElement(SOAPElementTypeMapper.java:110)
         at weblogic.wsee.bind.types.TypeRegistry.serializeElement(TypeRegistry.java:161)
         at weblogic.wsee.bind.runtime.internal.BaseSerializerContext.serializeElement(BaseSerializerContext.java:123)
         at weblogic.wsee.codec.soap11.SoapEncoder.encodePart(SoapEncoder.java:272)
         at weblogic.wsee.codec.soap11.SoapEncoder.encodeReturn(SoapEncoder.java:188)
         at weblogic.wsee.codec.soap11.SoapEncoder.encodeParts(SoapEncoder.java:175)
         at weblogic.wsee.codec.soap11.SoapEncoder.encode(SoapEncoder.java:102)
         at weblogic.wsee.codec.soap11.SoapCodec.encode(SoapCodec.java:105)
         at weblogic.wsee.ws.dispatch.server.CodecHandler.encode(CodecHandler.java:103)
         at weblogic.wsee.ws.dispatch.server.CodecHandler.handleResponse(CodecHandler.java:50)
         at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:242)
         at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:226)
         at weblogic.wsee.ws.dispatch.server.ServerDispatcher.callHandleResponse(ServerDispatcher.java:142)
         at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:115)
         at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
         at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
         at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
         at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:181)
         at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:92)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3244)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    &lt;/bea_fault:stacktrace>
    &lt;/detail>
    </detail>
    </part></bindingFault></fault></messages>

    Hi Boris,
    Looks like you have not run the post upgrade script for 10.1.3.4.
    You need to install SOA 10.1.3.4 Basic Installation. Then start following : http://download.oracle.com/docs/cd/E12524_01/core.1013/e13058/weblogic.htm#BHCIIBFB
    You basically, first install 10.1.3.4 basic SOA install, Apply the Opatch 7337034 (HOTPLUG: SOASUITE 10.1.3.4 ON WEBLOGIC 9.2 - CHANGES FOR HOTPLUGGABILITY). Install WLS 9.2 MP3.
    Now, Download the Oracle SOA Suite 10.1.3.4 WebLogic Server 9.2 : patch : 7490612.
    Then , Modify the following mandatory installation properties in the Weblogic_SOA10134_Base\SOADomain.properties file as per the documentation above.
    Cheers
    Anirudh Pucha

  • Error in using named LOV

    Hi !
    I'm using a named LOV in a tabular form and it works fine.
    Trying to use it in a "normal" form gives the error:
    Error in initializing List of Values: ORA-06561: given statement is not supported by package DBMS_SQL Unable to initialize query. Why ? What's wrong ?
    Heinz

    Hi Scott !
    I've simplified the staement in the "List of Value" of the "Shared Components" to:
    select coalesce( initcap(full_name),
                     initcap(name),
                     initcap(coalesce(last_name,'unknown',last_name||' '||first_name))
                   ) ||'  ('||status||')'   as username_d,
           coalesce( initcap(full_name),
                     initcap(name),
                     initcap(coalesce(last_name,'unknown',last_name||' '||first_name))
                   )  as username_r
    from  dart.ca_user
    order by decode(upper(status),'ACTIVE',1,2),1showing the same error.
    When I use the LOV from the shared components I will get the error.
    If I write exactly the same select statement as LOV Query there is no such error.
    Heinz

Maybe you are looking for

  • Billing block

    Hi ALL, WE HAVE CONFIGURED BILLING BLOCK IN OUR ORDER TYPE FOR CREDIT MEMO REQUEST IN V0V8. THIS BLOCK AUTOMATICALLY APPEARS WHEN WE CTREATE A CREDIT MEMO REQUEST IN VA01 T CODE. NOW THE REQUIREMENT IS THIS FIELD SHOULD BE GRAYED OUT IN VA01 TRANSACT

  • Havinf problem with my oracle transaction.Error: InvalidOperationException.

    I use the same oraclecommand for different 2 sql statements in one transaction. One is a simple select, another is an insert. What i wantto do is to select relevant data from related table(by select statement) and insert it into another one(by insert

  • User Exits for Leave Request Application in SAP R/3

    Dear All, In our project, we have implemented leave validations in BADI PT_ABS_REQ. These validations are checked when a leave request is raised from ESS Portal. However we also want to these validations to be checked when a leave is applied from PA3

  • Mac won't recognise my correct password

    My password was workign just fine a few mins ago, my mac went to sleep and asked for my passcode. I typed exacltly what i type eveytime however ut just woldnt regognise it! I am 100% sure that its correct and its just not accepting it at all. I haven

  • Thumbnails do not match image

    I finally got through several thousand pictures taken over the past five years, applying keywords and setting up smart folders so that I could begin working on some books for print. And now suddenly, nothing seems right. I'll select a group of pictur