Javax.jms.InvalidSelectorException occurs when upgrade to weblogic 12c

Recently, our team upgrade weblogic server from 11g to 12c,  some errors occur when start web application in weblogic domain.
The error is related to message driven bean,  below is the part of  ejb-jar.xml definition:
  <message-driven id="message-driven_1">
      <description>Message Driven Bean</description>
      <display-name>Message Configuration (MDB)</display-name>
      <ejb-name>Logger</ejb-name>
      <ejb-class>com.logging.mdb.Logger</ejb-class>
      <messaging-type>javax.jms.MessageListener</messaging-type>
      <transaction-type>Container</transaction-type>
      <message-destination-type>javax.jms.Queue</message-destination-type>
      <activation-config>
            <activation-config-property>
                <activation-config-property-name>messageSelector</activation-config-property-name>
                <activation-config-property-value>DELIVERY='IMMEDIATE'</activation-config-property-value>
            </activation-config-property>
            <activation-config-property>
                <activation-config-property-name>acknowledgeMode</activation-config-property-name>
                <activation-config-property-value>Auto-acknowledge</activation-config-property-value>
            </activation-config-property>
            <activation-config-property>
                 <activation-config-property-name>destinationType</activation-config-property-name>
                 <activation-config-property-value>javax.jms.Queue</activation-config-property-value>
            </activation-config-property>
      </activation-config>
  </message-driven>
When start application below errors show up:
<Dec 18, 2013 6:24:05 AM PST> <Warning> <EJB> <SLC02PGO> <AdminServer> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1387376645415> <BEA-010061> <The Message-Driven EJB Logger is unable to connect to the JMS destination edx/queue/logger. The Error was:
javax.jms.InvalidSelectorException: weblogic.messaging.kernel.InvalidExpressionException: Expression : "DELIVERY='IMMEDIATE'"
Nested exception: javax.jms.InvalidSelectorException: weblogic.messaging.kernel.InvalidExpressionException: Expression : "DELIVERY='IMMEDIATE'"
Nested exception: javax.jms.InvalidSelectorException: weblogic.messaging.kernel.InvalidExpressionException: Expression : "DELIVERY='IMMEDIATE'"
Nested exception: javax.jms.InvalidSelectorException: weblogic.messaging.kernel.InvalidExpressionException: Expression : "DELIVERY='IMMEDIATE'"
Nested exception: javax.jms.InvalidSelectorException: weblogic.messaging.kernel.InvalidExpressionException: Expression : "DELIVERY='IMMEDIATE'"
####<Dec 18, 2013 6:24:15 AM PST> <Warning> <EJB> <SLC02PGO> <AdminServer> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1387376655414> <BEA-010096> <The Message-Driven EJB MessageDispatcher is unable to connect to the JMS destination or bind to JCA resource adapter edx.queue.outbound. The onnection failed after 124 attempts. The MDB will attempt to reconnect/rebind every 10 seconds. This log message will repeat every 600 seconds until the condition clears.>
It works well in weblogic 11g,   not sure whether there's any changes in weblgic 12c.
I'm appreciate if there's someone can help me on this issue.
    <message-driven id="message-driven_1">
      <description>Message Driven Bean</description>
      <display-name>Message Configuration (MDB)</display-name>
      <ejb-name>Logger</ejb-name>
      <ejb-class>com.edocs.fs.logging.mdb.Logger</ejb-class>
      <messaging-type>javax.jms.MessageListener</messaging-type>
      <transaction-type>Container</transaction-type>
      <message-destination-type>javax.jms.Queue</message-destination-type>
      <activation-config>
        <activation-config-property>
          <activation-config-property-name>messageSelector</activation-config-property-name>
          <activation-config-property-value>DELIVERY='IMMEDIATE'</activation-config-property-value>
        </activation-config-property>
        <activation-config-property>
          <activation-config-property-name>acknowledgeMode</activation-config-property-name>
          <activation-config-property-value>Auto-acknowledge</activation-config-property-value>
        </activation-config-property>
        <activation-config-property>
          <activation-config-property-name>destinationType</activation-config-property-name>
          <activation-config-property-value>javax.jms.Queue</activation-config-property-value>
        </activation-config-property>
      </activation-config>
      <resource-ref id="ResRef_Logger_1">
        <res-ref-name>jdbc/LoggerDataSource</res-ref-name>
        <res-type>javax.sql.DataSource</res-type>
        <res-auth>Container</res-auth>
      </resource-ref>
    </message-driven>

