TNIHeapPag​eManager.c​pp Error

We have an RMC 8353. We have a custom LabVIEW application that is actually similar to VeriStand running on it. It was build before VeriStand was available. Over the weekend, we were reconfiguring some of the software on it and we got an error to show up on its display that I have not seen before. I am sure it is not from our software and I am not sure what caused it.
The error is
build\nimm\tNIHeapPageManager.cpp: 568
So it is a memory manager problem. Is there any way to tell what we did to get this? or is it a hardware issue?
It has shown up twice, but our software still seems to behave as expected. We are looking for confirmation that our system is not in danger of complete failure. Or that it is. . .
Thanks
Bob Young
Bob Young - Test Engineer - Lapsed Certified LabVIEW Developer
DISTek Integration, Inc. - NI Alliance Member
mailto:[email protected]

Hey Bob,
I believe you're using RT. Is this correct?
I've been looking through some stuff on the system about this error and found something about it. It looks like "build\nimm\tNIHeapPageManager.cpp: 568" is an error that is thwon when a pointer is freed that has already been free'd and is non-Null. This is a non-fatal error.
However, I also found some instances where several of these errors repeating in one file caused a crash (the log file had several of these errors accumulating). I'd try cleaning some things up and making sure these values are only being freed once. Additionally, it would be a good idea to keep conscience if this error starts to accumulate and be aware to only free the HEAP memory once instead of multiple times.
I think this isn't an issue with the hardware itself, and I wouldn't expect a complete hardware failure. 
Lea D.
Applications Engineering
National Instruments

Similar Messages

  • Error: Injection on field eManager of instance EmployeeServicesBean failed

    Hi all,
    I have access to the customers NW CE 7.1 SP07 and of course I am using the corresponding NWDS 7.1 SP07 that comes with this CE installation. I am trying to study JEE 5 @ SAP and I have created a very simple Application (from the Book http://www.sap-press.de/katalog/buecher/titel/gp/titelID-1480).
    In NWDS I have created the following 4 projects:
    1. Dictionary Project
    Describes 2 Tables (TMP_EMPLOYEES and TMP_ID_GEN)
    I could easily deploy it (but on which DataSource are the Tables created? Where do I have to define this??)
    2. EJB 5 Project
    Contains a stateless EJB + local business interface + Entity class.
    The EJB accesses the entity class, which is mapped to a simple table (TMP_EMPLOYEES).
    3. Dynamic Web Project
    Contains actually only one JSP (index.jsp) which allows to the local business interface for creating a new Entity.
    4. Enterprise Application Project (EAR)
    Creates a package from 2. and 3. Also includes a self defined data-source-aliases.xml
    I have successfully deployed both the Dictionary Project and the EAR (all to the same server).
    But If I call the corresponding URL via web browser I get the following error:
    Processing HTTP request to servlet [jsp] finished with error.
    The error is: javax.ejb.EJBException: Exception in getMethodReady() for stateless
    bean sap.com/EmployeeEar*annotation|EmployeeEjb.jar*annotation|EmployeeServicesBean; nested exception is:
    com.sap.engine.services.ejb3.util.pool.PoolException: javax.ejb.EJBException: Cannot perform injection over bean
    instance com.sap.demo.session.EmployeeServicesBean@298de4eb for bean
    sap.com/EmployeeEar*annotation|EmployeeEjb.jar*annotation|EmployeeServicesBean;
    nested exception is: com.sap.engine.lib.injection.InjectionException: Injection on field eManager of instance com.sap.demo.session.EmployeeServicesBean@298de4eb failed.
    Could not get a value to be injected from the factory.00505684110800290000009000000B180139C8D8862D3E88
    I guess I have some buggy "configuration" somewhere. Here is my code:
    Stateless EJB: EmployeeServicesBean ###
    package com.sap.demo.session;
    import java.util.List;
    import javax.ejb.Stateless;
    import javax.ejb.TransactionAttribute;
    import javax.ejb.TransactionAttributeType;
    import javax.ejb.TransactionManagement;
    import javax.ejb.TransactionManagementType;
    import javax.persistence.EntityManager;
    import javax.persistence.PersistenceContext;
    import javax.persistence.Query;
    import com.sap.demo.entity.Employee;
    @Stateless
    @TransactionManagement(value=TransactionManagementType.CONTAINER)
    public class EmployeeServicesBean implements EmployeeServicesLocal {
            //ATTENTION: it seems the error occurs here, because "eManager" can't be filled :-(
         @PersistenceContext(unitName="EmployeePU_NZA")
         private EntityManager eManager;
         public long createEmployee(String lastName, String firstName, String department){
              long result = 0;
              Employee emp = new Employee();
              emp.setFirstName(firstName);
              emp.setLastName(lastName);
              emp.setDepartment(department);
              eManager.persist(emp);
              result = emp.getEmployeeId();
              return result;
         @TransactionAttribute(TransactionAttributeType.SUPPORTS)
         public Employee getEmployeeById(long id){
              Employee emp = eManager.find(Employee.class, id);
              return emp;
         @SuppressWarnings("unchecked")
         @TransactionAttribute(TransactionAttributeType.SUPPORTS)
         public List<Employee> getAllEmployees(){
              Query query = eManager.createNamedQuery("Employee.findAll");
              List<Employee> res = (List<Employee>)query.getResultList();
              return res;
    persistence.xml ###
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="1.0" xmlns:persistence="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence persistence_1_0.xsd ">
         <persistence-unit name="EmployeePU_NZA">
              <jta-data-source>TMP_NZA_EMPLOYEES_DATA</jta-data-source>
              <properties>
                   <property name="com.sap.engine.services.orpersistence.generator.versiontablename" value="TMP_ID_GEN" />               
              </properties>
         </persistence-unit>
    </persistence>
    data-source-aliases.xml ###
    <?xml version="1.0" encoding="UTF-8"?>
    <data-source-aliases xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="data-source-aliases.xsd">
      <aliases>
        <data-source-name>${com.sap.datasource.default}</data-source-name>
        <alias>TMP_NZA_EMPLOYEES_DATA</alias>
      </aliases>
    </data-source-aliases>
    Entity class: Employee ###
    package com.sap.demo.entity;
    import java.io.Serializable;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.GeneratedValue;
    import javax.persistence.GenerationType;
    import javax.persistence.Id;
    import javax.persistence.NamedQuery;
    import javax.persistence.Table;
    import javax.persistence.TableGenerator;
    import javax.persistence.Version;
    @NamedQuery(name="Employee.findAll", query="SELECT e FROM Employee AS e")
    @Entity
    @Table(name="TMP_EMPLOYEES")
    @TableGenerator(name="idGenerator", table="TMP_ID_GEN", pkColumnName="GEN_KEY", valueColumnName="GEN_VALUE")
    public class Employee implements Serializable{
         private static final long serialVersionUID = 111l;
         @Id
         @GeneratedValue(strategy=GenerationType.TABLE, generator="idGenerator")
         @Column(name="ID")     
         private long employeeId;
         @Column(name="LAST_NAME")
         private String lastName;
         @Column(name="FIRST_NAME")
         private String firstName;
         private String department;
         @Version
         private int version;
         public Employee(){
         //getters and setters...
    data-source-aliases.xml of Enterprise Application Project ###
    <?xml version="1.0" encoding="UTF-8"?>
    <data-source-aliases xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="data-source-aliases.xsd">
      <aliases>
        <data-source-name>${com.sap.datasource.default}</data-source-name>
        <alias>TMP_NZA_EMPLOYEES_DATA</alias>
      </aliases>
    </data-source-aliases>
    Who can see my problem? I have been trying for the last 3 days to find the problem
    Thanks!!!

    But now I have other issue, or maybe even the same:
    In the log Viewer of my nwa I see the 4 errors occuring in the following chronological order:
    1.
    Exception of type com.sap.sql.log.OpenSQLException caught:
    The SQL statement "SELECT "GEN_VALUE" FROM "TMP_ID_GEN" WHERE "GEN_KEY" = ? FOR UPDATE" contains the semantics error[s]: - 1:8 - the column >>GEN_VALUE<< is undefined in the current scope
    2.
    System exception 
    [EXCEPTION]
    javax.ejb.EJBException: Exception in getMethodReady() for stateless bean sap.com/EmployeeEar*annotation|EmployeeEjb.jar*annotation|EmployeeServicesBean; nested exception is: com.sap.engine.services.ejb3.util.pool.PoolException: javax.ejb.EJBException: Cannot perform injection over bean instance com.sap.demo.session.EmployeeServicesBean@25f56eb4 for bean sap.com/EmployeeEar*annotation|EmployeeEjb.jar*annotation|EmployeeServicesBean; nested exception is: com.sap.engine.lib.injection.InjectionException: Injection on field eManager of instance com.sap.demo.session.EmployeeServicesBean@25f56eb4 failed. Could not get a value to be injected from the factory.
    com.sap.engine.services.ejb3.util.pool.PoolException: javax.ejb.EJBException: Cannot perform injection over bean instance com.sap.demo.session.EmployeeServicesBean@25f56eb4 for bean sap.com/EmployeeEar*annotation|EmployeeEjb.jar*annotation|EmployeeServicesBean; nested exception is: com.sap.engine.lib.injection.InjectionException: Injection on field eManager of instance com.sap.demo.session.EmployeeServicesBean@25f56eb4 failed. Could not get a value to be injected from the factory.
    at com.sap.engine.services.ejb3.util.pool.ContainerPool.translate(ContainerPool.java:288)
    at com.sap.engine.services.ejb3.util.pool.ContainerPoolImpl.doResizeOneStepUp(ContainerPoolImpl.java:378)
    at com.sap.engine.services.ejb3.util.pool.ContainerPoolImpl.ensureNotEmpty(ContainerPoolImpl.java:342)
    at com.sap.engine.services.ejb3.util.pool.ContainerPoolImpl.pop(ContainerPoolImpl.java:309)
    at com.sap.engine.services.ejb3.runtime.impl.StatelessInstanceLifecycleManager.getMethodReady(StatelessInstanceLifecycleManager.java:64)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:14)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:21)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:16)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    at com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:133)
    at com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke(DefaultEJBProxyInvocationHandler.java:164)
    at $Proxy1675.createEmployee(Unknown Source)
    at JEE_jsp_index_8832250_1231951553946_1231951588930._jspService(JEE_jsp_index_8832250_1231951553946_1231951588930.java:123)
    at com.sap.engine.services.servlets_jsp.lib.jspruntime.JspBase.service(JspBase.java:102)
    //and many more
    3.
    Processing HTTP request to servlet [jsp] finished with error. The error is: javax.ejb.EJBException: Exception in getMethodReady() for stateless bean sap.com/EmployeeEar*annotation|EmployeeEjb.jar*annotation|EmployeeServicesBean; nested exception is: com.sap.engine.services.ejb3.util.pool.PoolException: javax.ejb.EJBException: Cannot perform injection over bean instance com.sap.demo.session.EmployeeServicesBean@25f56eb4 for bean sap.com/EmployeeEar*annotation|EmployeeEjb.jar*annotation|EmployeeServicesBean; nested exception is: com.sap.engine.lib.injection.InjectionException: Injection on field eManager of instance com.sap.demo.session.EmployeeServicesBean@25f56eb4 failed. Could not get a value to be injected from the factory.
    com.sap.engine.services.ejb3.util.pool.PoolException: javax.ejb.EJBException: Cannot perform injection over bean instance com.sap.demo.session.EmployeeServicesBean@25f56eb4 for bean sap.com/EmployeeEar*annotation|EmployeeEjb.jar*annotation|EmployeeServicesBean; nested exception is: com.sap.engine.lib.injection.InjectionException: Injection on field eManager of instance com.sap.demo.session.EmployeeServicesBean@25f56eb4 failed. Could not get a value to be injected from the factory.
    at com.sap.engine.services.ejb3.util.pool.ContainerPool.translate(ContainerPool.java:288)
    at com.sap.engine.services.ejb3.util.pool.ContainerPoolImpl.doResizeOneStepUp(ContainerPoolImpl.java:378)
    at com.sap.engine.services.ejb3.util.pool.ContainerPoolImpl.ensureNotEmpty(ContainerPoolImpl.java:342)
    at com.sap.engine.services.ejb3.util.pool.ContainerPoolImpl.pop(ContainerPoolImpl.java:309)
    at com.sap.engine.services.ejb3.runtime.impl.StatelessInstanceLifecycleManager.getMethodReady(StatelessInstanceLifecycleManager.java:64)
    //and many more
    4.
    Processing HTTP request to servlet [jsp] finished with error.
    The error is: javax.ejb.EJBException: Exception in getMethodReady() for stateless bean sap.com/EmployeeEar*annotation|EmployeeEjb.jar*annotation|EmployeeServicesBean; nested exception is: com.sap.engine.services.ejb3.util.pool.PoolException: javax.ejb.EJBException: Cannot perform injection over bean instance com.sap.demo.session.EmployeeServicesBean@25f56eb4 for bean sap.com/EmployeeEar*annotation|EmployeeEjb.jar*annotation|EmployeeServicesBean; nested exception is: com.sap.engine.lib.injection.InjectionException: Injection on field eManager of instance com.sap.demo.session.EmployeeServicesBean@25f56eb4 failed. Could not get a value to be injected from the factory.0050568411080026000000B500000B180139C8D8862D3408
    Who understands these error logs?
    Why it says
    "SELECT "GEN_VALUE" FROM "TMP_ID_GEN" WHERE "GEN_KEY" = ? FOR UPDATE" contains the semantics error
    although I have corrected this already (see previous post) and deployed plenty of times???
    I mus have some other stupid bug somewhere, but I can't find it. That really drives me crazy...

  • Error while starting the server - Unexpected end of file from server|

    Hi,
    I am getting below error when I start my glassfish server.
    SEVERE|sun-appserver2.1|com.stc.emanager.deployment.sunone.model.runtime.ServerRuntimeModel|_ThreadID=86;_ThreadName=httpWorkerThread-4048-3;_RequestID=8d1f2acd-9e4e-4e9f-a9fd-3b21e4223318;|Unexpected end of file from server|#]
    I see the process is running. But, I am not able to open admin console.
    could any one plz help me to resolve this issue.
    Thanks in Advance,
    -Manandi

    Welcome to the forum.
    Unfortunately for you, posting only about things not working isn't going to net you assistance or answers - at most you can get sympathy but there isn't too much of that to share with everyone. You should find a forum for the particular product that is not working. If you have a problem with Glassfish, then try the Glassfish forum.
    http://www.java.net/forums/glassfish/glassfish

  • Strange error in 2.4.0: primary key field is written into DB improperly

    Hi!
    I've tried 2.4.0 RC1 and found strange problem: when new child persistent
    object is created and added to the parent strange value is written into ID
    field in the database. This value changes each time I try to reproduce the
    problem. Now it is: -8,373E23.
    Parent is Ticket class containing Set of Comment classes.
    After that during parent loading I get the following error:
    2002-11-14 14:32:43,726 ERROR [org.jboss.ejb.plugins.LogInterceptor]
    RuntimeExce
    ption:
    javax.jdo.JDOFatalDataStoreException:
    java.lang.ArrayIndexOutOfBoundsException:
    -128
    NestedThrowables:
    java.lang.ArrayIndexOutOfBoundsException: -128
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.instantiateRow(
    LazyResultList.java:195)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.get(LazyResultL
    ist.java:123)
    at java.util.AbstractList$Itr.next(AbstractList.java:416)
    at
    com.solarmetric.kodo.runtime.objectprovider.ResultListIterator.next(R
    esultListIterator.java:49)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.ResultListFactory.createResult
    List(ResultListFactory.java:91)
    at
    com.solarmetric.kodo.impl.jdbc.ormapping.OneToManyMapping.load(OneToM
    anyMapping.java:83)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.load(JDBCStor
    eManager.java:366)
    at
    com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.load(Dat
    aCacheStoreManager.java:254)
    at
    com.solarmetric.kodo.runtime.StateManagerImpl.loadField(StateManagerI
    mpl.java:1987)
    at
    com.solarmetric.kodo.runtime.StateManagerImpl.isLoaded(StateManagerIm
    pl.java:721)
    at
    net.xtrim.crm.troubleticket.object.Ticket.jdoGetcomments(Ticket.java)
    at
    net.xtrim.crm.troubleticket.object.Ticket.getComments(Ticket.java:387
    at
    net.xtrim.crm.system.TTEntitiesManager.findTTComments(TTEntitiesManag
    er.java:195)
    at
    net.xtrim.crm.troubleticket.ejb.TroubleTicketFacadeBean.getCommentLis
    t(TroubleTicketFacadeBean.java:487)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at
    org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(S
    tatelessSessionContainer.java:660)
    at
    org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invo
    ke(CachedConnectionInterceptor.java:186)
    I've tried to do the same thing on 2.3.4 and get the transaction rolled
    back. The logged SQL looks strange:
    2002-11-14 15:03:35,099 INFO
    [com.solarmetric.kodo.impl.jdbc.ee.ManagedConnectionFactoryImpl.supportcrm/k
    odo]
    INSERT INTO BILLY.TT_COMMENTS(COMMENT_TYPE, TEXT,
    CREATED_BY, ID, SUBJECT, CREATE_DATE, TT_MAIN_ID) VALUES (1, '1', 10, 279,
    '1',
    {ts '2002-11-14 15:03:35.059'}, 147)
    When I change "{ts '2002-11-14 15:03:35.059'}" with "TO_DATE('2002-11-14
    15:03', 'YYYY-DD-MM HH24:MI')" in SQL editor
    and execute it everything works fine.

    I've tried Kodo 2.4.0RC2 and had the same error.
    I don't have much time now to check the second solution but I'll try to find
    it ASAP.
    Just in case I've attached the class file for Category class.
    "Marc Prud'hommeaux" <[email protected]> wrote in message
    news:[email protected]...
    Alexy-
    The problem with metadata not found is a known problem for 2.4.0RC1
    in managed envornments, and should be fixed for RC2. If you get
    a chance, could you download it and see if it fixes the problem?
    Also, you can always get around the problem by explicitely
    referencing the persistent class before you attempt
    JDO operations on it. E.g.,
    public void mySessionBeanMethod ()
    // workaround
    Class c = MyPersistentClass.class;
    persistenceManager.makePersistent (new MyPersistentClass ());
    // etc...
    It is ugly, but it will usually get around the problem.
    Let us know if neither of these solve your issue.
    In <[email protected]> Alexey Maslov wrote:
    Yes, I'm pretty sure.
    I've even decompiled it with JAD to check if it implemented
    PersistenceCapable.
    "Abe White" <[email protected]> wrote in message
    news:[email protected]...
    I hate to ask the obvious, but are you sure you deployed the enhancedclass
    file?
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    begin 666 Category.class
    MROZZO@`#`"T!M0<``@$`*VYE="]X=')I;2]C<FTO=')O=6)L971I8VME="]O
    M8FIE8W0O0V%T96=O<GD'``0!`!!J879A+VQA;F<O3V)J96-T!P`&`0`4:F%V
    M82]I;R]397)I86QI>F%B;&4'``@!`"MN970O>'1R:6TO8W)M+W-Y<W1E;2]S
    M96-U<FET>2]396-U<F5D16YT:71Y`0`":60!`!-,:F%V82]L86YG+TEN=&5G
    M97([`0`$;F%M90$`$DQJ879A+VQA;F<O4W1R:6YG.P$`!W1I8VME=',!``],
    M:F%V82]U=&EL+U-E=#L!``5T>7!E<P$`!6=E=$ED`0`5*"E,:F%V82]L86YG
    M+TEN=&5G97([`0`$0V]D90$`#TQI;F5.=6UB97)486)L90$`$DQO8V%L5F%R
    M:6%B;&5486)L90P`"0`*"0`!`!4!``1T:&ES`0`M3&YE="]X=')I;2]C<FTO
    M=')O=6)L971I8VME="]O8FIE8W0O0V%T96=O<GD[`0`%<V5T260!`!8H3&IA
    M=F$O;&%N9R]);G1E9V5R.RE6`0`'9V5T3F%M90$`%"@I3&IA=F$O;&%N9R]3
    M=')I;F<[# `+``P)``$`'0$`!W-E=$YA;64!`!4H3&IA=F$O;&%N9R]3=')I
    M;F<[*58!``IG9714:6-K971S`0`1*"E,:F%V82]U=&EL+U-E=#L,``T`#@D`
    M`0`C# `F`"<!``]U;FUO9&EF:6%B;&53970!`" H3&IA=F$O=71I;"]3970[
    M*4QJ879A+W5T:6PO4V5T.PH`*0`E!P`J`0`5:F%V82]U=&EL+T-O;&QE8W1I
    M;VYS`0`)861D5&EC:V5T`0`N*$QN970O>'1R:6TO8W)M+W1R;W5B;&5T:6-K
    M970O;V)J96-T+U1I8VME=#LI5@P`+@`O`0`(8V]N=&%I;G,!`!4H3&IA=F$O
    M;&%N9R]/8FIE8W0[*5H+`#$`+0<`,@$`#6IA=F$O=71I;"]3970'`#0!`!]J
    M879A+VQA;F<O26QL96=A;%-T871E17AC97!T:6]N!P`V`0`6:F%V82]L86YG
    M+U-T<FEN9T)U9F9E<@@`. $`&U1I8VME="!A;')E861Y(&5X:7-T<RX@260Z
    M( P`.@`@`0`&/&EN:70^"@`U`#D,`! `$0H`/@`\!P`_`0`I;F5T+WAT<FEM
    M+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C="]4:6-K970,`$$`0@$`!F%P<&5N
    M9 $`+"A,:F%V82]L86YG+T]B:F5C=#LI3&IA=F$O;&%N9R]3=')I;F="=69F
    M97(["@`U`$ ,`$$`10$`&RA#*4QJ879A+VQA;F<O4W1R:6YG0G5F9F5R.PH`
    M-0!$# !(`!P!``AT;U-T<FEN9PH`-0!'"@`S`#D,`$P`+P$``V%D9 L`,0!+
    M`0`&=&EC:V5T`0`K3&YE="]X=')I;2]C<FTO=')O=6)L971I8VME="]O8FIE
    M8W0O5&EC:V5T.P$`#')E;6]V951I8VME= P`4@`O`0`&<F5M;W9E"P`Q`%$!
    M``AG9714>7!E<PP`#P`."0`!`%4!``IC<F5A=&54>7!E`0!0*$QJ879A+VQA
    M;F<O26YT96=E<CM,:F%V82]L86YG+U-T<FEN9SLI3&YE="]X=')I;2]C<FTO
    M=')O=6)L971I8VME="]O8FIE8W0O5'EP93L'`%H!`"=N970O>'1R:6TO8W)M
    M+W1R;W5B;&5T:6-K970O;V)J96-T+U1Y<&4,`#H`7 $`52A,:F%V82]L86YG
    M+TEN=&5G97([3&IA=F$O;&%N9R]3=')I;F<[3&YE="]X=')I;2]C<FTO=')O
    M=6)L971I8VME="]O8FIE8W0O0V%T96=O<GD[*58*`%D`6P$`!'1Y<&4!`"E,
    M;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C="]4>7!E.P$`$FES
    M1&5P96YD96YC:65S1G)E90$``R@I6@P`8P!A`0`':7-%;7!T>0L`,0!B`0`4
    M9V5T4V5C=7)E9%)E<V]U<F-E260,`&<`"@$`'%1R;W5B;&54:6-K971#871E
    M9V]R>5]215-?240)`&D`9@<`:@$`,6YE="]X=')I;2]C<FTO<WES=&5M+W-E
    M8W5R:71Y+U-E8W5R:71Y4F5S;W5R8V5)1',!`!YG971396-U<F5D16YT:71Y
    M06QL;W=S0VAI;&1R96X!`!AG971396-U<F5D16YT:71Y0VAI;&1R96X!`!@H
    M*4QJ879A+W5T:6PO0V]L;&5C=&EO;CL!``AH87-H0V]D90$``R@I20P`;@!O
    M"@!R`' '`',!`!%J879A+VQA;F<O26YT96=E<@$`!F5Q=6%L<PP`= `O"@!R
    M`'4!``-O8FH!`!),:F%V82]L86YG+T]B:F5C=#L!``,H*58!``E3>6YT:&5T
    M:6,'`'P!`!%J879A+W5T:6PO2&%S:%-E= P`.@!Y"@![`'T!`"@H3&IA=F$O
    M;&%N9R]);G1E9V5R.TQJ879A+VQA;F<O4W1R:6YG.RE6"@`#`'T,`!<`>0H`
    M`0"!`0`*4V]U<F-E1FEL90$`#4-A=&5G;W)Y+FIA=F$!``AJ9&]'971I9 $`
    M0BA,;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C="]#871E9V]R
    M>3LI3&IA=F$O;&%N9R]);G1E9V5R.PP`A0"&"@`!`(<!``AJ9&]3971I9 $`
    M0RA,;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C="]#871E9V]R
    M>3M,:F%V82]L86YG+TEN=&5G97([*58,`(D`B@H``0"+`0`*:F1O1V5T;F%M
    M90$`02A,;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C="]#871E
    M9V]R>3LI3&IA=F$O;&%N9R]3=')I;F<[# "-`(X*``$`CP$`"FID;U-E=&YA
    M;64!`$(H3&YE="]X=')I;2]C<FTO=')O=6)L971I8VME="]O8FIE8W0O0V%T
    M96=O<GD[3&IA=F$O;&%N9R]3=')I;F<[*58,`)$`D@H``0"3`0`-:F1O1V5T
    M=&EC:V5T<P$`/BA,;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C
    M="]#871E9V]R>3LI3&IA=F$O=71I;"]3970[# "5`)8*``$`EP$`"VID;T=E
    M='1Y<&5S# "9`)8*``$`F@$`#6ID;U-E='1I8VME=',!`#\H3&YE="]X=')I
    M;2]C<FTO=')O=6)L971I8VME="]O8FIE8W0O0V%T96=O<GD[3&IA=F$O=71I
    M;"]3970[*58,`)P`G0H``0">`0`+:F1O4V5T='EP97,,`* `G0H``0"A`0`@
    M:F%V87@O:F1O+W-P:2]097)S:7-T96YC94-A<&%B;&4'`*,!`!9J9&]);FAE
    M<FET961&:65L9$-O=6YT`0`!20$`#6ID;T9I96QD3F%M97,!`!-;3&IA=F$O
    M;&%N9R]3=')I;F<[`0`-:F1O1FEE;&14>7!E<P$`$EM,:F%V82]L86YG+T-L
    M87-S.P$`#6ID;T9I96QD1FQA9W,!``);0@$`'VID;U!E<G-I<W1E;F-E0V%P
    M86)L95-U<&5R8VQA<W,!`!%,:F%V82]L86YG+T-L87-S.P$`#VID;U-T871E
    M36%N86=E<@$`'$QJ879A>"]J9&\O<W!I+U-T871E36%N86=E<CL!``AJ9&]&
    M;&%G<P$``4(!``@\8VQI;FET/@$`$&IA=F$O;&%N9R]3=')I;F<'`+0(``D(
    M``L(``T(``\,`*<`J D``0"Z`0`/:F%V82]L86YG+T-L87-S!P"\`0`88VQA
    M<W,D3&IA=F$D;&%N9R1);G1E9V5R`0`&8VQA<W,D`0`E*$QJ879A+VQA;F<O
    M4W1R:6YG.RE,:F%V82]L86YG+T-L87-S.P$`!V9O<DYA;64,`,$`P H`O0#"
    M`0`>:F%V82]L86YG+TYO0VQA<W-$969&;W5N9$5R<F]R!P#$`0`3:F%V82]L
    M86YG+U1H<F]W86)L90<`Q@$`"F=E=$UE<W-A9V4,`,@`' H`QP#)"@#%`#D!
    M`"!J879A+VQA;F<O0VQA<W-.;W1&;W5N9$5X8V5P=&EO;@<`S P`O@"N"0`!
    M`,X!`!%J879A+FQA;F<N26YT96=E<@@`T P`OP# "@`!`-(!`!=C;&%S<R1,
    M:F%V821L86YG)%-T<FEN9PP`U "N"0`!`-4!`!!J879A+FQA;F<N4W1R:6YG
    M" #7`0`48VQA<W,D3&IA=F$D=71I;"13970,`-D`K@D``0#:`0`-:F%V82YU
    M=&EL+E-E= @`W P`J0"J"0`!`-X,`*L`K D``0#@`0`R8VQA<W,D3&YE="1X
    M=')I;21C<FTD=')O=6)L971I8VME="1O8FIE8W0D0V%T96=O<GD,`.(`K@D`
    M`0#C`0`K;F5T+GAT<FEM+F-R;2YT<F]U8FQE=&EC:V5T+F]B:F5C="Y#871E
    M9V]R>0@`Y0P`K0"N"0`!`.<*``$`?0$`&VIA=F%X+VID;R]S<&DO2D1/26UP
    M;$AE;'!E<@<`Z@$`#7)E9VES=&5R0VQA<W,!`&XH3&IA=F$O;&%N9R]#;&%S
    M<SM;3&IA=F$O;&%N9R]3=')I;F<[6TQJ879A+VQA;F<O0VQA<W,[6T),:F%V
    M82]L86YG+T-L87-S.TQJ879A>"]J9&\O<W!I+U!E<G-I<W1E;F-E0V%P86)L
    M93LI5@P`[ #M"@#K`.X!``YJ9&].97=);G-T86YC90$`4BA,:F%V87@O:F1O
    M+W-P:2]3=&%T94UA;F%G97([3&IA=F$O;&%N9R]/8FIE8W0[*4QJ879A>"]J
    M9&\O<W!I+U!E<G-I<W1E;F-E0V%P86)L93L,`*\`L D``0#R# "Q`+()``$`
    M] $`'&ID;T-O<'E+97E&:65L9'-&<F]M3V)J96-T260!`!4H3&IA=F$O;&%N
    M9R]/8FIE8W0[*58,`/8`]PH``0#X`0! *$QJ879A>"]J9&\O<W!I+U-T871E
    M36%N86=E<CLI3&IA=F%X+VID;R]S<&DO4&5R<VES=&5N8V5#87!A8FQE.P$`
    M%VID;T=E=$UA;F%G961&:65L9$-O=6YT`0`/:F1O4F5P;&%C949I96QD`0`$
    M*$DI5@P`I0"F"0`!`/X!`")J879A+VQA;F<O26QL96=A;$%R9W5M96YT17AC
    M97!T:6]N!P$`"@$!`'T!`!IJ879A>"]J9&\O<W!I+U-T871E36%N86=E<@<!
    M`P$`%')E<&QA8VEN9T]B:F5C=$9I96QD`0`W*$QJ879A>"]J9&\O<W!I+U!E
    M<G-I<W1E;F-E0V%P86)L93M)*4QJ879A+VQA;F<O3V)J96-T.PP!!0$&"P$$
    M`0<!`!1R97!L86-I;F=3=')I;F=&:65L9 $`-RA,:F%V87@O:F1O+W-P:2]0
    M97)S:7-T96YC94-A<&%B;&4[22E,:F%V82]L86YG+U-T<FEN9SL,`0D!"@L!
    M! $+`0`0:F1O4F5P;&%C949I96QD<P$`!2A;22E6# #\`/T*``$!#P$`#VID
    M;U!R;W9I9&5&:65L9 $`$W!R;W9I9&5D3V)J96-T1FEE;&0!`#@H3&IA=F%X
    M+VID;R]S<&DO4&5R<VES=&5N8V5#87!A8FQE.TE,:F%V82]L86YG+T]B:F5C
    M=#LI5@P!$@$3"P$$`10!`!-P<F]V:61E9%-T<FEN9T9I96QD`0`X*$QJ879A
    M>"]J9&\O<W!I+U!E<G-I<W1E;F-E0V%P86)L93M)3&IA=F$O;&%N9R]3=')I
    M;F<[*58,`18!%PL!! $8`0`0:F1O4')O=FED949I96QD<PP!$0#]"@`!`1L!
    M``QJ9&]#;W!Y1FEE;&0!`#$H3&YE="]X=')I;2]C<FTO=')O=6)L971I8VME
    M="]O8FIE8W0O0V%T96=O<GD[22E6`0`-:F1O0V]P>49I96QD<P$`%RA,:F%V
    M82]L86YG+T]B:F5C=#M;22E6"@`S`'T,`1T!'@H``0$B`0`8:F1O1V5T4&5R
    M<VES=&5N8V5-86YA9V5R`0`@*"E,:F%V87@O:F1O+U!E<G-I<W1E;F-E36%N
    M86=E<CL!`!5G971097)S:7-T96YC94UA;F%G97(!`$(H3&IA=F%X+VID;R]S
    M<&DO4&5R<VES=&5N8V5#87!A8FQE.RE,:F%V87@O:F1O+U!E<G-I<W1E;F-E
    M36%N86=E<CL,`28!)PL!! $H`0`.:F1O1V5T3V)J96-T260!`!0H*4QJ879A
    M+VQA;F<O3V)J96-T.P$`"V=E=$]B:F5C=$ED`0`V*$QJ879A>"]J9&\O<W!I
    M+U!E<G-I<W1E;F-E0V%P86)L93LI3&IA=F$O;&%N9R]/8FIE8W0[# $L`2T+
    M`00!+@$`&VID;T=E=%1R86YS86-T:6]N86Q/8FIE8W1)9 $`&&=E=%1R86YS
    M86-T:6]N86Q/8FIE8W1)9 P!,0$M"P$$`3(!``QJ9&])<T1E;&5T960!``EI
    M<T1E;&5T960!`"4H3&IA=F%X+VID;R]S<&DO4&5R<VES=&5N8V5#87!A8FQE
    M.RE:# $U`38+`00!-P$`"FID;TES1&ER='D!``=I<T1I<G1Y# $Z`38+`00!
    M.P$`"&ID;TES3F5W`0`%:7-.97<,`3X!-@L!! $_`0`/:F1O27-097)S:7-T
    M96YT`0`,:7-097)S:7-T96YT# %"`38+`00!0P$`$FID;TES5')A;G-A8W1I
    M;VYA; $`#VES5')A;G-A8W1I;VYA; P!1@$V"P$$`4<!``]J9&]0<F5397)I
    M86QI>F4!``QP<F5397)I86QI>F4!`"4H3&IA=F%X+VID;R]S<&DO4&5R<VES
    M=&5N8V5#87!A8FQE.RE6# %*`4L+`00!3 $`#&ID;TUA:V5$:7)T>0$`"6UA
    M:V5$:7)T>0$`-RA,:F%V87@O:F1O+W-P:2]097)S:7-T96YC94-A<&%B;&4[
    M3&IA=F$O;&%N9R]3=')I;F<[*58,`4\!4 L!! %1`0`/:F1O4F5P;&%C949L
    M86=S`0`.<F5P;&%C:6YG1FQA9W,!`"4H3&IA=F%X+VID;R]S<&DO4&5R<VES
    M=&5N8V5#87!A8FQE.RE"# %4`54+`00!5@$`%FID;U)E<&QA8V53=&%T94UA
    M;F%G97(!`!\H3&IA=F%X+VID;R]S<&DO4W1A=&5-86YA9V5R.RE6`0`*17AC
    M97!T:6]N<P$`&VIA=F$O;&%N9R]396-U<FET>45X8V5P=&EO;@<!6P$`%7)E
    M<&QA8VEN9U-T871E36%N86=E<@$`7"A,:F%V87@O:F1O+W-P:2]097)S:7-T
    M96YC94-A<&%B;&4[3&IA=F%X+VID;R]S<&DO4W1A=&5-86YA9V5R.RE,:F%V
    M87@O:F1O+W-P:2]3=&%T94UA;F%G97([# %=`5X+`00!7P$`$&IA=F$O;&%N
    M9R]3>7-T96T'`6$!`!)G971396-U<FET>4UA;F%G97(!`!TH*4QJ879A+VQA
    M;F<O4V5C=7)I='E-86YA9V5R.PP!8P%D"@%B`64!`!MJ879A>"]J9&\O<W!I
    M+TI$3U!E<FUI<W-I;VX'`6<!`!%3151?4U1!5$5?34%.04=%4@$`'4QJ879A
    M>"]J9&\O<W!I+TI$3U!E<FUI<W-I;VX[# %I`6H)`6@!:P$`&6IA=F$O;&%N
    M9R]396-U<FET>4UA;F%G97('`6T!``]C:&5C:U!E<FUI<W-I;VX!`!TH3&IA
    M=F$O<V5C=7)I='DO4&5R;6ES<VEO;CLI5@P!;P%P"@%N`7$!`!IJ9&]#;W!Y
    M2V5Y1FEE;&1S5&]/8FIE8W1)9 $`32A,:F%V87@O:F1O+W-P:2]097)S:7-T
    M96YC94-A<&%B;&4D3V)J96-T261&:65L9%-U<'!L:65R.TQJ879A+VQA;F<O
    M3V)J96-T.RE6`0`M;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C
    M="]#871E9V]R>4ED!P%U`0`V:F%V87@O:F1O+W-P:2]097)S:7-T96YC94-A
    M<&%B;&4D3V)J96-T261&:65L9%-U<'!L:65R!P%W`0`09F5T8VA/8FIE8W1&
    M:65L9 $`%2A)*4QJ879A+VQA;F<O3V)J96-T.PP!>0%Z"P%X`7L)`78`%0$`
    M32A,:F%V87@O:F1O+W-P:2]097)S:7-T96YC94-A<&%B;&4D3V)J96-T261&
    M:65L9$-O;G-U;65R.TQJ879A+VQA;F<O3V)J96-T.RE6`0`V:F%V87@O:F1O
    M+W-P:2]097)S:7-T96YC94-A<&%B;&4D3V)J96-T261&:65L9$-O;G-U;65R
    M!P%_`0`0<W1O<F5/8FIE8W1&:65L9 $`%BA)3&IA=F$O;&%N9R]/8FIE8W0[
    M*58,`8$!@@L!@ &#`0`6:F1O3F5W3V)J96-T261);G-T86YC90$`)BA,:F%V
    M82]L86YG+U-T<FEN9SLI3&IA=F$O;&%N9R]/8FIE8W0["@%V`#D*`78`?0$`
    M#G-E=$]B:F5C=$9I96QD`0!**$QJ879A>"]J9&\O<W!I+U!E<G-I<W1E;F-E
    M0V%P86)L93M)3&IA=F$O;&%N9R]/8FIE8W0[3&IA=F$O;&%N9R]/8FIE8W0[
    M*58,`8D!B@L!! &+`0`(:7-,;V%D960!`"8H3&IA=F%X+VID;R]S<&DO4&5R
    M<VES=&5N8V5#87!A8FQE.TDI6@P!C0&."P$$`8\!``YG9713=')I;F=&:65L
    M9 $`22A,:F%V87@O:F1O+W-P:2]097)S:7-T96YC94-A<&%B;&4[24QJ879A
    M+VQA;F<O4W1R:6YG.RE,:F%V82]L86YG+U-T<FEN9SL,`9$!D@L!! &3`0`.
    M<V5T4W1R:6YG1FEE;&0!`$HH3&IA=F%X+VID;R]S<&DO4&5R<VES=&5N8V5#
    M87!A8FQE.TE,:F%V82]L86YG+U-T<FEN9SM,:F%V82]L86YG+U-T<FEN9SLI
    M5@P!E0&6"P$$`9<!``YG971/8FIE8W1&:65L9 $`22A,:F%V87@O:F1O+W-P
    M:2]097)S:7-T96YC94-A<&%B;&4[24QJ879A+VQA;F<O3V)J96-T.RE,:F%V
    M82]L86YG+T]B:F5C=#L,`9D!F@L!! &;`0`0<V5R:6%L5F5R<VEO;E5)1 $`
    M`4H%^2&,L8I8LP(,`9T!G@D``0&A`0`+=W)I=&5/8FIE8W0!`!\H3&IA=F$O
    M:6\O3V)J96-T3W5T<'5T4W1R96%M.RE6`0`3:F%V82]I;R])3T5X8V5P=&EO
    M;@<!I0P!20!Y"@`!`:<!`!IJ879A+VEO+T]B:F5C=$]U='!U=%-T<F5A;0<!
    MJ0$`$F1E9F%U;'17<FET94]B:F5C= P!JP!Y"@&J`:P!``IR96%D3V)J96-T
    M`0`>*$QJ879A+VEO+T]B:F5C=$EN<'5T4W1R96%M.RE6`0`9:F%V82]I;R]/
    M8FIE8W1);G!U=%-T<F5A;0<!L $`$61E9F%U;'1296%D3V)J96-T# &R`'D*
    M`;$!LP`A``$``P`#`*0`!P`%`! ``@`)``H````"``L`# ````(`#0`.````
    M`@`/``X````*`*4`I@````H`IP"H````"@"I`*H````*`*L`K ````H`K0"N
    M````A "O`+ ```"$`+$`L@````@`O@"N``$`>@``````" #4`*X``0!Z````
    M```(`-D`K@`!`'H```````@`X@"N``$`>@``````&@&=`9X````Y``$`$ `1
    M``$`$@```"\``0`!````!2JX`(BP`````@`3````!@`!````: `4````# `!
    M````!0`7`!@````!`!D`&@`!`!(````^``(``@````8J*[@`C+$````"`!,`
    M```*``(```!L``4`;0`4````%@`"````!@`7`!@```````8`"0`*``$``0`;
    M`!P``0`2````+P`!``$````%*K@`D+ ````"`!,````&``$```!P`!0````,
    M``$````%`!<`& ````$`'P`@``$`$@```#X``@`"````!BHKN "4L0````(`
    M$P````H``@```'0`!0!U`!0````6``(````&`!<`& ``````!@`+``P``0``
    M`"$`(@`!`!(````R``$``0````@JN "8N `HL ````(`$P````8``0```'@`
    M% ````P``0````@`%P`8```````K`"P``0`2````>0`%``(````Y*K@`F"NY
    M`# "`)D`([L`,UF[`#59$C>W`#LKM@`]M@!#$"ZV`$:V`$FW`$J_*K@`F"NY
    M`$T"`%>Q`````@`3````$@`$````? `-`'T`+0!_`#@`@ `4````%@`"````
    M.0`7`!@``````#D`3@!/``$```!0`"P``0`2````1 `"``(````,*K@`F"NY
    M`%,"`%>Q`````@`3````"@`"````@P`+`(0`% ```!8``@````P`%P`8````
    M```,`$X`3P`!``$`5 `B``$`$@```#(``0`!````""JX`)NX`"BP`````@`3
    M````!@`!````AP`4````# `!````" `7`!@````!`%<`6 `!`!(```!H``4`
    M! ```!B[`%E9*RPJMP!=3BJX`)LMN0!-`@!7+; ````"`!,````.``,```"+
    M``L`C `6`(T`% ```"H`! ```!@`7@!?``,````8`!<`& ``````& `)``H`
    M`0```!@`"P`,``(``0!@`&$``0`2````- `!``$````**K@`F+D`9 $`K ``
    M``(`$P````8``0```)$`% ````P``0````H`%P`8`````0!E`!$``0`2````
    M+@`!``$````$L@!HL ````(`$P````8``0```)0`% ````P``0````0`%P`8
    M`````0!K`&$``0`2````+ `!``$````"!*P````"`!,````&``$```"8`!0`
    M```,``$````"`!<`& ````$`; !M``$`$@```"\``0`!````!2JX`)NP````
    M`@`3````!@`!````G `4````# `!````!0`7`!@````!`&X`;P`!`!(```!!
    M``,``0```!<#`RJX`(C&``57!)D`"U<JN "(M@!QK ````(`$P````8``0``
    M`*$`% ````P``0```!<`%P`8`````0!T`"\``0`2````5 `"``(````8*\$`
    M`9D`$BO ``&X`(@JN "(M@!VK .L`````@`3````#@`#````I0`'`*8`%@"H
    M`!0````6``(````8`!<`& ``````& !W`'@``0`2`!<`>0`"`'H``````!(`
    M``!%``,``0```!<JNP![6;<`?K@`GRJ[`'M9MP!^N "BL0````(`$P````H`
    M`@```%(`"P!=`!0````,``$````7`!<`& ````$`.@!_``$`$@```%T``@`#
    M````$RJW`( JMP""*BNX`(PJ++@`E+$````"`!,````2``0```!?``@`8 `-
    M`&$`$@!B`!0````@``,````3`!<`& ``````$P`)``H``0```!,`"P`,``(`
    M`0`Z`'D``0`2````-P`!``$````)*K<`@"JW`(*Q`````@`3````"@`"````
    M9 `(`&4`% ````P``0````D`%P`8````& "S`'D``0`2````Y `.``````#8
    M% &?LP&B![T`M5D#$K936002MU-9!1*X4UD&$KE3LP"[![T`O5D#`+(`S\8`
    M";(`SZ<`#!+1N #36;,`SP!3600`L@#6Q@`)L@#6IP`,$MBX`--9LP#6`%-9
    M!0"R`-O&``FR`-NG``P2W;@`TUFS`-L`4UD&`+(`V\8`";(`VZ<`#!+=N #3
    M6;,`VP!3LP#?![P(60,0&%19!! 55%D%$ I46080"E2S`.$`L@#DQ@`)L@#D
    MIP`,$N:X`--9LP#D`+(`N[(`W[(`X;(`Z+L``5FW`.FX`.^Q```````(`+\`
    MP `"`'H``````!(````F``,``@```!(JN ##L$R[`,59*[8`RK<`R[\``0``
    M``4`!0#-`````0#P`/$``0`2````)0`"``0````9NP`!6;<`Z4XM*[4`\RT$
    MM0#U+2RV`/DML ```````0#P`/H``0`2````( `"``,````4NP`!6;<`Z4TL
    M*[4`\RP$M0#U++ ```````P`^P!O``$`$@````X``0```````@>L```````!
    M`/P`_0`!`!(```"4``4``P```(@;L@#_9#T<G `+NP$!6;<!`K\`'*H`````
    M``!L``````````,````@````,P```$8```!9*BJT`/,J&[D!" ,`P !RM0`6
    ML2HJM #S*ANY`0P#`, `M;4`'K$J*K0`\RH;N0$(`P# `#&U`"2Q*BJT`/,J
    M&[D!" ,`P `QM0!6L;L!`5FW`0*_```````!`0T!#@`!`!(````B``,``P``
    M`!8#/:<`#2HK'"ZV`1"$`@$<*[ZA__.Q```````!`1$`_0`!`!(```"(``4`
    M`P```'P;L@#_9#T<G `+NP$!6;<!`K\`'*H```````!@``````````,````@
    M````, ```$ ```!0*K0`\RH;*K0`%KD!%00`L2JT`/,J&RJT`!ZY`1D$`+$J
    MM #S*ALJM `DN0$5! "Q*K0`\RH;*K0`5KD!%00`L;L!`5FW`0*_```````!
    M`1H!#@`!`!(````B``,``P```!8#/:<`#2HK'"ZV`1R$`@$<*[ZA__.Q````
    M```$`1T!'@`!`!(```!L``,`! ```& <L@#_9#X=G `+NP$!6;<!`K\`':H`
    M``````!$``````````,````@````*0```#(````[*BNT`!:U`!:Q*BNT`!ZU
    M`!ZQ*BNT`"2U`"2Q*BNT`%:U`%:QNP$!6;<!`K\```````$!'P$@``$`$@``
    M`$\`!@`%````0RO ``%.+;0`\RJT`/.E``N[`0%9MP$"OP`JM #SQP`+NP`S
    M6;<!(;\``S8$IP`/*BTL%00NM@$CA 0!%00LOJ'_\+$```````$!) $E``$`
    M$@```" ``@`!````%"JT`//'``4!L"JT`/,JN0$I`@"P```````!`2H!*P`!
    M`!(````@``(``0```!0JM #SQP`%`; JM #S*KD!+P(`L ```````0$P`2L`
    M`0`2````( `"``$````4*K0`\\<`!0&P*K0`\RJY`3,"`+ ```````$!- !A
    M``$`$@```" ``@`!````%"JT`//'``4#K"JT`/,JN0$X`@"L```````!`3D`
    M80`!`!(````@``(``0```!0JM #SQP`%`ZPJM #S*KD!/ (`K ```````0$]
    M`&$``0`2````( `"``$````4*K0`\\<`!0.L*K0`\RJY`4 "`*P```````$!
    M00!A``$`$@```" ``@`!````%"JT`//'``4#K"JT`/,JN0%$`@"L```````!
    M`44`80`!`!(````@``(``0```!0JM #SQP`%`ZPJM #S*KD!2 (`K ``````
    M`0%)`'D``0`2````'P`"``$````3*K0`\\<`!+$JM #S*KD!30(`L0``````
    M`0%.`" ``0`2````( `#``(````4*K0`\\<`!+$JM #S*BNY`5(#`+$`````
    M``$!4P!Y``$`$@```",``P`!````%RJT`//'``2Q*BJT`/,JN0%7`@"U`/6Q
    M```````A`5@!60`"`5H````$``$!7 `2````. `$``,````L*K0`\\8`$RHJ
    MM #S*BNY`6 #`+4`\[&X`69-+,8`"BRR`6RV`7(J*[4`\[$```````$!<P%T
    M``$`$@```"@`! `%````'"S `79.L@#_-@0M*P,5!&"Y`7P"`, `<K4!?;$`
    M``````$!<P#W``$`$@```!X``@`$````$BO `79-L@#_/BPJM `6M0%]L0``
    M`````0#V`7X``0`2````)0`#``4````9+, !=DZR`/\V!"L#%01@+;0!?;D!
    MA ,`L0```````0#V`/<``0`2````&@`"``,````.*\ !=DTJ++0!?;4`%K$`
    M``````$!A0&&``$`$@```!4``P`"````";L!=EDKMP&'L ```````0&%`2L`
    M`0`2````% `"``$````(NP%V6;<!B+ ``````!H`A0"&``$`$@```!$``0`!
    M````!2JT`!:P```````:`(D`B@`!`!(````N``4``@```"(JM #SQP`)*BNU
    M`!:Q*K0`\RJR`/\#8"JT`!8KN0&,!0"Q```````:`(T`C@`!`!(```!$``0`
    M`@```#@JM #UG0`(*K0`'K"R`/\$8#PJM #S*ANY`9 #`)D`""JT`!ZP*K0`
    M\RH;*K0`'KD!E 0`P "UL ``````&@"1`)(``0`2````+@`%``(````B*K0`
    M]9H`"2HKM0`>L2JT`/,JL@#_!& JM `>*[D!F 4`L0``````&@"5`)8``0`2
    M````1 `$``(````X*K0`\\<`""JT`"2PL@#_!6 \*K0`\RH;N0&0`P"9``@J
    MM `DL"JT`/,J&RJT`"2Y`9P$`, `,; ``````!H`G "=``$`$@```"X`!0`"
    M````(BJT`//'``DJ*[4`)+$JM #S*K(`_P5@*K0`)"NY`8P%`+$``````!H`
    MF0"6``$`$@```$0`! `"````."JT`//'``@JM !6L+(`_P9@/"JT`/,J&[D!
    MD ,`F0`(*K0`5K JM #S*ALJM !6N0&<! # `#&P```````:`* `G0`!`!(`
    M```N``4``@```"(JM #SQP`)*BNU`%:Q*K0`\RJR`/\&8"JT`%8KN0&,!0"Q
    M```````"`:,!I `"`5H````$``$!I@`2````%0`!``(````)*K8!J"NV`:VQ
    M```````"`:X!KP`"`5H````&``(!I@#-`!(````1``$``@````4KM@&TL0``
    ,`````0"#`````@"$
    `
    end
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

  • Error #1065: Variable flash.media::SoundCodec is not defined.

    Good morning,
    Since I moved to SDK 0.91, I have the recurrent error when I
    launch a second instance of my application on the same PC, for test
    purposes:
    ReferenceError: Error #1065: Variable flash.media::SoundCodec
    is not defined.
    at com.adobe.rtc.clientManagers::MicrophoneManager/get
    selectedMic()[C:\work\main\connect\cocomoPlayer10\src\com\adobe\rtc\clientManagers\Microp honeManager.as:160]
    at com.adobe.rtc.clientManagers::MicrophoneManager/set
    _1703516469micIndex()[C:\work\main\connect\cocomoPlayer10\src\com\adobe\rtc\clientManager s\MicrophoneManager.as:126]
    at com.adobe.rtc.clientManagers::MicrophoneManager/set
    micIndex()[C:\work\main\connect\cocomoPlayer10\src\com\adobe\rtc\clientManagers\Microphon eManager.as:122]
    at
    com.adobe.rtc.clientManagers::MicrophoneManager()[C:\work\main\connect\cocomoPlayer10\src \com\adobe\rtc\clientManagers\MicrophoneManager.as:81]
    at
    com.adobe.rtc.clientManagers::MicrophoneManager$/getInstance()[C:\work\main\connect\cocom oPlayer10\src\com\adobe\rtc\clientManagers\MicrophoneManager.as:93]
    at
    com.adobe.rtc.sharedManagers::StreamManager/findCodec()[C:\work\main\connect\cocomoPlayer 10\src\com\adobe\rtc\sharedManagers\StreamManager.as:1864]
    at
    com.adobe.rtc.sharedManagers::StreamManager/onUserRemove()[C:\work\main\connect\cocomoPla yer10\src\com\adobe\rtc\sharedManagers\StreamManager.as:1851]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    com.adobe.rtc.sharedManagers::UserManager/userRemoved()[C:\work\main\connect\cocomoPlayer 10\src\com\adobe\rtc\sharedManagers\UserManager.as:1020]
    at
    com.adobe.rtc.sharedManagers::UserManager/onItemRetract()[C:\work\main\connect\cocomoPlay er10\src\com\adobe\rtc\sharedManagers\UserManager.as:920]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at com.adobe.rtc.sharedModel::CollectionNode/
    http://www.adobe.com/2006/connect/cocomo/messaging/internal::receiveItemRetraction()[C:\wo rk\main\connect\cocomoPlayer10\src\com\adobe\rtc\sharedModel\CollectionNode.as:758
    at com.adobe.rtc.messaging.manager::MessageManager/
    http://www.adobe.com/2006/connect/cocomo/messaging/internal::receiveItemRetraction()[C:\wo rk\main\connect\cocomoPlayer10\src\com\adobe\rtc\messaging\manager\MessageManager.as:678
    at
    com.adobe.rtc.session.managers::SessionManagerBase/receiveItemRetraction()[C:\work\main\c onnect\cocomoPlayer10\src\com\adobe\rtc\session\managers\SessionManagerBase.as:341]
    The weird thing is that I'm working on an application that
    doesn't use the microphone. I'm only using a simple SharedModel to
    share Arrays.
    Any idea where this could come from?
    Axel

    Hi,
    SoundCodec class is defined in Player 10. Are you using the
    player 10 afcs swc ? If so, you need to change Require Flash Player
    Version unser Project->Properties->Flex Compiler in Flex
    Builder and put that to 10.0.0 and also make sure that your browser
    has player 10 and you Flex SDK also supports player 10.
    And if you are using afcs 9 swc , then put 9.0.124 or
    something in the Require Flash Player Version and that should fix
    the problem
    Thanks
    Hironmay Basu

  • Flex 4 - Error with DataGrid in Module

    Hey, I'm using Flex 4 final and am now getting the following error when loading a Module with a DataGrid inside:
    TypeError: Error #1009: Cannot access a property or method of a null object reference
        at mx.styles::StyleProtoChain$/initProtoChainForUIComponentStyleName()[E:\dev\4.0.0\framewor ks\projects\framework\src\mx\styles\StyleProtoChain.as:356]
    It is created via MXML:
    <mx:Module layout="absolute" xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx">
        <mx:DataGrid>
            ... config etc.
        </mx:DataGrid>
        ... other code
    </mx:Module>
    If I remove the DataGrid the Module works fine. The code used to work in the various betas.
    If I put a DataGrid in the main application that also renders fine, so it's only inside Modules.
    Thanks in advance for any help or ideas!

    Hi Darrell,
         I have the exact same error, and yes I am using module.factory.create() but I get an error when I try to add the module to my stage.  Here it is the code in my modReady function.
    var _sd:Object = new Object();         
    _sd = util.app.SDModule.factory.create() as SequenceDetail;
                _sd.sequenceId = event.currentTarget.selectedItem.sequenceId;
                _sd.environment = event.currentTarget.selectedItem.environment;
                _sd.seqname = event.currentTarget.selectedItem.sequenceName;
                util.app.page.addChildAt(_sd as SequenceDetail, util.app.page.numChildren);
                util.app.nav_buttons.selectedIndex = -1;
                util.app.page.selectedIndex = util.app.page.numChildren-1;
    I get an error on util.app.page.addChildAt(........).
    error is
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at mx.styles::StyleProtoChain$/initProtoChainForUIComponentStyleName()[E:\dev\4.0.0\framewor ks\projects\framework\src\mx\styles\StyleProtoChain.as:356]
        at mx.styles::StyleProtoChain$/initProtoChain()[E:\dev\4.0.0\frameworks\projects\framework\s rc\mx\styles\StyleProtoChain.as:171]
        at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::initProtoChain()[E:\dev\4.0.0\frameworks\proje cts\framework\src\mx\core\UIComponent.as:10186]
        at mx.core::UIComponent/regenerateStyleCache()[E:\dev\4.0.0\frameworks\projects\framework\sr c\mx\core\UIComponent.as:10249]
        at mx.core::Container/regenerateStyleCache()[E:\dev\4.0.0\frameworks\projects\framework\src\ mx\core\Container.as:3737]
        at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::addingChild()[E:\dev\4.0.0\frameworks\projects \framework\src\mx\core\UIComponent.as:7114]
        at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::rawChildren_addChild()[E:\dev\4.0.0\frameworks \projects\framework\src\mx\core\Container.as:4464]
        at mx.core::ContainerRawChildrenList/addChild()[E:\dev\4.0.0\frameworks\projects\framework\s rc\mx\core\ContainerRawChildrenList.as:143]
        at mx.containers::TabNavigator/createChildren()[E:\dev\4.0.0\frameworks\projects\framework\s rc\mx\containers\TabNavigator.as:559]
        at mx.core::UIComponent/initialize()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\ UIComponent.as:7250]
        at mx.core::Container/initialize()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\Co ntainer.as:3129]
        at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\4.0.0\frameworks\projects\ framework\src\mx\core\UIComponent.as:7142]
        at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\4.0.0\frameworks\projects\ framework\src\mx\core\Container.as:3951]
        at mx.core::Container/addChildAt()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\Co ntainer.as:2616]
        at mx.core::Container/addChild()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\Cont ainer.as:2534]
        at mx.core::Container/createComponentFromDescriptor()[E:\dev\4.0.0\frameworks\projects\frame work\src\mx\core\Container.as:4371]
        at mx.core::Container/createComponentsFromDescriptors()[E:\dev\4.0.0\frameworks\projects\fra mework\src\mx\core\Container.as:4160]
        at mx.containers::Panel/createComponentsFromDescriptors()[E:\dev\4.0.0\frameworks\projects\f ramework\src\mx\containers\Panel.as:1685]
        at mx.core::Container/createChildren()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\cor e\Container.as:3187]
        at mx.containers::Panel/createChildren()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\c ontainers\Panel.as:1198]
        at mx.core::UIComponent/initialize()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\ UIComponent.as:7250]
        at mx.core::Container/initialize()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\Co ntainer.as:3129]
        at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\4.0.0\frameworks\projects\ framework\src\mx\core\UIComponent.as:7142]
        at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\4.0.0\frameworks\projects\ framework\src\mx\core\Container.as:3951]
        at mx.core::Container/addChildAt()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\Co ntainer.as:2616]
        at mx.core::Container/addChild()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\Cont ainer.as:2534]
        at mx.core::Container/createComponentFromDescriptor()[E:\dev\4.0.0\frameworks\projects\frame work\src\mx\core\Container.as:4371]
        at mx.core::Container/createComponentsFromDescriptors()[E:\dev\4.0.0\frameworks\projects\fra mework\src\mx\core\Container.as:4160]
        at mx.core::Container/createChildren()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\cor e\Container.as:3187]
        at mx.core::UIComponent/initialize()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\ UIComponent.as:7250]
        at mx.core::Container/initialize()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\Co ntainer.as:3129]
        at SequenceDetail/initialize()
        at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\4.0.0\frameworks\projects\ framework\src\mx\core\UIComponent.as:7142]
        at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\4.0.0\frameworks\projects\ framework\src\mx\core\Container.as:3951]
        at mx.core::Container/addChildAt()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\Co ntainer.as:2616]
        at mx.containers::ViewStack/addChildAt()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\c ontainers\ViewStack.as:1426]
        at com::MyDBResult/displaySequenceDetail()[/Users/jbhavsar/Documents/workspace/virome/src/co m/MyDBResult.as:114]
        at <anonymous>()[/Users/jbhavsar/Documents/workspace/virome/src/com/MyDBResult.as:103]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at ModuleInfoProxy/moduleEventHandler()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\mo dules\ModuleManager.as:1168]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at ModuleInfo/readyHandler()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\modules\Modul eManager.as:812]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.core::FlexModuleFactory/update()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\cor e\FlexModuleFactory.as:433]
        at mx.core::FlexModuleFactory/docFrameHandler()[E:\dev\4.0.0\frameworks\projects\framework\s rc\mx\core\FlexModuleFactory.as:582]
        at mx.core::FlexModuleFactory/docFrameListener()[E:\dev\4.0.0\frameworks\projects\framework\ src\mx\core\FlexModuleFactory.as:126]
    Thanks
    Jay
    p.s: Please dont hammer me if my code isn't upto standard, I am learning this as I go along.

  • Access Error Using Webservice In Weblogic 7

    Hi,
    I am getting the following error in Weblogic 7 sp1 when I call a client, which
    invokes
    a web service application (A). The application will then connect through the t3
    protocol to call another application (B) returning some data.
    <Dec 17, 2002 4:51:53 PM CST> <Notice> <WebLogicServer> <000365> <Server state
    c
    hanged to RUNNING>
    <Dec 17, 2002 4:51:53 PM CST> <Notice> <WebLogicServer> <000360> <Server started
    in RUNNING mode>
    <Dec 17, 2002 5:29:41 PM CST> <Error> <JTA> <110201> <User [<anonymous>] is not
    authorized to invoke startRollback on a transaction branch.>
    weblogic.management.NoAccessRuntimeException: Access not allowed for subject:
    pr
    incipals=[], on ResourceType: ServerConfig Action: execute, Target: lookupServer
    Runtime
    at weblogic.management.internal.Helper$IsAccessAllowedPrivilegeAction.ru
    n(Helper.java:2034)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:744)
    at weblogic.management.internal.Helper.isAccessAllowed(Helper.java:1865)
    at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBean
    ServerImpl.java:923)
    at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unkn
    own Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:362)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:313)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:785)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.jav
    a:308)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest
    .java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    I have set the necessary user credentials when I create the Initial context
    and I am able to get the remote reference of the Session Bean in
    application B.
    Hashtable ht = new Hashtable();
    ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    ht.put(Context.PROVIDER_URL,SOME_URL);
    ht.put(Context.SECURITY_PRINCIPAL,"system");
    ht.put(Context.SECURITY_CREDENTIALS,"weblogic1234");
    Hope someone could shed some light on this.
    Thanks a lot.

    Hi,
    I am getting a different error message now:
    <Dec 18, 2002 6:00:43 PM CST> <Error> <EJB> <010026> <Exception during commit
    of
    transaction 3:ff0ca3f858e3d95b: javax.transaction.SystemException: Commit can
    b
    e issued only when there are no requests awaiting responses. Currently there is
    one such request at weblogic.transaction.internal.TransactionImpl.abort(TransactionImpl.j
    ava:989)
    at weblogic.transaction.internal.TransactionImpl.enforceCheckedTransaction(TransactionImpl.java:1499)
    at weblogic.transaction.internal.TransactionImpl.checkIfCommitPossible(TransactionImpl.java:1477)
    at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTransactionImpl.java:230)
    at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:208)
    at weblogic.ejb20.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:278)
    at com.ejb.sb.SBAccountBean_6uugr6_EOImpl.getAccountDetails(SBAccountBean_6uugr6_EOImpl.java:212)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.webservice.component.slsb.SLSBInvocationHandler.invoke(SLSBInvocationHandler.java:84)
    at weblogic.webservice.core.handler.InvokeHandler.handleRequest(InvokeHandler.java:78)
    at weblogic.webservice.core.HandlerChain.handleRequest(HandlerChain.java:131)
    at weblogic.webservice.core.DefaultOperation.process(DefaultOperation.java:539)
    at weblogic.webservice.core.DefaultWebService.invoke(DefaultWebService.java:264)
    at weblogic.webservice.server.servlet.ServletBase.serverSideInvoke(ServletBase.java:362)
    at weblogic.webservice.server.servlet.WebServiceServlet.serverSideInvoke(WebServiceServlet.java:269)
    at weblogic.webservice.server.servlet.ServletBase.doPost(ServletBase.java:346)
    at weblogic.webservice.server.servlet.WebServiceServlet.doPost(WebServiceServlet.java:237)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    --------------- nested within: ------------------
    weblogic.transaction.RollbackException: Commit can be issued only when there are
    no requests awaiting responses. Currently there is one such request - with nested
    exception:
    [javax.transaction.SystemException: Commit can be issued only when there are no
    requests awaiting responses. Currently there is one such request]
    at weblogic.transaction.internal.TransactionImpl.throwRollbackException(TransactionImpl.java:1561)
    at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTransactionImpl.java:284)
    at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:208)
    at weblogic.ejb20.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:278)
    at com.ejb.sb.SBAccountBean_6uugr6_EOImpl.getAccountDetails
    (SBAccountBean_6uugr6_EOImpl.java:212)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.webservice.component.slsb.SLSBInvocationHandler.invoke(SLSBInvocationHandler.java:84)
    at weblogic.webservice.core.handler.InvokeHandler.handleRequest(InvokeHandler.java:78)
    at weblogic.webservice.core.HandlerChain.handleRequest(HandlerChain.java:131)
    at weblogic.webservice.core.DefaultOperation.process(DefaultOperation.java:539)
    at weblogic.webservice.core.DefaultWebService.invoke(DefaultWebService.java:264)
    at weblogic.webservice.server.servlet.ServletBase.serverSideInvoke(ServletBase.java:362)
    at weblogic.webservice.server.servlet.WebServiceServlet.serverSideInvoke(WebServiceServlet.java:269)
    at weblogic.webservice.server.servlet.ServletBase.doPost(ServletBase.java:346)
    at weblogic.webservice.server.servlet.WebServiceServlet.doPost(WebServiceServlet.java:237)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >

  • Empirix Emanager Email Notification Issue

    We are using Empirix Emanager version 8.20. We are having issues when we try to send out any report from Emanager as a email. We have made correct set up using using Empirix Administrator > Set up Email Configuration & we are able to get the test emails from Empirix Administrator. However, when we try to send any report as email to same email address from Empirix Emanager, we are receving below error message:
    "There were errors sending email, following exceptions occurred...
    javax.mail.SendFailedException: Sending failed; nested exception is: class
    Java.mail.MessagingException: 501 5.5.4 Invalid Address"
    Not able to understand why this error comes up and what the solution for this is? Does Empirix Administrtor Email config apply to Empirix Emanager as well? Or is there any other settings that need to be done Emails to work from Emanager. This is essential for us to work since we want the emails reports to be sent out once any Automated schedule scripts completes execution.
    Thanks in Advance,
    Vinu

    Vinu
    Are you sure that the email address is correct, the error message says: +: 501 5.5.4 Invalid Address+
    Regards
    Alex

  • Ebcc sync error

    I'm running WL Portal 7.0 sp1. I've been syncing with the ebcc with no problems.
    Then one morning I received this error when I sync.
    Any ideas on what is going wrong?
    -Kevin
    URI : /webapps/gtnwebapp/gtnportal.portal
    Cause : Persistence Failure executing DataItemMessage with Persistence Manager:
    MemoryPersistenceManager DataItems: [email protected]b3246
    URI: /webapps/gtnwebapp/gtnportal.portal
    Schema URI: http://www.bea.com/servers/portal/xsd/portal/1.1.0
    Checksum: 266132414
    Data: <?xml version="1.0"?>
    <portal xmlns="http://www.b...
    Creation date: 2002-12-12 09:32:28.508
    Modification date: 2002-12-12 09:32:28.508
    Metadata: com.bea.p13n.common.internal.MetadataImpl@7ea273
    Name: gtnportal.portal
    Description: C:\bea\user_projects\gtndomain\beaApps\portalApp-project\application-sync\webapps\gtnwebapp\gtnportal.portal
    Author: kevin.pfarr C:\Documents and Settings\kevin.pfarr en US America/Chicago
    Version:
    StackTrace : Exception[com.bea.p13n.management.data.repository.PersistenceException:
    Unable to persist default config.]
         at com.bea.portal.manager.internal.PortalPersistenceManager.updatePortalModel(PortalPersistenceManager.java:345)
         at com.bea.portal.manager.internal.PortalPersistenceManager.createDataItem(PortalPersistenceManager.java:201)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.handleDataItemMessage(AbstractDataRepository.java:814)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onDataSyncMessage(AbstractDataRepository.java:990)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:252)
         at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onSyncRequestResultMessage(AbstractDataRepository.java:1185)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:261)
         at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onSyncRequestMessage(AbstractDataRepository.java:1086)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:257)
         at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.notifyDataRepository(AbstractDataRepository.java:706)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.notifyDataRepositories(AbstractDataRepository.java:658)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.notifyDataRepositories(AbstractDataRepository.java:606)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onDataSyncMessage(AbstractDataRepository.java:994)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:252)
         at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
         at com.bea.p13n.management.data.transport.servlets.DataSyncServlet.dispatchMessage(DataSyncServlet.java:351)
         at com.bea.p13n.management.data.transport.servlets.DataSyncServlet.doPost(DataSyncServlet.java:276)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5412)
         at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:744)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3086)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2544)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    Resource key "Corrective Action" not found for class com.bea.commerce.tools.server.SynchronizationProgress.
    null
    ==================================================================

    Furthermore, when starting my portal server, I get the following error:
    Starting WebLogic Server...
    <Dec 16, 2002 10:29:55 AM CST> <Notice> <Management> <140005> <Loading configura
    tion C:\bea\user_projects\portalDomain\.\config.xml>
    <Dec 16, 2002 10:30:35 AM CST> <Notice> <Security> <090093> <No configuration
    da
    ta was found on server portalServer for realm CompatibilityRealm.>
    <Dec 16, 2002 10:30:35 AM CST> <Notice> <Security> <090082> <Security initializi
    ng using realm CompatibilityRealm.>
    <Dec 16, 2002 10:30:36 AM CST> <Notice> <WebLogicServer> <000327> <Starting WebL
    ogic Admin Server "portalServer" for domain "portalDomain">
    Exception[com.bea.portal.manager.internal.persistence.PersistenceException: More
    than one row was returned on an alternate key.]
    at com.bea.portal.manager.internal.persistence.jdbc.JdbcPersonalizationK
    eyManager.getPersonalizationKey(JdbcPersonalizationKeyManager.java:112)
    at com.bea.portal.manager.internal.persistence.jdbc.CachingPersonalizati
    onKeyManager.getPersonalizationKey(CachingPersonalizationKeyManager.java:105)
    at com.bea.portal.manager.internal.persistence.jdbc.CachingPersonalizati
    onManager.loadPortalP13nSkinPoolEntries(CachingPersonalizationManager.java:247)
    at com.bea.portal.manager.internal.persistence.jdbc.KeyCachingPersistenc
    eManager.getPortalPersonalizations(KeyCachingPersistenceManager.java:293)
    at com.bea.portal.manager.internal.persistence.jdbc.UserCachingPersisten
    ceManager.getPortalPersonalizations(UserCachingPersistenceManager.java:537)
    at com.bea.portal.manager.internal.PortalPersistenceManager.updateAllPor
    talP13n(PortalPersistenceManager.java:918)
    at com.bea.portal.manager.internal.PortalPersistenceManager.updatePortal
    Model(PortalPersistenceManager.java:295)
    at com.bea.portal.manager.internal.PortalPersistenceManager.createDataIt
    em(PortalPersistenceManager.java:196)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.handleDataItemMessage(AbstractDataRepository.java:814)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onDataSyncMessage(AbstractDataRepository.java:990)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:252)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onSyncRequestResultMessage(AbstractDataRepository.java:1185)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:261)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onSyncRequestMessage(AbstractDataRepository.java:1086)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:257)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.notifyDataRepository(AbstractDataRepository.java:706)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onRefreshMessage(AbstractDataRepository.java:912)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:247)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.sendRefreshMessageToThis(AbstractDataRepository.java:341)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.addNotifiedDataRepository(AbstractDataRepository.java:324)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.addNotifiedDataRepository(AbstractDataRepository.java:304)
    at com.bea.portal.manager.internal.DeploymentManager.initializePortal(De
    ploymentManager.java:142)
    at com.bea.portal.manager.internal.DeploymentManager.initialize(Deployme
    ntManager.java:101)
    at com.bea.portal.manager.internal.PortalManagerDelegateImpl.<init>(Port
    alManagerDelegateImpl.java:83)
    at com.bea.portal.manager.PortalFactory.createPortalManagerDelegate(Port
    alFactory.java:248)
    at com.bea.portal.manager.ejb.internal.PortalManagerBean.ejbCreate(Porta
    lManagerBean.java:147)
    at com.bea.portal.manager.ejb.internal.PortalManagerBean_w6xny9_Impl.ejb
    Create(PortalManagerBean_w6xny9_Impl.java:117)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSessionP
    ool.java:151)
    at weblogic.ejb20.pool.Pool.createInitialBeans(Pool.java:188)
    at weblogic.ejb20.manager.StatelessManager.initializePool(StatelessManag
    er.java:380)
    at weblogic.ejb20.deployer.EJBDeployer.initializePools(EJBDeployer.java:
    1472)
    at weblogic.ejb20.deployer.EJBDeployer.start(EJBDeployer.java:1367)
    at weblogic.ejb20.deployer.EJBModule.start(EJBModule.java:404)
    at weblogic.j2ee.J2EEApplicationContainer.start(J2EEApplicationContainer
    .java:983)
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContai
    ner.java:969)
    at weblogic.management.deploy.slave.SlaveDeployer.setActivationStateForA
    llApplications(SlaveDeployer.java:619)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.j
    ava:376)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resum
    e(DeploymentManagerServerLifeCycleImpl.java:235)
    at weblogic.t3.srvr.ServerLifeCycleList.resume(ServerLifeCycleList.java:
    61)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:806)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:295)
    at weblogic.Server.main(Server.java:32)
    <Dec 16, 2002 10:33:18 AM CST> <Error> <Data Synchronization> <000000> <Applicat
    ion: portalApp; Persistence Failure executing DataItemMessage with Persistence
    M
    anager: com.bea.portal.manager.internal.PortalPersistenceManager [DR: Portal
    Ap
    plication Data Repository, URI: /webapps/gtnwebapp/gtnportal.portal, Action: CRE
    ATE]
    Exception[com.bea.p13n.management.data.repository.PersistenceException: Unable
    t
    o persist default config.]
    at com.bea.portal.manager.internal.PortalPersistenceManager.updatePortal
    Model(PortalPersistenceManager.java:345)
    at com.bea.portal.manager.internal.PortalPersistenceManager.createDataIt
    em(PortalPersistenceManager.java:196)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.handleDataItemMessage(AbstractDataRepository.java:814)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onDataSyncMessage(AbstractDataRepository.java:990)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:252)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onSyncRequestResultMessage(AbstractDataRepository.java:1185)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:261)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onSyncRequestMessage(AbstractDataRepository.java:1086)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:257)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.notifyDataRepository(AbstractDataRepository.java:706)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onRefreshMessage(AbstractDataRepository.java:912)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:247)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.sendRefreshMessageToThis(AbstractDataRepository.java:341)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.addNotifiedDataRepository(AbstractDataRepository.java:324)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.addNotifiedDataRepository(AbstractDataRepository.java:304)
    at com.bea.portal.manager.internal.DeploymentManager.initializePortal(De
    ploymentManager.java:142)
    at com.bea.portal.manager.internal.DeploymentManager.initialize(Deployme
    ntManager.java:101)
    at com.bea.portal.manager.internal.PortalManagerDelegateImpl.<init>(Port
    alManagerDelegateImpl.java:83)
    at com.bea.portal.manager.PortalFactory.createPortalManagerDelegate(Port
    alFactory.java:248)
    at com.bea.portal.manager.ejb.internal.PortalManagerBean.ejbCreate(Porta
    lManagerBean.java:147)
    at com.bea.portal.manager.ejb.internal.PortalManagerBean_w6xny9_Impl.ejb
    Create(PortalManagerBean_w6xny9_Impl.java:117)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSessionP
    ool.java:151)
    at weblogic.ejb20.pool.Pool.createInitialBeans(Pool.java:188)
    at weblogic.ejb20.manager.StatelessManager.initializePool(StatelessManag
    er.java:380)
    at weblogic.ejb20.deployer.EJBDeployer.initializePools(EJBDeployer.java:
    1472)
    at weblogic.ejb20.deployer.EJBDeployer.start(EJBDeployer.java:1367)
    at weblogic.ejb20.deployer.EJBModule.start(EJBModule.java:404)
    at weblogic.j2ee.J2EEApplicationContainer.start(J2EEApplicationContainer
    .java:983)
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContai
    ner.java:969)
    at weblogic.management.deploy.slave.SlaveDeployer.setActivationStateForA
    llApplications(SlaveDeployer.java:619)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.j
    ava:376)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resum
    e(DeploymentManagerServerLifeCycleImpl.java:235)
    at weblogic.t3.srvr.ServerLifeCycleList.resume(ServerLifeCycleList.java:
    61)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:806)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:295)
    at weblogic.Server.main(Server.java:32)
    >
    <Dec 16, 2002 10:33:20 AM CST> <Notice> <Management> <141053> <Application Polle
    r not started for production server.>
    Any sort of help would be greatly appreciated!!
    Thanks.
    -Kevin
    "Kevin Pfarr" <[email protected]> wrote:
    >
    I'm running WL Portal 7.0 sp1. I've been syncing with the ebcc with
    no problems.
    Then one morning I received this error when I sync.
    Any ideas on what is going wrong?
    -Kevin
    URI : /webapps/gtnwebapp/gtnportal.portal
    Cause : Persistence Failure executing DataItemMessage with Persistence
    Manager:
    MemoryPersistenceManager DataItems: [email protected]b3246
    URI: /webapps/gtnwebapp/gtnportal.portal
    Schema URI: http://www.bea.com/servers/portal/xsd/portal/1.1.0
    Checksum: 266132414
    Data: <?xml version="1.0"?>
    <portal xmlns="http://www.b...
    Creation date: 2002-12-12 09:32:28.508
    Modification date: 2002-12-12 09:32:28.508
    Metadata: com.bea.p13n.common.internal.MetadataImpl@7ea273
    Name: gtnportal.portal
    Description: C:\bea\user_projects\gtndomain\beaApps\portalApp-project\application-sync\webapps\gtnwebapp\gtnportal.portal
    Author: kevin.pfarr C:\Documents and Settings\kevin.pfarr en US America/Chicago
    Version:
    StackTrace : Exception[com.bea.p13n.management.data.repository.PersistenceException:
    Unable to persist default config.]
         at com.bea.portal.manager.internal.PortalPersistenceManager.updatePortalModel(PortalPersistenceManager.java:345)
         at com.bea.portal.manager.internal.PortalPersistenceManager.createDataItem(PortalPersistenceManager.java:201)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.handleDataItemMessage(AbstractDataRepository.java:814)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onDataSyncMessage(AbstractDataRepository.java:990)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:252)
         at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onSyncRequestResultMessage(AbstractDataRepository.java:1185)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:261)
         at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onSyncRequestMessage(AbstractDataRepository.java:1086)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:257)
         at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.notifyDataRepository(AbstractDataRepository.java:706)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.notifyDataRepositories(AbstractDataRepository.java:658)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.notifyDataRepositories(AbstractDataRepository.java:606)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onDataSyncMessage(AbstractDataRepository.java:994)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:252)
         at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
         at com.bea.p13n.management.data.transport.servlets.DataSyncServlet.dispatchMessage(DataSyncServlet.java:351)
         at com.bea.p13n.management.data.transport.servlets.DataSyncServlet.doPost(DataSyncServlet.java:276)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5412)
         at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:744)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3086)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2544)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    Resource key "Corrective Action" not found for class com.bea.commerce.tools.server.SynchronizationProgress.
    null
    ==================================================================

  • BI Beans application deploy to Weblogic Server Error

    Who can help me to resolve this error?
    I follow the "Deploying Applications to BEA WebLogic ServerVersion 9.0.3" document from OTN web site, but i use the BEA weblogic server 6.1,not weblogic server 7.0.
    When i deploy the BI Beans application to BEA WLS6.1, then happen the follow error message, every consultants can help me,please.
    **************Error Message************
    Fri Mar 07 10:23:30 CST 2003 TRACE: In oracle.dss.connection.server.ConnectionImpl::connect: -ConnectionBean-Server: is going to connect - (DriverType=MDM)
    Fri Mar 07 10:23:30 CST 2003 TRACE: In oracle.dss.connection.server.ConnectionImpl::connect: -ConnectionBean-MDMDriver: Connected Successfully: Time=200ms
    Fri Mar 07 10:23:30 CST 2003 TRACE: In oracle.dss.connection.server.ConnectionImpl::connect: -ConnectionBean-Server: is going to connect - (DriverType=PERSISTENCE)
    Fri Mar 07 10:23:30 CST 2003 TRACE: In oracle.dss.connection.server.drivers.persistence.PersistenceConnectionDriverImpl::connect: -ConnectionBean-PersistenceDriver is going to connect
    Fri Mar 07 10:23:30 CST 2003 TRACE: In
    oracle.dss.connection.server.drivers.persistence.PersistenceConnectionDriverImpl::connect: (ServiceName=null; Prinicipal=Local User; Username=null)
    Fri Mar 07 10:23:30 CST 2003 TRACE: In oracle.dss.persistence.storagemanager.bi.BIFileStorageManagerImpl::init: [Initializing oracle.dss.persistence.storagemanager.bi.BIFileStorageManagerImpl, env:{global_environment={locale_helper=oracle.dss.persistence.LocaleHelper@22e15b, persistence_errorhandler=oracle.dss.util.DefaultErrorHandler@792a41}, Connection Status=2, java.naming.security.principal=Local User, java.naming.factory.url.pkgs=weblogic.jndi.factories, securityDriverManager=oracle.dss.appmodule.server.DSSApplicationModuleImpl@4532ba, path=bidefs/BIBeanPrjBIDesigner2/, am=oracle.dss.appmodule.server.DSSApplicationModuleImpl@4532ba, Driver Type=PERSISTENCE, java.naming.factory.initial=oracle.dss.persistence.persistencemanager.server.InitPersistenceManagerFactory, mm=true, object_name=Connection_1, SET_ON_MID_TIER=NO, sm_driver=oracle.dss.persistence.storagemanager.bi.BIFileStorageManagerImpl}
    Fri Mar 07 10:23:30 CST 2003 TRACE: In oracle.dss.connection.server.ConnectionImpl::disconnect: -ConnectionBean-Server: is going to disconnect
    Fri Mar 07 10:23:30 CST 2003 TRACE: In oracle.dss.connection.server.drivers.mdm._92.MDMConnectionDriverImpl_92::connect: -ConnectionBean-MDMDriver is disconnected from OLAPI
    <2003/3/7 上午10時23分30秒> <Error> <HTTP> <[WebAppServletContext(8339407,Defaul
    tWebApp,/DefaultWebApp)] null
    oracle.dss.persistence.persistencemanager.common.PersistenceManagerRuntimeException: BIB-14122: The specified StorageManager could not be created.
    oracle.dss.bicontext.BICannotProceedException: BIB-14820 根路徑不存在。
    at oracle.dss.persistence.persistencemanager.server.PersistenceManagerSupport.loadStorageAdapterFromXML(PersistenceManagerSupport.java:442)
    at oracle.dss.persistence.persistencemanager.server.PersistenceManagerSupport.<init>(PersistenceManagerSupport.java:145)
    at oracle.dss.persistence.persistencemanager.server.PersistenceManagerImpl.<init>(PersistenceManagerImpl.java:99)
    at oracle.dss.persistence.persistencemanager.server.InitPersistenceManagerFactory.getInitialContext(InitPersistenceManagerFactory.java:29)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:665)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
    at javax.naming.InitialContext.init(InitialContext.java:222)
    at javax.naming.InitialContext.<init>(InitialContext.java:198)
    at javax.naming.directory.InitialDirContext.<init>(InitialDirContext.java:83)
    at oracle.dss.persistence.persistencemanager.server.InitialPersistenceManager.<init>(InitialPersistenceManager.java:103)
    at oracle.dss.connection.server.drivers.persistence.PersistenceConnectionDriverImpl.connect(PersistenceConnectionDriverImpl.java:147)
    at oracle.dss.connection.server.ConnectionImpl.connect(ConnectionImpl.java:279)
    at oracle.dss.connection.client.Connection.connect(Connection.java:401)
    at oracle.dss.connection.client.Connection.connect(Connection.java:320)
    at oracle.dss.metadataManager.client.MetadataManager.setConnectionObjects(MetadataManager.java:3985)
    at oracle.dss.metadataManager.client.MetadataManager.attach(MetadataManager.java:852)
    at oracle.dss.metadataManager.client.MetadataManager.attach(MetadataManager.java:792)
    at oracle.dss.datautil.client.XMLManagerFactory.createQueryManager(XMLManagerFactory.java:187)
    at oracle.dss.datautil.client.ManagerFactoryImpl.lookupQueryManager(ManagerFactoryImpl.java:176)
    at oracle.dss.datautil.client.ManagerFactoryImpl.lookupMetadataManager(ManagerFactoryImpl.java:219)
    at oracle.dss.datautil.client.ManagerFactoryImpl.lookupManager(ManagerFactoryImpl.java:128)
    at biServlet.LoginOperation.initializeMetadataManager(LoginOperation.java:425)
    at biServlet.LoginOperation.run(LoginOperation.java:166)
    at biServlet.DefaultApplicationImpl.login(DefaultApplicationImpl.java:473)
    at biServlet.AbstractControllerImpl.preRequestProcess(AbstractControllerImpl.java:1396)
    at my.BIController1.preRequestProcess(BIController1.java:358)
    at biServlet.AbstractControllerImpl.processRequest(AbstractControllerImpl.java:1498)
    at biServlet.AbstractControllerImpl.doGet(AbstractControllerImpl.java:262)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:263)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2390)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1959)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    What can I do with the following exception?
    D:\bea_home\user_projects\mydomain>echo off
    CLASSPATH=D:\bea_home\jdk131_03\lib\tools.jar;D:\bea_home\weblogic700\server\lib
    \weblogic_sp.jar;D:\bea_home\weblogic700\server\lib\weblogic.jar;d:\oraids\jlib\
    bigraphbean.jar;d:\oraids\jlib\LW_PfjBean.jar;d:\oraids\jlib\bigraphbean-nls.zip
    ;D:\jdev\jlib\bigraphbean.jar;D:\jdev\jlib\LW_PfjBean.jar;D:\jdev\jlib\bigraphbe
    an-nls.zip;D:\jdev\jdev\lib\ext\weblogic.jar
    PATH=.;D:\bea_home\weblogic700\server\bin;D:\bea_home\jdk131_03\bin;d:\oraids\bi
    n;d:\oraids\jdk\jre\bin;d:\oraids\jdk\jre\bin\classic;d:\oraids\jdk\jre\bin\clas
    sic;d:\oraids\jlib;d:\oraids\bin;D:\oracle\ora92\bin;C:\Program Files\Oracle\jre
    \1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINNT\system32;C:\WINNT;C:\W
    INNT\System32\Wbem;d:\notes\;D:\ULTRAE~1
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://[hostname]:[port]/console *
    D:\bea_home\user_projects\mydomain>"D:\bea_home\jdk131_03\bin\java" -server -Xms
    32m -Xmx200m -Dweblogic.security.SSL.trustedCAKeyStore=D:\bea_home\weblogic700\s
    erver\lib\cacerts -Djava.ext.dirs=D:\bea_home\jdk131_03\jre\lib\ext;D:\bea_home\
    weblogic700\samples\server\jdbc -Dweblogic.Name=myserver -Dbea.home="D:\bea_home
    " -Dweblogic.management.username= -Dweblogic.management.password= -Dweblogic.Pro
    ductionModeEnabled= -Djava.security.policy="D:\bea_home\weblogic700\server\lib\w
    eblogic.policy" weblogic.Server
    <2003-9-11 下午06时34分46秒> <Info> <Security> <090065> <Getting boot identity f
    rom user.>
    Enter username to boot WebLogic server:admin
    Enter password to boot WebLogic server:
    Starting WebLogic Server...
    <2003-9-11 下午06时34分58秒> <Notice> <Management> <140005> <Loading configurati
    on D:\bea_home\user_projects\mydomain\.\config.xml>
    <2003-9-11 下午06时35分06秒> <Notice> <Security> <090082> <Security initializing
    using realm myrealm.>
    <2003-9-11 下午06时35分06秒> <Notice> <WebLogicServer> <000327> <Starting WebLog
    ic Admin Server "myserver" for domain "mydomain">
    <2003-9-11 下午06时35分25秒> <Notice> <Management> <141052> <Application Poller
    started for development server.>
    <2003-9-11 下午06时35分28秒> <Notice> <WebLogicServer> <000354> <Thread "SSLList
    enThread.Default" listening on port 7002>
    <2003-9-11 下午06时35分29秒> <Notice> <WebLogicServer> <000354> <Thread "ListenT
    hread.Default" listening on port 7001>
    <2003-9-11 下午06时35分29秒> <Notice> <Management> <141030> <Starting discovery
    of Managed Server... This feature is on by default, you may turn this off by pas
    sing -Dweblogic.management.discover=false>
    <2003-9-11 下午06时35分30秒> <Notice> <WebLogicServer> <000331> <Started WebLogi
    c Admin Server "myserver" for domain "mydomain" running in Development Mode>
    <2003-9-11 下午06时35分30秒> <Notice> <WebLogicServer> <000365> <Server state ch
    anged to RUNNING>
    <2003-9-11 下午06时35分30秒> <Notice> <WebLogicServer> <000360> <Server started
    in RUNNING mode>
    Thu Sep 11 18:38:03 CST 2003 TRACE: In oracle.dss.connection.server.ConnectionIm
    pl::connect: -ConnectionBean-Server: is going to connect - (DriverType=MDM)
    Thu Sep 11 18:38:04 CST 2003 TRACE: In oracle.dss.connection.server.ConnectionIm
    pl::connect: -ConnectionBean-MDMDriver: Connected Successfully: Time=1342ms
    Thu Sep 11 18:38:04 CST 2003 TRACE: In oracle.dss.connection.server.ConnectionIm
    pl::connect: -ConnectionBean-Server: is going to connect - (DriverType=PERSISTEN
    CE)
    Thu Sep 11 18:38:04 CST 2003 TRACE: In oracle.dss.connection.server.drivers.pers
    istence.PersistenceConnectionDriverImpl::connect: -ConnectionBean-PersistenceDri
    ver is going to connect
    Thu Sep 11 18:38:04 CST 2003 TRACE: In oracle.dss.connection.server.drivers.pers
    istence.PersistenceConnectionDriverImpl::connect: (ServiceName=null; Prinicipal
    =Local User; Username=null)
    Thu Sep 11 18:38:04 CST 2003 TRACE: In oracle.dss.persistence.storagemanager.bi.
    BIFileStorageManagerImpl::init: [Initializing oracle.dss.persistence.storagemana
    ger.bi.BIFileStorageManagerImpl, env:{global_environment={locale_helper=oracle.d
    ss.persistence.LocaleHelper@6351a2, persistence_errorhandler=oracle.dss.util.Def
    aultErrorHandler@496f0}, Connection Status=2, java.naming.security.principal=Loc
    al User, java.naming.factory.url.pkgs=weblogic.jndi.factories, securityDriverMan
    ager=oracle.dss.appmodule.server.DSSApplicationModuleImpl@517ead, path=bidefs/we
    blogicBIDesigner1/, am=oracle.dss.appmodule.server.DSSApplicationModuleImpl@517e
    ad, Driver Type=PERSISTENCE, java.naming.factory.initial=oracle.dss.persistence.
    persistencemanager.server.InitPersistenceManagerFactory, mm=true, object_name=Co
    nnection_1, SET_ON_MID_TIER=NO, sm_driver=oracle.dss.persistence.storagemanager.
    bi.BIFileStorageManagerImpl}
    <2003-9-11 下午06时38分04秒> <Error> <HTTP> <101017> <[ServletContext(id=4561108
    ,name=webapp.war,context-path=/weblogic_app)] Root cause of ServletException
    java.lang.NoSuchMethodError
    at oracle.dss.thin.beans.CaboErrorHandler.error(CaboErrorHandler.java:10
    2)
    at oracle.dss.addins.jspTags.PresentationTag.doStartTag(PresentationTag.
    java:191)
    at jsp_servlet.__untitled1._jspService(__untitled1.java:140)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
    (ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:445)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >
    Thu Sep 11 19:08:26 CST 2003 TRACE: In oracle.dss.connection.server.ConnectionIm
    pl::connect: -ConnectionBean-Server: is going to connect - (DriverType=PERSISTEN
    CE)
    Thu Sep 11 19:08:26 CST 2003 TRACE: In oracle.dss.connection.server.drivers.pers
    istence.PersistenceConnectionDriverImpl::connect: -ConnectionBean-PersistenceDri
    ver is going to connect
    Thu Sep 11 19:08:26 CST 2003 TRACE: In oracle.dss.connection.server.drivers.pers
    istence.PersistenceConnectionDriverImpl::connect: (ServiceName=null; Prinicipal
    =Local User; Username=null)
    Thu Sep 11 19:08:26 CST 2003 TRACE: In oracle.dss.persistence.storagemanager.bi.
    BIFileStorageManagerImpl::init: [Initializing oracle.dss.persistence.storagemana
    ger.bi.BIFileStorageManagerImpl, env:{global_environment={locale_helper=oracle.d
    ss.persistence.LocaleHelper@72d194, persistence_errorhandler=oracle.dss.util.Def
    aultErrorHandler@496f0}, Connection Status=2, java.naming.security.principal=Loc
    al User, java.naming.factory.url.pkgs=weblogic.jndi.factories, securityDriverMan
    ager=oracle.dss.appmodule.server.DSSApplicationModuleImpl@517ead, path=bidefs/we
    blogicBIDesigner1/, am=oracle.dss.appmodule.server.DSSApplicationModuleImpl@517e
    ad, Driver Type=PERSISTENCE, java.naming.factory.initial=oracle.dss.persistence.
    persistencemanager.server.InitPersistenceManagerFactory, mm=true, object_name=Co
    nnection_1, SET_ON_MID_TIER=NO, sm_driver=oracle.dss.persistence.storagemanager.
    bi.BIFileStorageManagerImpl}
    <2003-9-11 下午07时08分26秒> <Error> <HTTP Session> <100025> <Unexpected error i
    n HTTP session timeout callback
    java.lang.NoSuchMethodError
    at oracle.dss.thin.beans.CaboErrorHandler.error(CaboErrorHandler.java:10
    2)
    at oracle.dss.addins.thin.common.BaseThinSession.cleanup(BaseThinSession
    .java:307)
    at oracle.dss.addins.thin.common.BaseThinSession.valueUnbound(BaseThinSe
    ssion.java:159)
    at weblogic.servlet.internal.session.SessionData.removeAttribute(Session
    Data.java:588)
    at weblogic.servlet.internal.session.SessionData.removeAttribute(Session
    Data.java:552)
    at weblogic.servlet.internal.session.SessionData.remove(SessionData.java
    :747)
    at weblogic.servlet.internal.session.MemorySessionContext.invalidateSess
    ion(MemorySessionContext.java:51)
    at weblogic.servlet.internal.session.SessionContext$SessionInvalidator$I
    nvalidationAction.run(SessionContext.java:523)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:744)
    at weblogic.servlet.internal.session.SessionContext$SessionInvalidator.c
    leanupExpiredSessions(SessionContext.java:444)
    at weblogic.servlet.internal.session.SessionContext.deleteInvalidSession
    s(SessionContext.java:81)
    at weblogic.servlet.internal.session.SessionContext$SessionInvalidator.t
    rigger(SessionContext.java:392)
    at weblogic.time.common.internal.ScheduledTrigger.run(ScheduledTrigger.j
    ava:181)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:744)
    at weblogic.time.common.internal.ScheduledTrigger.executeLocally(Schedul
    edTrigger.java:167)
    at weblogic.time.common.internal.ScheduledTrigger.execute(ScheduledTrigg
    er.java:161)
    at weblogic.time.server.ScheduledTrigger.execute(ScheduledTrigger.java:3
    8)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >

  • Exception when starting emanager

    Hi All,
    When trying to go to the "deployer" page in the emanager I'm getting an error of a connect timeout.
    During the startup of emanager (startserver.bat) I'm getting the following exception:
    2008-02-26 22:37:16,218 INFO com.stc.egate.em.services.bridge51x.server.ma.ServerProxy [main] - HTTP service started with host: 192.168.2.17 port=15003
    2008-02-26 22:37:16,218 ERROR com.stc.egate.em.services.bridge51x.server.ma.ServerProxy [main] - Unable to start HTTP Adaptor
    java.net.BindException: Cannot assign requested address: JVM_Bind
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
    at java.net.ServerSocket.bind(ServerSocket.java:319)
    at java.net.ServerSocket.<init>(ServerSocket.java:185)
    at mx4j.tools.adaptor.PlainAdaptorServerSocketFactory.createServerSocket(PlainAdaptorServerSocketFactory.java:24)
    at com.stc.egate.em.services.bridge51x.server.connectors.StcHttpAdaptor.createServerSocket(StcHttpAdaptor.java:681)
    at com.stc.egate.em.services.bridge51x.server.connectors.StcHttpAdaptor.start(StcHttpAdaptor.java:487)
    at com.stc.egate.em.services.bridge51x.server.ma.ServerProxy.startHTTPService(ServerProxy.java:202)
    at com.stc.egate.em.services.bridge51x.server.ma.ServerProxy.startServices(ServerProxy.java:484)
    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:585)
    at com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:414)
    at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
    at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
    at com.stc.egate.em.services.bridge51x.server.ma.ManagementAgent.start(ManagementAgent.java:147)
    at com.stc.egate.em.services.bridge51x.ApplicationPathResolverListener51x.contextInitialized(ApplicationPathResolverListener51x.java:33)
    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3805)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4321)
    at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
    at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
    at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:277)
    at org.apache.catalina.core.StandardHost.install(StandardHost.java:832)
    at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:613)
    at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:431)
    at org.apache.catalina.startup.HostConfig.start(HostConfig.java:964)
    at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:349)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:789)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478)
    at org.apache.catalina.core.StandardService.start(StandardService.java:476)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:2298)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
    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:585)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:284)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:422)
    java.net.BindException: Cannot assign requested address: JVM_Bind
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
    at java.net.ServerSocket.bind(ServerSocket.java:319)
    at java.net.ServerSocket.<init>(ServerSocket.java:185)
    at mx4j.tools.adaptor.PlainAdaptorServerSocketFactory.createServerSocket(PlainAdaptorServerSocketFactory.java:24)
    at com.stc.egate.em.services.bridge51x.server.connectors.StcHttpAdaptor.createServerSocket(StcHttpAdaptor.java:681)
    at com.stc.egate.em.services.bridge51x.server.connectors.StcHttpAdaptor.start(StcHttpAdaptor.java:487)
    at com.stc.egate.em.services.bridge51x.server.ma.ServerProxy.startHTTPService(ServerProxy.java:202)
    at com.stc.egate.em.services.bridge51x.server.ma.ServerProxy.startServices(ServerProxy.java:484)
    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:585)
    at com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:414)
    at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
    at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
    at com.stc.egate.em.services.bridge51x.server.ma.ManagementAgent.start(ManagementAgent.java:147)
    at com.stc.egate.em.services.bridge51x.ApplicationPathResolverListener51x.contextInitialized(ApplicationPathResolverListener51x.java:33)
    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3805)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4321)
    at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
    at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
    at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:277)
    at org.apache.catalina.core.StandardHost.install(StandardHost.java:832)
    at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:613)
    at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:431)
    at org.apache.catalina.startup.HostConfig.start(HostConfig.java:964)
    at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:349)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:789)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478)
    at org.apache.catalina.core.StandardService.start(StandardService.java:476)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:2298)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
    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:585)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:284)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:422)
    2008-02-26 22:37:17,359 INFO com.stc.egate.em.services.bridge51x.server.ma.ServerProxy [main] - Timer service started.
    java.io.IOException: Cannot bind to URL [rmi]: javax.naming.ServiceUnavailableException [Root exception is java.rmi.ConnectException: Connection refused to host: 192.168.
    Any ideas what could be the problem?
    Thanks.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Thanks for the reply.
    I wasn't able to find anything using that port.
    Anyway I re-installed the eManager and now it start fine (still using the same port so it doesn't look like that was the problem).
    I think that the problem has something to do with the ip address it was trying to use (192.168.2.17), that address doesn't exist in my network. After the re-installation it is no longer trying to use that address but my machine name.
    Does the eManager record the ip address or the machine name during the installation process? Is it configurable? I couldn't find any such configuration.

  • JAXM error message

    Hi All,
    I am getting the following error message when I tried to communicate with the JAXM Receiver. I have placed the following jars files in a class path "jaxm-api.jar", "saaj-api.jar", "saaj-ri.jar".
    I am unable to find com.sun.xml.messaging.client.p2p.HttpSOAPConnectionFactory. But I found the same Class file(HttpSOAPConnectionFactory) in different package in the "saaj-ri.jar". The package is com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnectionFactory. Any one, could you please help in installing the compatible jar files to run the JAXM Example given in the JAXM Specification. I would apprecite.
    ERROR:
    javax.xml.soap.SOAPException: Unable to create SOAP connection factory: Provider com.sun.xml.messaging.client.p2p.HttpSOAPConnectionFactory not found
    Sending message to URL:http://10.200.13.179:7001/JAXMReciever
    java.lang.NullPointerException
    at JAXMClient.doGet(JAXMClient.java:54)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
    (ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)

    you can find the class in jaxm-client.jar

  • How to add more than one server in emanager

    Hi All,
    In Java CAPS6, If I add more than one domain that is GlassFish server, how can I add these server in emanager. I am able to add only one server in eManager.
    Please let me know if any one knows.
    Thanks & Regards,
    B

    Hi,
    I have the same problem. I succeeded in adding the default domain (on the default port 4848) but when I try to add another domain on a different admin port, the connection cannot be established. Here is the manager log :
    2009-02-18 10:41:23,867 ERROR [http-15000-Processor24] com.stc.emanager.deployment.actions.AddNewServerAction - java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (404Not Found due to Connection Failed. Please check the following: <br>   &nbsp - Server Type is correct. <br>   &nbsp - Server is running. <br>   &nbsp - Hostname and Port number(s) are correct. <br>   &nbsp - Server SSL configuration.
    The manager and appserver are on the same server.
    As someone resolved the problem ?

  • Error! need help

    javax.servlet.ServletException: org/apache/axis/Message
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubIm
    pl.java:912)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStub
    Impl.java:833)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
    mpl.java:773)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppS
    ervletContext.java:2782)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebApp
    ServletContext.java:2727)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAp
    pServletContext.java:2700)
    at weblogic.servlet.internal.HttpServer.preloadResources(HttpServer.java
    :563)
    at weblogic.servlet.internal.WebService.preloadResources(WebService.java
    :476)
    at weblogic.t3.srvr.ServletInitRunner$1.run(ServletInitRunner.java:50)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:780)
    at weblogic.t3.srvr.ServletInitRunner.run(ServletInitRunner.java:46)
    at java.lang.Thread.run(Thread.java:479)\
    I am getting this error when I try to deploy a war file.
    Any idea why this error is thrown? Thanks in advance

    Could it be a missing jar file here ?
    - Anders M.

  • Repository installtion error inJCAPS 51

    I am getting "Error while expanding eManager\eManager.war" error while trying to install repository.
    The ports are available. Firewalls are cleared.
    Dont know how to debug.
    It will be great if anybody provide info to debug the error.

    The file eManager.war is most likely corrupted. I would try removing it from the repository and reinstalling it from the .sar file.

Maybe you are looking for

  • Purchased music not playing in ipod?!

    I'm having a couple of problems with iTunes in general, but for now I will try to deal with the purchased music problem I'm having. I've bought roughly 33 songs from the music store and after a computer "revamping", none of them are showing up in iTu

  • Configuratio help required

    Hi I need Help in configuration.. for the Below scenario..   1 we are getting data from Proxy in MsgA    2. We are mapping the MsgA to MsgB(intermediate Structure) in SAP-PI   3. Then This would goes to BPM . (Final Msg type is different i have the d

  • Application Table

    hi, i need to know , when a new application is created in apex, in which table the information is stored i.e APP_ID,APP_NAME....all this information is stored in some table. anybody know abt this table?

  • Error trying to Export Components

    Get the following error message in the "Components to Export" section: report error: ORA-01722: invalid number I exported stuff just fine yesterday, but wanted to export something today.... Apex 4.1.1.00.23 Any ideas?

  • Hangs with Master only running

    Have been 4.7.25 with replication capabilities. Starting Master only running and no slaves hangs after a while. The db put() hangs. On attaching debugger the thread is waiting on mutex lock. Tried to see who has locked the mutex and another thread is