Hi,
I debug the application, I found my @ViewScoped ManagedBeans, they're recreated after you click a button or select a item in combobox
Here is a piece of code:
    @PostConstruct
    public void resolveEntity() {
        Object sEntity = FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get("entity");
        entity = (BctTbOportunidade) sEntity;
         FacesContext.getCurrentInstance().getExternalContext().getSessionMap().remove("entity");
        if (entity == null) {
            entity = new BctTbOportunidade();
I use @postConstruct to get a entity from another page in sessionMap(I set a item from a table and use this method to modify a entity in a other page).
When I click a button or select a item in combobox in same page @PostConstruct method is called but values are lost. No Exceptions are thrown by server.
I found a artice written by BalluC that some versions of jsf 2.1 has this behavior The BalusC Code: The benefits and pitfalls of @ViewScoped
I already configured my web.xml to set false javax.faces.PARTIAL_STATE_SAVING 
But this behavior continues.
The jsf version deployed in my weblogic 12c is 2.1.7.

Similar Messages

  • Javax.jms.InvalidSelectorException: The selector is invalid

    Hi ,
    I am getting the following exception while running a JMS program
    javax.jms.InvalidSelectorException: The selector is invalid: name !=Doctor
    the code as follows
    jndiContext = new InitialContext(env);
                   TopicConnectionFactory factory = (TopicConnectionFactory) jndiContext.lookup("TopicConnectionFactory");
                   //pubtopic = (Topic) jndiContext.lookup("topic/testTopic");
                   subtopic = (Topic) jndiContext.lookup("topic/testTopic");
                   TopicConnection conn = factory.createTopicConnection();
                   tsession = conn.createTopicSession(false, Session.CLIENT_ACKNOWLEDGE);
                   //publisher = tsession.createPublisher(topic);
                   //String name = "Doctor";
                   subscriber = tsession.createDurableSubscriber(subtopic,"testTopic","name != 'Doctor'",false);
    advance thanks
    syamsani

    Thanks for the reply.
    I think you are correct if i give like following it is working fine.
    String filter = "name in('doctor')";
    subscriber = tsession.createDurableSubscriber(subtopic,"labtech",filter,false);
    Syamsani
    I have one more issue regarding durable subscriptions. when i publish a message in persistance mode like below
    publisher.publish( myMessage,
              DeliveryMode.PERSISTENT,
              Message.DEFAULT_PRIORITY,
              180
    the durable subscriber not able to get the message when he is in both states offline/online. I think in PERSISTENT mode the durable subscriber should receive the message at any cost other wise there is no meaning of guaranteed messaging. The above method is working fine in both offline/online states when the time value given as 0 or more than one second. I am running my application in JBoss 4.2.2GA.
    Syamsani
    ------------------------------------

  • Upgrading to weblogic 12c issue with JSF

    Migrating to the Weblogic 12c faced so many issue with the shared class library. After fixing all the issue stuck with JSF and on google everywhere it was mentioned error happening due to multiple JSF version colliding.
    My whole application works like a charm in 10.3.6 but same app not working after updating the spring 4 and hibernate 4.
    This is the error I am receiving below errors ...
    <javax.enterprise.resource.webcontainer.jsf.application> <BEA-000000> <JSF1029: The specified InjectionProvider implementation 'com.bea.faces.WeblogicInjectionProvider' does not implement the InjectionProvider interface. >
    1. Cause: Unable to create a new instance of 'org.springframework.web.jsf.DelegatingVariableResolver': javax.faces.FacesException: org.springframework.web.jsf.DelegatingVariableResolver
    2. Cause: Unable to create a new instance of 'org.springframework.web.jsf.DelegatingVariableResolver': javax.faces.FacesException: org.springframework.web.jsf.DelegatingVariableResolver
        at com.sun.faces.config.processor.AbstractConfigProcessor.createInstance(Unknown Source)
        at com.sun.faces.config.processor.ApplicationConfigProcessor.addVariableResolver(Unknown Source)
        at com.sun.faces.config.processor.ApplicationConfigProcessor.process(Unknown Source)
        at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(Unknown Source)
        at com.sun.faces.config.processor.LifecycleConfigProcessor.process(Unknown Source)
        Truncated. see log file for complete stacktrace
    Caused By: javax.faces.FacesException: org.springframework.web.jsf.DelegatingVariableResolver
        at com.sun.faces.config.processor.AbstractConfigProcessor.loadClass(Unknown Source)
        at com.sun.faces.config.processor.AbstractConfigProcessor.createInstance(Unknown Source)
        at com.sun.faces.config.processor.ApplicationConfigProcessor.addVariableResolver(Unknown Source)
        at com.sun.faces.config.processor.ApplicationConfigProcessor.process(Unknown Source)
        at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(Unknown Source)
        Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: org.springframework.web.jsf.DelegatingVariableResolver
        at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
        at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
        at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
        Truncated. see log file for complete stacktrace
    3. ]] Root cause of ServletException.
    java.lang.IllegalStateException: Could not find backup for factory javax.faces.context.FacesContextFactory.
        at javax.faces.FactoryFinderInstance.getFactory(Unknown Source)
        at javax.faces.FactoryFinder.getFactory(Unknown Source)
        at javax.faces.webapp.FacesServlet.init(Unknown Source)
        at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:299)
        at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:250)
        Truncated. see log file for complete stacktrace
    4.Error> <javax.faces> <BEA-000000> <Application was not properly initialized at startup, could not find Factory: javax.faces.application.ApplicationFactory. Attempting to find backup.>
    <Error> <javax.enterprise.resource.webcontainer.jsf.config> <BEA-000000> <Unexpected exception when attempting to tear down the Mojarra runtime
    java.lang.IllegalStateException: Could not find backup for factory javax.faces.application.ApplicationFactory.
        at javax.faces.FactoryFinder$FactoryManager.getFactory(FactoryFinder.java:1010)
        at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:342)
        at com.sun.faces.config.InitFacesContext.getApplication(InitFacesContext.java:141)
        at com.sun.faces.config.ConfigureListener.contextDestroyed(ConfigureListener.java:314)
        at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:583)
        Truncated. see log file for complete stacktrace
    I had the classloader from weblogic but unable to find if there is anything related with Multiple JSF versions colliding. Here is the classloader log
    **System Classloaders**
    Type: sun.misc.Launcher$ExtClassLoader
    HashCode: 1956433926
    Classpath:
    /C:/Java/jdk1.7.0_45/jre/lib/ext/access-bridge-64.jar
    /C:/Java/jdk1.7.0_45/jre/lib/ext/dnsns.jar
    /C:/Java/jdk1.7.0_45/jre/lib/ext/jaccess.jar
    /C:/Java/jdk1.7.0_45/jre/lib/ext/localedata.jar
    /C:/Java/jdk1.7.0_45/jre/lib/ext/sunec.jar
    /C:/Java/jdk1.7.0_45/jre/lib/ext/sunjce_provider.jar
    /C:/Java/jdk1.7.0_45/jre/lib/ext/sunmscapi.jar
    /C:/Java/jdk1.7.0_45/jre/lib/ext/zipfs.jar
    Type: sun.misc.Launcher$AppClassLoader
    HashCode: 345487281
    Classpath:
    /C:/Oracle12c/Middleware/modules/features/weblogic.server.modules_12.1.1.0.jar
    /C:/Oracle12c/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar
    /C:/Oracle12c/Middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar
    /C:/Oracle12c/Middleware/patch_ocp371/profiles/default/sys_manifest_classpath/weblogic_patch.jar
    /C:/Oracle12c/Middleware/patch_wls1211/profiles/default/sys_manifest_classpath/weblogic_patch.jar
    /C:/Oracle12c/Middleware/wlserver_12.1/common/derby/lib/derbyclient.jar
    /C:/Oracle12c/Middleware/wlserver_12.1/server/lib/weblogic.jar
    /C:/Oracle12c/Middleware/wlserver_12.1/server/lib/weblogic_sp.jar
    /C:/Oracle12c/Middleware/wlserver_12.1/server/lib/webservices.jar
    /C:/Oracle12c/Middleware/wlserver_12.1/server/lib/xqrl.jar
    /C:/Program%20Files/Java/jdk1.7.0_45/lib/tools.jar
    Type: weblogic.utils.classloaders.GenericClassLoader
    HashCode: 1277718374
    Classpath:
    **Application Classloaders**
    Type: weblogic.utils.classloaders.FilteringClassLoader
    HashCode: 929366372
    Filter: [antlr.*, antlr.collections.*, antlr.collections.impl.*, antlr.debug.misc.*, com.sun.activation.*, com.sun.istack.*, com.sun.mail.*, com.sun.xml.*, org.apache.commons.*, org.joda.time.*, org.apache.xalan.*, org.apache.xml.*, org.apache.wml.*, org.apache.xerces.*, org.apache.xpath.*, com.ctc.wstx.*, org.slf4j.*, javax.faces.*, com.sun.faces.*, com.bea.faces.*, com.sun.el.*, javax.el.*, javassist.*]
    Classpath: empty
    Type: weblogic.utils.classloaders.GenericClassLoader
    HashCode: 2137066604
    Classpath:
    **Type: weblogic.utils.classloaders.FilteringClassLoader**
    HashCode: 1212049573
    Filter: []
    Classpath: empty
    Type: weblogic.utils.classloaders.ChangeAwareClassLoader
    HashCode: 1604673952
    Classpath:
    C:\s-ear-1.0-SNAPSHOT_4
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\classes
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\FastInfoset-1.2.12.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\_wl_cls_gen.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\acegi-security-1.0.7.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\activation-1.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\activation.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\antlr-2.7.7.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\aopalliance-1.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\aspectjrt-1.8.5.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\aspectjweaver-1.8.5.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\backport-util-concurrent-3.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\bcprov-jdk16-140.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\cacauth-2.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\camel-core-2.5.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\camel-josql-2.5.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\caps-handshake-3.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\caps2-liquibase-1.0-SNAPSHOT.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\caps2domain-1.0-SNAPSHOT.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\caps2util-1.0-SNAPSHOT.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\cloning-1.7.4.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-beanutils-1.8.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-codec-1.9.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-collections-3.2.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-dbcp-1.4.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-digester-2.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-httpclient-3.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-io-1.4.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-lang-2.4.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-logging-1.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-logging-api-1.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-management-1.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\commons-pool-1.5.4.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\dom4j-1.6.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\gentlyweb-utils-1.5.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\hibernate-commons-annotations-4.0.4.Final.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\hibernate-core-4.2.18.Final.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\hibernate-entitymanager-4.2.18.Final.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\hibernate-jpa-2.0-api-1.0.1.Final.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\hibernate-validator-4.2.0.Final.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\icefaces-3.2.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\icefaces-ace-3.2.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\icefaces-compat-3.2.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\icepush-3.2.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\itext-4.2.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\itextpdf-5.0.6.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jackson-core-asl-1.9.9.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jackson-core-lgpl-1.9.9.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jackson-mapper-asl-1.9.9.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jasperreports-ca-4.8.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\javassist-3.18.2-GA.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\javax.el-api-2.2.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\javax.faces-2.2.9.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\javax.inject-1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jax-qname.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jaxb-api-2.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jaxb-api.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jaxb-impl-2.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jaxb1-impl.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jaxp-api.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jaxws-api-2.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jboss-archive-browsing-5.0.0alpha-200607201-119.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jboss-logging-3.1.3.GA.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jboss-logging-annotations-1.2.0.Beta1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jboss-transaction-api_1.1_spec-1.0.1.Final.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jcl-over-slf4j-1.5.2.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jersey-bundle-1.18.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\joda-time-2.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\joda-time-hibernate-1.3.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\josql-1.5.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\josql-2.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\json-20140107.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jsr173_1.0_api.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jsr250-api-1.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jsr311-api-1.1.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jstl-1.2.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\jta-1.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\log4j-1.2.14.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\mail-1.4.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\mail.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\objenesis-1.2.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\opencsv-1.7.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\oro-2.0.8.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\portlet-api-2.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\primefaces-3.4.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\quartz-1.8.4.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\saaj-api-1.3.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\saaj-api.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\saaj-impl.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\serializer-2.7.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\serializer.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\service-1.0-SNAPSHOT.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\servlet.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\slf4j-api-1.5.2.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\slf4j-log4j12-1.5.2.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-aop-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-aspects-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-beans-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-context-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-context-support-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-core-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-expression-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-jdbc-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-jms-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-orm-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-oxm-3.0.5.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-security-core-4.0.0.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-tx-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-web-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-webmvc-4.0.9.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-ws-core-2.0.0.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-ws-security-2.0.0.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\spring-xml-2.0.0.RELEASE.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\stax-api-1.0-2.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\3capture-1.0.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\s-beans-1.0-SNAPSHOT.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\usertype.core-3.1.0.CR10.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\usertype.jodatime-1.9.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\usertype.spi-3.1.0.CR10.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\validation-api-1.0.0.GA.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\wss4j-1.5.8.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\xalan-2.7.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\xercesImpl-2.8.1.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\xercesImpl.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\xml-apis.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\xmldsig.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\xmlsec-1.4.3.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\xmlsec.jar
    C:\s-ear-1.0-SNAPSHOT_4\war\WEB-INF\lib\xws-security-3.0.jar
    jsf myfaces weblogic1
    Here are links for more details.
    http://stackoverflow.com/questions/29857571/weblogic-12c-java-lang-illegalstateexception-could-not-find-backup-for-factory
    http://www.coderanch.com/t/649308/JSF/java/Faces-Servlet-failed-preload-startup
    Sorry incase question not formatted. Any suggestions appreciated.

    hi.
    I had faced this behavior on weblogic 12c(12.1.1).
    Maybe This problem was solved by 12.1.2.
    But, when text item submitted together with a upload file, multibyte characters was garbage characters.
    See Multibyte character was garbage characters, when multipart requested (Multipartリクエストで文字化けが発生する) on WebLogic12(12.1.2.0)

  • Strange ADF components behavior when deploy to weblogic 12C

    Hi,
    I'm developing a EJB/JavaEE through Jdeveloper with ADF faces. When I deploy the application to Embedded Weblogic 12C everything seems to be ok.
    However, when I deploy on a Production Environment(weblogic server 12c, jdk 1.7u45 and ADF runtime 12c[JRF already installed] running on Oracle Linux 6) some components do not work properly after a PPR(af:button, af:selectOneChoice, etc).
    My development config is Jdeveloper 12C, running application with embedded Weblogic 12C, jdk1.7.0u45 running windows 8.
    It's hard to find out what is wrong because there's no meaningful messages in Logs. All I find in log after components stop to work is:
    <12/11/2013 08h53min43s BRT> <Warning> <javax.enterprise.resource.webcontainer.jsf.application> <jsf.viewhandler.requestpath.recursion> <JSF1015: O caminho da solicitação '/faces/bct/candidato/candidatoCrud.jsf' começa com uma ou mais ocorrências do mapeamento do prefixo do FacesServlet '/faces'.>
    <12/11/2013 08h54min10s BRT> <Info> <Health> <BEA-310002> <17% of the total memory in the server is free.>
    <12/11/2013 08h54min13s BRT> <Notice> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.795--ServerSession(29230081)--EclipseLink, version: Eclipse Persistence Services - 2.4.2.v20130514-5956486>
    <12/11/2013 08h54min13s BRT> <Notice> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.796--ServerSession(29230081)--Server: 12.1.2.0.0>
    <12/11/2013 08h54min13s BRT> <Info> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.799--ServerSession(29230081)--Connection(19752361)--connecting(DatabaseLogin(
      platform=>Oracle11Platform
      user name=> ""
      connector=>JNDIConnector datasource name=>jdbc/ITConsultingERPConnDS
    ))>
    <12/11/2013 08h54min13s BRT> <Info> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.975--ServerSession(29230081)--Connection(18498814)--Connected: jdbc:oracle:thin:@//192.168.0.30:1521/erphomo
      User: ERPHOMO
      Database: Oracle  Version: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
      Driver: Oracle JDBC driver  Version: 11.2.0.3.0>
    <12/11/2013 08h54min13s BRT> <Info> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.976--ServerSession(29230081)--Connection(12218956)--connecting(DatabaseLogin(
      platform=>Oracle11Platform
      user name=> ""
      connector=>JNDIConnector datasource name=>jdbc/ITConsultingERPConnDS
    ))>
    <12/11/2013 08h54min13s BRT> <Info> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.976--ServerSession(29230081)--Connection(28954182)--Connected: jdbc:oracle:thin:@//192.168.0.30:1521/erphomo
      User: ERPHOMO
      Database: Oracle  Version: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
      Driver: Oracle JDBC driver  Version: 11.2.0.3.0>
    <12/11/2013 08h54min14s BRT> <Notice> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:14.31--ServerSession(29230081)--ERPItconsultingfile:/C:/Users/Raphael/AppData/Roaming/JDeveloper/system12.1.2.0.40.66.68/DefaultDomain/servers/DefaultServer/tmp/_WL_user/ERPItconsulting/9bxc8o/war/WEB-INF/lib/_wl_cls_gen.jar_Model login successful>

    Hi,
    I debug the application, I found my @ViewScoped ManagedBeans, they're recreated after you click a button or select a item in combobox
    Here is a piece of code:
        @PostConstruct
        public void resolveEntity() {
            Object sEntity = FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get("entity");
            entity = (BctTbOportunidade) sEntity;
             FacesContext.getCurrentInstance().getExternalContext().getSessionMap().remove("entity");
            if (entity == null) {
                entity = new BctTbOportunidade();
    I use @postConstruct to get a entity from another page in sessionMap(I set a item from a table and use this method to modify a entity in a other page).
    When I click a button or select a item in combobox in same page @PostConstruct method is called but values are lost. No Exceptions are thrown by server.
    I found a artice written by BalluC that some versions of jsf 2.1 has this behavior The BalusC Code: The benefits and pitfalls of @ViewScoped
    I already configured my web.xml to set false javax.faces.PARTIAL_STATE_SAVING 
    But this behavior continues.
    The jsf version deployed in my weblogic 12c is 2.1.7.

  • Error occured when upgrading  PI (7.0) system  from SP10 to SP 20.

    We have upgrade our PI (7.0) system  from SP10 to SP 20.
    Here the proxy is used to update the database.
    Itu2019s failing at the synchronous proxy when XI is sending data to Proxy.
    Problem still exists even after regenerating the proxy.
    The following problem is faced
    The request  XML is like
    <?xml version="1.0" encoding="utf-8" ?><ns1:MT_PROCESS_INSTANCE_CREATE
    xmlns:ns1="http://spc_processes/generic"><OBJECT_TYPE>P01</OBJECT_TYPE><OBJECT_ID>4B7B87708C
    770176E10080000sa</OBJECT_ID><LANGUAGE>EN</LANGUAGE><DESCRIPTION>20100218-001 : xxxx
    bbb</DESCRIPTION><STATUS>01</STATUS><TYPE>2</TYPE><REQUEST_ID>200-001</REQUEST_ID><OBJ
    ECT_KEYTYPE>LASTNAME</OBJECT_KEYTYPE><OBJECT_KEYVALUE>zzzzzz</OBJECT_KEYVALUE><LAST_STEP_STATU
    S>00</LAST_STEP_STATUS></ns1:MT_PROCESS_INSTANCE_CREATE>
    And the response XML is
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?><!-- Inbound Message --> <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1"><SAP:Category>XIProxy</SAP:Category><SAP:Code area="ABAP">PARSE_APPLICATION_DATA</SAP:Code><SAP:P1>Request Message</SAP:P1>
    <SAP:P2>CX_ST_MATCH_ELEMENT</SAP:P2>
    <SAP:P3>/1SAI/TXS00000000000000000036 Line 289</SAP:P3>
    <SAP:P4>System expected the element '{http://spc_view_db/generic}MT_PROCESS_INSTANCE' XML Bytepos.: 112  XML Path: ns1:MT_PROCESS_INSTANCE_CREATE(1)</SAP:P4>
    <SAP:AdditionalText/>
    <SAP:ApplicationFaultMessage namespace=""/>
    <SAP:Stack>Error during XML =&gt; ABAP conversion: Request Message; CX_ST_MATCH_ELEMENT in /1SAI/TXS00000000000000000036 Line 289 System expected the element '{http://spc_view_db/generic}MT_PROCESS_INSTANCE' XML Bytepos.: 112  XML Path: ns1:MT_PROCESS_INSTANCE_CREATE(1)
    System expected the element '{http://spc_view_db/generic}MT_PROCESS_INSTANCE'
    </SAP:Stack><SAP:Retry>M</SAP:Retry></SAP:Error>
    I'm a bit new to PI.Please explain in detail.
    Thanks in advance!!

    Hello
    Try the following workaround:
    Go to trx: Sproxset:                                  
    - Name: ST_USE_LAX_ON                                 
    - Value: X                                            
    - User: <Empty >                                      
    - Inactive: <Empty >     
    Check the notes below:
    #1169688 New Features in Release 7.0 (SP14)
    #1162160 CX_ST_MATCH_ELEMENT in XML INBOUND processing
    Regards
    Mark

  • Appc error when upgrade from weblogic sp5 to sp6

    Hi,
    I got an appc compilation error for an Entity Bean. It is exactly the same code. the generated xxxx__WebLogic_CMP_RDBMS.java compiles in weblogic8.1sp5. After upgrading to sp6, I got the following error for "cannot resolve symbol
    symbol : method setStringForClob (int,java.lang.String)
    location: interface oracle.jdbc.OraclePreparedStatement".
    I checked the generated java code. addition code is generated on sp6 which reference to oracle.jdbc.OraclePreparedStatement.setStringForClob().
    The databased used is oracle 9i. driver is oracle shipped ojdbc14.jar for 9i. If I change to 10g driver, it compiles of course. But we don't have plan to upgrade the driver.
    Would someone help me find what is wrong.
    Thanks alot
    JC

    any ideas about this problem?? i am getting the same error. is it a bug in the weblogic sp 6??
    Thanks,
    Raj

  • What kind of problems can occur when upgrading to Mountain Lion?n

    Why are so many users complaining of problems after installing Mountain Lion?

    Lack of preparation, often.  For example, http://roaringapps.com/apps:table lists applications that do not work under ML.  Especially PPC applications that require Rosetta.
    Also people do not make a decent backup first, so any issues the require starting over (they will happen occasionally) require major rebuild of what they had before starting the upgrade.
    Not enough free disk space causes OSX that needs 15% free to act strangely.
    Many who do not bother reporting anything had no issues and are happly using ML -- like out happy friend Kappy.

  • Issue with Weblogic 12c(12.1.2)

    My service is working as expected in weblogic 11g.Now we are upgrading to weblogic 12c.
    We are facing an issue of "NullPointerException" , due to the values, not getting  populated during server startup from ra.xml.
    In weblogic 11g the control is not going to that location, which is leading to an exception in Web logic 12c(NPE).
    If we validate the null values, control is invoking twice, one with null values and another time with actual values from ra.xml.
    Please help me on the same.
    Thanks & Regards
    Vijay
    Following is the error message
    WARNING: Warning from ejbc: EJB name WorkpointRulesEJB is defined in weblogic-ej
    b-jar xml but the corresponding bean is missing. Please check that the name is a
    ccurate
    <Dec 30, 2013 9:34:06 PM IST> <Warning> <Connector> <BEA-190155> <Compliance che
    cking and validation of the resource adapter C:\Oracle\Middleware\Oracle_Home\us
    er_projects\domains\base_domain\applications\iam_im.ear\policyserver.rar resulte
    d in the following warnings:
    In META-INF/ra.xml element <connection-definition> the property "ValidateSMHeade
    rsWithPS" of type "java.lang.String": unable to find a set method in class "com.
    netegrity.ra.policyserver.impl.PSManagedConnectionFactory">
    <Dec 30, 2013 9:34:06 PM IST> <Warning> <Connector> <BEA-190155> <Compliance che
    cking and validation of the resource adapter C:\Oracle\Middleware\Oracle_Home\us
    er_projects\domains\base_domain\applications\iam_im.ear\workflow.rar resulted in
    the following warnings:
    In META-INF/ra.xml element <connection-definition> the property "RunGeneralMonit
    or" of type "java.lang.Boolean": unable to find a set method in class "com.neteg
    rity.ra.workflow.impl.WFManagedConnectionFactory">
    <Dec 30, 2013 9:34:10 PM IST> <Error> <Connector> <BEA-199212> <Failed to create
    connection pool [iam/im/rar/Workflow] due to error: Unexpected exception thrown
    by resource adapters ManagedConnectionFactory implementation "{0}", {1}. -  [ja
    va.lang.NullPointerException
            at com.netegrity.ra.workflow.impl.WFManagedConnectionFactory.hashCode(WF
    ManagedConnectionFactory.java:463)
            at java.lang.Object.toString(Object.java:219)
            at java.lang.String.valueOf(String.java:2826)
            at java.lang.StringBuilder.append(StringBuilder.java:115)
            at weblogic.connector.common.Utils.setProperties(Utils.java:102)
            at weblogic.connector.outbound.RAOutboundManager.initializeMCF(RAOutboun
    dManager.java:552)
            at weblogic.connector.outbound.RAOutboundManager.createConnectionFactory
    Internal(RAOutboundManager.java:475)
            at weblogic.connector.outbound.RAOutboundManager.createConnectionFactory
    (RAOutboundManager.java:433)
            at weblogic.connector.outbound.RAOutboundManager.initialize(RAOutboundMa
    nager.java:409)
            at weblogic.connector.outbound.RAOutboundManager.<init>(RAOutboundManage
    r.java:150)
            at weblogic.connector.common.RAInstanceManager.createOutboundManager(RAI
    nstanceManager.java:2324)
            at weblogic.connector.common.RAInstanceManager.createResourceAdapter(RAI
    nstanceManager.java:1271)
            at weblogic.connector.common.RAInstanceManager.activate(RAInstanceManage
    r.java:458)
            at weblogic.connector.deploy.ConnectorModule.activate(ConnectorModule.ja
    va:304)
            at weblogic.application.internal.ExtensibleModuleWrapper$ActivateStateCh
    ange.next(ExtensibleModuleWrapper.java:317)
            at weblogic.application.internal.ExtensibleModuleWrapper$ActivateStateCh
    ange.next(ExtensibleModuleWrapper.java:313)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:42)
            at weblogic.application.internal.ExtensibleModuleWrapper.activate(Extens
    ibleModuleWrapper.java:121)
            at weblogic.application.internal.flow.ModuleListenerInvoker.activate(Mod
    uleListenerInvoker.java:114)
            at weblogic.application.internal.flow.ModuleStateDriver$2.next(ModuleSta
    teDriver.java:192)
            at weblogic.application.internal.flow.ModuleStateDriver$2.next(ModuleSta
    teDriver.java:187)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:42)
            at weblogic.application.internal.flow.ModuleStateDriver.activate(ModuleS
    tateDriver.java:58)
            at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(De
    ploymentCallbackFlow.java:145)
            at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.ja
    va:729)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:42)
            at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.
    java:258)
            at weblogic.application.internal.EarDeployment.activate(EarDeployment.ja
    va:61)
            at weblogic.application.internal.DeploymentStateChecker.activate(Deploym
    entStateChecker.java:165)
            at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(Ap
    pContainerInvoker.java:80)
            at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicD
    eployment.java:222)
            at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromSer
    verLifecycle(BasicDeployment.java:414)
            at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(De
    ploymentAdapter.java:51)
            at weblogic.management.deploy.internal.DeploymentAdapter.activate(Deploy
    mentAdapter.java:200)
            at weblogic.management.deploy.internal.AppTransition$2.transitionApp(App
    Transition.java:30)
            at weblogic.management.deploy.internal.ConfiguredDeployments.transitionA
    pps(ConfiguredDeployments.java:240)
            at weblogic.management.deploy.internal.ConfiguredDeployments.activate(Co
    nfiguredDeployments.java:169)
            at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(Conf
    iguredDeployments.java:123)
            at weblogic.management.deploy.internal.DeploymentServerService.resume(De
    ploymentServerService.java:191)
            at weblogic.management.deploy.internal.DeploymentServerService.start(Dep
    loymentServerService.java:99)
            at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)

    Hi Sai,
    it did  not solve my issue. I am getting SocketException.The post you were talking about is BindException.
    Please help me if you can do something on this.
    Some where i have seen like this
    Using IPv6-Formatted Addresses
    Platform: All
    When using an IPv6-formatted address for WebLogic Server, the URL should include square brackets ('[' and ']') for the host address. Otherwise, WLST may fail to connect to the running server.
    Workaround
    Add square brackets to the host address. For example:
    t3://[fe80:0:0:0:203:baff:fe2f:59e5]:9991.
    But i dont know in which file these hosts contains.

  • Install Weblogic 12c zip for developement on Windows 7

    I have downloaded wls1211_dev.zip for development purpose (instead of full install using windows installer), for installing on the windows 7 (64 bit). After extracting the zip contents, I set up the environment variables for JAVA_HOME, MW_HOME and JAVA_VENDOR as stated in the readme.txt included in the zip distribution. I also made sure to set the environment variables using 8.3 names (old DOS names) by using dir /x command. Here are the environmental settings:
    E:\WLS12c>echo %JAVA_HOME%
    C:\PROGRA~1\Java\JDK17~1.0_0\bin
    E:\WLS12c>echo %MW_HOME%
    E:\WLS12c
    E:\WLS12c>echo %JAVA_VENDOR%
    Sun
    But every time I run configure.cmd, I get the following error:
    (I checked the permissions on the directory where I have unzipped and it is full control for me (not an administrator user). I tried to run the configure.cmd using administrative user but the same result). I can also navigate to the directories using 8.3 names. I am able to create delete and update files and folder in the target directories as non-administrative user. I have no idea why I should be getting the following errors.
    WebLogic Server 12c (12.1.1.0) Zip Configuration
    MW_HOME: E:\WLS12c
    JAVA_HOME: C:\PROGRA~1\Java\JDK17~1.0_0\bin
    783 jar files are being unpacked.
    Please wait, title bar will show progress ...
    The system cannot find the path specified.
    -- above line repeated I guess 783 times
    "ACLs are being setup for E:\WLS12c Please wait..."
    The system cannot find the path specified.
    The WebLogic Server wasn't found in directory E:\WLS12c\wlserver\server.
    Please edit the setWLSEnv.cmd script so that the WL_HOME
    variable points to the WebLogic installation directory.
    Your environment has not been set.
    The system cannot find the path specified.
    I will appreciate your help in this regard.
    Thanks in advance
    Salman

    Hi,
    This issue usually occurs when you install WebLogic Server using generic jar installer and when launching installation with incorrect JDK version.It may be improper JDK installation or incorrect JAVA HOME setup at OS level.
    To resolve this issue, uninstall current WebLogic installation using generic.jar installer that is referring incorrect JDK and relaunch the installation with correct JDK by setting correct JAVA HOME system variables. Below are steps to be followed to address this issue.
    Un-install WebLogic from your machine.
    If the installer is on a network drive it's recommended to copy the generic installer to your local file system and to a folder with no spaces or strange characters.
    Remove the system variables you've set: JAVA_HOME, JAVA_VENDOR, and remove the %JAVA_HOME%\bin from the path system variable.
    Run the installer as follows:
    Open a command prompt
    Change directory to \JDK_64\bin folder and execute:
    java.exe -jar -Xms1024m server1001_generic.jar
    After the installation is completed you can proceed to safely run the Configuration Wizard (config.cmd)
    Regards,
    Kal

  • JMS issues when migration from weblogic 9.2 to 10.3.5

    We are facing some issues when migration from weblogic 9.2 to 10.3.5
    In  weblogic 9.2 :_
    BMP Entity EJBs used in our project are read-only in nature using entity cache, below is the configuration details
    <!DOCTYPE weblogic-ejb-jar PUBLIC "-//BEA Systems, Inc.//DTD WebLogic 6.0.0 EJB//EN" "http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd">
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>
    Company
    </ejb-name>
    <entity-descriptor>
    <pool>
    <max-beans-in-free-pool>300</max-beans-in-free-pool>
    <initial-beans-in-free-pool>150</initial-beans-in-free-pool>
    </pool>
    <entity-cache>
    <max-beans-in-cache>3500</max-beans-in-cache>
    <idle-timeout-seconds>100000</idle-timeout-seconds>
    <read-timeout-seconds>0</read-timeout-seconds>
    <concurrency-strategy>ReadOnly</concurrency-strategy>
    </entity-cache>
    Entity beans will get refreshed using the JMS messges. with in the MDB descriptor files(weblogic-ejb-jar.xml) we are using the provider URL directly and XA enabled connection factory is set to false.
    migration to Weblogic 10.3.5_
    With the same configurations MDB are not not getting deployed in weblogic 10 with some exception, so we removed the provider URL from weblogic-ejb-jar.xml and changed the JMS configuration to use foreign JMS and XA enable connection factory is set to true. Now when ever the JMS message is triggered Entity bean is not getting refreshed with the updated values. i.e values are stale.
    Can some one look into this and provide your inputs to resolve this issue.

    I think the Entity bean refresh problem appears to be unrelated to MDBs. The MDB is only responsible for getting the message to your application (which in turn interacts with Entity beans). You might want to try posting your question to an EJB newsgroup.
    Tom

  • When using rabbitmq-jms for vFabric RabbitMQ javax.jms.Message.getJMSDestination does not return the actual destination when it is received from a consumer listening on a Topic with a wild card

    When using rabbitmq-jms for vFabric RabbitMQ javax.jms.Message.getJMSDestination does not return the actual destination when it is received from a consumer listening on a Topic with a wild card. I have tested with both 1.0.3 and 1.0.5 clients with RabbitMQ 3.1.5.
    I was wondering if the community was aware of this problem and if there are any workarounds? If not what is the proper channel to file a bug report. An example code snippet is below. The test fails because the TextMessageMatcher expects the destination passed in on construction (second parameter) to equal the desination on the message received (aquired from getJMSDestination).
            Mockery context = new Mockery();
            final MessageListener messageListener = context.mock(MessageListener.class);
            final Latch latch = new LatchImpl();
            final String prefix = "test" + System.currentTimeMillis();
            context.checking(new Expectations() {
                    oneOf(messageListener).onMessage(with(new TextMessageMatcher("MSG1", prefix + ".1234")));
                    will(new CustomAction("release latch") {
                        @Override
                        public Object invoke(Invocation invocation) throws Throwable {
                            latch.unlatch();
                            return null;
            final Connection connection = createConnection(null, null);
            Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
            connection.start();
            Topic wildcardTopic = (Topic) getInitialContext().lookup(prefix + "." + "#");
            Topic destination = (Topic) getInitialContext().lookup(prefix + ".1234");
            final MessageConsumer consumer = session.createConsumer(wildcardTopic);
            consumer.setMessageListener(messageListener);
            MessageProducer producer = session.createProducer(null);
            producer.send(destination, session.createTextMessage("MSG1"));
            latch.await(5000);
            connection.close();
            Thread.sleep(5);
            context.assertIsSatisfied();

    Check where your MDB sends the [response] messages to.

  • Weblogic Unit Of Order on Javax.JMS

    Hi I want to use Weblogic Unit of Order on Javax.jms and not on Weblogic.jms, does anyone know how to do that.

    You need to use WLS JMS extension interface to programmatically set a Unit-of-order. In order for applications that use pure javax.jms interfaces to take the advantage of Unit-of-order feature, WLS allows administrators to enable unit-of-order via configuration. Once you enable Unit-of-order on a connection factory, all messages sent from one session will belong to the same unit-of-order either with a system-generated name or a user-generated name. In addition, you could enable unit-of-order on a per destination basis as well.
    For details, please refer to http://docs.oracle.com/cd/E17904_01/web.1111/e13727/uoo.htm#i1040257.

  • To whom it may concern I would like to inform you about an error occurred when I upgraded my firmware to IOS 6 When I plug a headphone/earphone into my, then unplug it, the volume turned out to be unadjustable I have attached 2 screenshots of the error, p

    To whom it may concern
    I would like to inform you about an error occurred when I upgraded my firmware to IOS 6
    When I plug a headphone/earphone into my, then unplug it, the volume turned out to be unadjustable
    I have attached 2 screenshots of the error, pls help?
    Thanks.

    Try a rest: Simultaneously hold down the Home and On buttons until the iPad shuts down. Ignore the off slider if it appears. Once shut down is complete, turn the iPad back on using the On button. In some cases it also helps to double click the Home button and close all apps from the tray before doing the reset.

  • Upgraded to 10.3.1.55, now can't set iT as default player,"An error occurred when updating the default player for audio files types.  You do not have enough access privileges for this operation." How to fix?

    After I upgraded iTunes, iTunes doesn't recognize CD in the drive, apparently isn't the default player.  It won't let me set iTunes as the default player, I get the error message "An error occurred when updating the default player for audio files types."  I tried Whitesides' remedy (changing Read Only status in folder in Windows) but it didn't solve the problem.  Any suggestions?  Thanks.
    J

    Oddly enough. I think I just solved it. It looks like, for some reason, my computer has about 8 different "iTunes music" folders, and I've been saving my music to the wrong one. Neat. Music now imports and plays as it should. Copying things over is going to be so fun tonight!

  • Invisible windows appears when trying to open a new window. These windows are listed in the Window list, but I cannot switch to them or close them. This also occurs when I try to "View Source". This was not a problem prior to my 6.0 upgrade.

    I cannot open a new window for FireFox.
    Invisible windows appears when trying to open a new window. These windows are listed in the Window list on the menu, but I cannot switch to them or close them. This also occurs when I try to "View Source". This was not a problem prior to my 6.0 upgrade.
    The Downloads Window cannot be accessed either.
    This is very annoying. Is this a bug? Or is there a fix.

    If anyone is reading this still looking for what caused the issue and how to fix it here is what I discovered.
    The antivirus program our company uses, Bitdefender Antivirus Plus, was causing some of the PDF files not to open. After troubleshooting the different modules and settings the culprit was..
    Scan SSL in Privacy Control Settings. Turning it OFF solved the problem and all the PDF files that previously would not open now open just fine. This issue has been sent to Bitdefender for them to review. If you use a different antivirus program and are having this issue try locating the Scan SSL setting and see if turning it off solves the problem.

Maybe you are looking for

  • Strange ORA-00947

    Hello all, I have a query in a stored procedure as follows: select min(ref.REFERENCE_V_INNER_CODE) INNER_CODE, item.COMPONENT_V_ID bulk collect into highest_quality_table from T_ITEM item, T_REFERENCE ref where (item.ITEM_V_CODE, item.COMPONENT_V_ID)

  • Question about property:STARTMTH in dimension CATEGORY

    Hi, There is a default property "startmth" in dimension CATEGORY. It exist in the default application APPSHELL, but I can't find any document for this property. Does anyone know what this property use for? Regards, David Cho

  • N97 how do I edit the detail in contacts ie mobile...

    In order to set up contacts on my new N97 I copied all of the contacts from my Nokia N95 8gig to the old sim, put the sim into the N97 and copied details to the telephone from the sim, then replaced the sim with my new one from my new provider. All o

  • Jws source file not found (Java client proxy)

    Hi, I created a web service in Workshop, and generated a Java proxy from it using the test console. I then wrote a stand-alone Java client to invoke an operation on the web service based on the workshop examples. I'm able to first get the service pro

  • Cannot install or uninstall C410 on Windows 8.1

    I have a C410 printer which was not printing in a timely manner.  I would attempt to print a document and nothing would happen.  I would come back one or two days later and find maybe the whole document, maybe a partial printout.  I attempted to unin