Missing PofSerializer configuration

Any ideas what I may have missed when converting to pof?
2011-07-18 18:23:23.006/12.178 Oracle Coherence GE 3.7.0.2 <Error> (thread=main, member=1): Error while starting service "DistributedQuotesCacheService": (Wrapped) (Wrapped: error creating class "com.tangosol.io.pof.ConfigurablePofContext") java.lang.IllegalStateException: Missing PofSerializer configuration (Config=z:\coherence\pof-config.xml, Type-Id=10000, Class-Name=dj_quotes.DJQuote)
        at com.tangosol.coherence.component.util.Daemon.start(Daemon.CDB:52)
        at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.start(Service.CDB:7)
        at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.start(Grid.CDB:6)
        at com.tangosol.coherence.component.util.SafeService.startService(SafeService.CDB:39)
        at com.tangosol.coherence.component.util.safeService.SafeCacheService.startService(SafeCacheService.CDB:5)
        at com.tangosol.coherence.component.util.SafeService.ensureRunningService(SafeService.CDB:27)
        at com.tangosol.coherence.component.util.SafeService.start(SafeService.CDB:14)
        at com.tangosol.net.DefaultConfigurableCacheFactory.ensureServiceInternal(DefaultConfigurableCacheFactory.java:1102)
        at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(DefaultConfigurableCacheFactory.java:934)
        at com.tangosol.net.DefaultCacheServer.startServices(DefaultCacheServer.java:81)
        at com.tangosol.net.DefaultCacheServer.intialStartServices(DefaultCacheServer.java:250)
        at com.tangosol.net.DefaultCacheServer.startAndMonitor(DefaultCacheServer.java:55)
        at com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:197)
Caused by: (Wrapped: error creating class "com.tangosol.io.pof.ConfigurablePofContext") java.lang.IllegalStateException: Missing PofSerializer configuration (Config=z:\coherence\pof-config.xml, Type-Id=10000, Class-Name=dj_quotes.DJQuote)
        at com.tangosol.io.ConfigurableSerializerFactory.createSerializer(ConfigurableSerializerFactory.java:46)
        at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.instantiateSerializer(Service.CDB:1)
        at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:32)
        at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:4)
        at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onEnter(Grid.CDB:26)
        at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.PartitionedService.onEnter(PartitionedService.CDB:19)
        at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:14)
        at java.lang.Thread.run(Thread.java:662)
Caused by: java.lang.IllegalStateException: Missing PofSerializer configuration (Config=z:\coherence\pof-config.xml, Type-Id=10000, Class-Name=dj_quotes.DJQuote)
        at com.tangosol.io.pof.ConfigurablePofContext.report(ConfigurablePofContext.java:1254)
        at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(ConfigurablePofContext.java:989)
        at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePofContext.java:775)
        at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(ConfigurablePofContext.java:319)
        at com.tangosol.io.ConfigurableSerializerFactory.createSerializer(ConfigurableSerializerFactory.java:42)
        ... 7 moreThanks,
Andrew

<!DOCTYPE pof-config SYSTEM "pof-config.dtd">
<pof-config>
  <user-type-list>
    <include>coherence-pof-config.xml</include>
    <user-type>
      <type-id>10000</type-id>
      <class-name>dj_quotes.DJQuote</class-name>
    </user-type>
  </user-type-list>
</pof-config>
package dj_quotes;
import com.tangosol.io.pof.PofReader;
import com.tangosol.io.pof.PofWriter;
import com.tangosol.io.pof.PortableObject;
import java.io.IOException;
public class DJQuote implements PortableObject {
    public char type;
    public String symbol;
    public char exch; // bidSource for NBBO
    public float bid   = 0;
    public float ask   = 0;
    public int bidSize = 0;
    public int askSize = 0;
    public int hour    = 0;
    public int minute  = 0;
    public int second  = 0;
    public float last  = 0;
    public long volume = 0;
    public char fastMarket; //askSource for NBBO
    public long sequence = 0;
    public int lastTradeSize = 0;
    @Override
    public void readExternal(PofReader reader) throws IOException {
        type = reader.readChar(0);
        symbol = reader.readString(1);
        exch = reader.readChar(2);
        bid = reader.readFloat(3);
        ask = reader.readFloat(4);
        bidSize = reader.readInt(5);
        askSize = reader.readInt(6);
        hour = reader.readInt(7);
        minute = reader.readInt(8);
        second = reader.readInt(9);
        last = reader.readFloat(10);
        volume = reader.readLong(11);
        fastMarket = reader.readChar(12); //askSource for NBBO
        sequence = reader.readLong(13);
        lastTradeSize = reader.readInt(14);
    @Override
    public void writeExternal(PofWriter writer) throws IOException {
        writer.writeChar(0,type);
        writer.writeString(1,symbol);
        writer.writeChar(2,exch);
        writer.writeFloat(3,bid);
        writer.writeFloat(4,ask);
        writer.writeInt(5,bidSize);
        writer.writeInt(6,askSize);
        writer.writeInt(7,hour);
        writer.writeInt(8,minute);
        writer.writeInt(9,second);
        writer.writeFloat(10,last);
        writer.writeLong(11,volume);
        writer.writeChar(12,fastMarket);
        writer.writeLong(13,sequence);
        writer.writeInt(14,lastTradeSize);
    public String toString() {
        return "type='" + type + "'\tsymbol='" + symbol + "'\texch='" + exch + "'\tbid=" +
                bid + "\task=" + ask +
                "\tsize=" + bidSize + "x" + askSize + "\tlast=" + lastTradeSize + " @ " + last +
                "\tvolume=" + volume + "\t" +
                hour + ":" + (minute<10?"0":"") + minute + ":" + (second<10?"0":"") + second + "\tsequence=" + sequence;
    public boolean equals(Object object) {
        if (this == object) {
            return true;
        if ( !(object instanceof DJQuote) ) {
            return false;
        final DJQuote other = (DJQuote)object;
        if (!(symbol == null ? other.symbol == null : symbol.equals(other.symbol))) {
            return false;
        if (exch != other.exch) {
            return false;
        return true;
    public int hashCode() {
        final int PRIME = 37;
        int result = 1;
        result = PRIME * result + ((symbol == null) ? 0 : symbol.hashCode());
        result = PRIME * result + (int)exch;
        return result;
    public Object clone() throws CloneNotSupportedException {
        DJQuote q = new DJQuote();
        q.type=this.type;
        q.symbol=this.symbol;
        q.exch=this.exch;
        q.bid=this.bid;
        q.ask = this.ask;
        q.bidSize = this.bidSize;
        q.askSize = this.askSize;
        q.hour = this.hour;
        q.minute = this.minute;
        q.second = this.second;
        q.last = this.last;
        q.volume = this.volume;
        q.fastMarket = this.fastMarket;
        q.sequence = this.sequence;
        q.lastTradeSize = this.lastTradeSize;
        return q;
<?xml version="1.0"?>
<!DOCTYPE cache-config SYSTEM "cache-config.dtd">
<cache-config>
     <!-- ***********  SCHEME MAPPINGS  ***********  -->
     <caching-scheme-mapping>
          <cache-mapping>
               <cache-name>quotes.*</cache-name>
               <scheme-name>quotes-scheme</scheme-name>
          </cache-mapping>   
     </caching-scheme-mapping>
     <!-- ******************************** -->
     <caching-schemes>
          <distributed-scheme>
               <scheme-name>quotes-scheme</scheme-name>
               <service-name>DistributedQuotesCacheService</service-name>
               <serializer>
                    <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                     <init-params>
                                 <init-param>
                                 <param-type>string</param-type>
                                 <param-value system-property="pof.config">z:\coherence\pof-config.xml</param-value>
                                 </init-param>
                                 </init-params>
               </serializer>
               <backing-map-scheme>
                    <local-scheme/>
               </backing-map-scheme>
               <autostart>true</autostart>
          </distributed-scheme>
</caching-schemes>
</cache-config>Thanks...
Andrew

Similar Messages

  • Incorrect coherence-rest-pof-config.xml in coherence-rest.jar (Missing PofSerializer configuration)?

    I'm running Coherence 3.7.1.0.0 with REST enabled as per the instruction. I have included coherence-rest-pof-config.xml in my pof config like so:
    <include>coherence-pof-config.xml</include>
    <include>coherence-rest-pof-config.xml</include>
    When I start Coherence, I get the following error:
    Caused by: (Wrapped: error creating class "com.tangosol.io.pof.ConfigurablePofContext") java.lang.IllegalStateException: Missing PofSerializer configuration (Config=custom-types-pof-config.xml, Type-Id=801, Class-Name=com.tangosol.coherence.rest.internal.Get)
    The config in coherence-rest-pof-config.xml for com.tangosol.coherence.rest.internal.Get is as follows:
    <user-type>
          <type-id>801</type-id>
          <class-name>com.tangosol.coherence.rest.internal.Get</class-name>
        </user-type>
    I had a quick look in the coherence-rest.jar, where com.tangosol.coherence.rest.internal.Get is defined. com.tangosol.coherence.rest.internal.Get implements InvocableMap.EntryProcessor, but not PortableObject.
    Am I missing something? As far as I can see, InvocableMap.EntryProcessor does not implement PortableObject either.
    Is there any way to fix this?
    Thanks

    The jar file coherence-common-1.7.0.16988.jar would have been part of the Coherence Incubator product, and isn't part of the core Coherence product itself.
    You'd probably need to refer to the Coherence Incubator site as there are probably significant changes between the version you are using in 3.5.3 and with what is meant for 12.1.2.

  • The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.

    We are in the process of removing a child domain from the forest and are down to two DCs. These are both Server 2008r2 sp1 servers, one physical and virtual (PDC). When I try to remove a DC (not the PDC emulator) I get the following error:
    The operation failed because:
    Active Directory Domain Services could not transfer the remaining data in directory partition DC=DomainDnsZones,DC=mydomain,DC=local to
    Active Directory Domain Controller \\V-Svr03.mydomain.local.
    The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles."
    I have checked replication with repadmin /showrepl and all connections were successful. The dcdiag /test:kccEvent test on all servers passed.
    Most DCdiag tests are successful. The only failure is on NCSecDesc when running dcdiag /test:NCSecDesc
       Testing server: Default-First-Site\DC1-DEV-OFC
          Starting test: NCSecDesc
             Error NT AUTHORITY\ENTERPRISE DOMAIN CONTROLLERS doesn't have
                Replicating Directory Changes In Filtered Set
             access rights for the naming context:
             DC=ForestDnsZones,DC=hookemup,DC=local
             ......................... DC1-DEV-OFC failed test NCSecDesc
    In researching this I find "If you do not plan to add an RODC to the forest, you can disregard this error."
    We have not successfully run ADprep /rodcPrep nor do we plan on having any Read-Only DCs, so I think we can ignor this error. We did try running ADprep /rodcPrep but got an LDAP error which I can duplicate if this is important.
    Schema and Naming FSMOs are on a DC higher in the forest. RID, PDC, and Infrastructure FSMOs for the child domain are on the Virtual server (PDC).
    Any guidance on where to go from here would be greatly appreciated as I have no more hair on my head to pull.

    Ok... I ran repadmin /showreps /v again and it shows no errors
    C:\>repadmin /showreps /v
    Default-First-Site\DC1-DEV-OFC
    DSA Options: IS_GC
    Site Options: (none)
    DSA object GUID: b294c59f-8b46-4133-89c5-0f30bfd49607
    DSA invocationID: 1054285d-cffe-42b4-8074-e2d44adbb151
    ==== INBOUND NEIGHBORS ======================================
    CN=Configuration,DC=mydomain,DC=local
        Default-First-Site\HESTIA via RPC
            DSA object GUID: b464fde9-29d7-4490-9582-fe9270050d50
            Address: b464fde9-29d7-4490-9582-fe9270050d50._msdcs.mydomain.local
            DSA invocationID: afea3845-9fa8-40a6-a477-84348a206348
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 16381490/OU, 16381490/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 114817/OU, 114817/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\V-SVR01 via RPC
            DSA object GUID: e2f794eb-9658-4bad-b695-3d8c08f46371
            Address: e2f794eb-9658-4bad-b695-3d8c08f46371._msdcs.mydomain.local
            DSA invocationID: 07bb0fe9-bca9-46d1-92ce-308d36da478d
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 66047/OU, 66047/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\ATHENA via RPC
            DSA object GUID: cb00a5b0-6dea-473c-bb42-19356dd9ed36
            Address: cb00a5b0-6dea-473c-bb42-19356dd9ed36._msdcs.mydomain.local
            DSA invocationID: 57313a9c-46a2-4b94-87cc-b3f91d54faed
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 8098197/OU, 8098197/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
    CN=Schema,CN=Configuration,DC=mydomain,DC=local
        Default-First-Site\ATHENA via RPC
            DSA object GUID: cb00a5b0-6dea-473c-bb42-19356dd9ed36
            Address: cb00a5b0-6dea-473c-bb42-19356dd9ed36._msdcs.mydomain.local
            DSA invocationID: 57313a9c-46a2-4b94-87cc-b3f91d54faed
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 8097482/OU, 8097482/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\V-SVR01 via RPC
            DSA object GUID: e2f794eb-9658-4bad-b695-3d8c08f46371
            Address: e2f794eb-9658-4bad-b695-3d8c08f46371._msdcs.mydomain.local
            DSA invocationID: 07bb0fe9-bca9-46d1-92ce-308d36da478d
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 65239/OU, 65239/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 114149/OU, 114149/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\HESTIA via RPC
            DSA object GUID: b464fde9-29d7-4490-9582-fe9270050d50
            Address: b464fde9-29d7-4490-9582-fe9270050d50._msdcs.mydomain.local
            DSA invocationID: afea3845-9fa8-40a6-a477-84348a206348
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 16381373/OU, 16381373/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
    DC=ForestDnsZones,DC=mydomain,DC=local
        Default-First-Site\V-SVR01 via RPC
            DSA object GUID: e2f794eb-9658-4bad-b695-3d8c08f46371
            Address: e2f794eb-9658-4bad-b695-3d8c08f46371._msdcs.mydomain.local
            DSA invocationID: 07bb0fe9-bca9-46d1-92ce-308d36da478d
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 66295/OU, 66295/PU
            Last attempt @ 2012-10-29 13:57:48 was successful.
        Default-First-Site\ATHENA via RPC
            DSA object GUID: cb00a5b0-6dea-473c-bb42-19356dd9ed36
            Address: cb00a5b0-6dea-473c-bb42-19356dd9ed36._msdcs.mydomain.local
            DSA invocationID: 57313a9c-46a2-4b94-87cc-b3f91d54faed
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 8098367/OU, 8098367/PU
            Last attempt @ 2012-10-29 13:58:13 was successful.
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 115032/OU, 115032/PU
            Last attempt @ 2012-10-29 13:58:25 was successful.
        Default-First-Site\HESTIA via RPC
            DSA object GUID: b464fde9-29d7-4490-9582-fe9270050d50
            Address: b464fde9-29d7-4490-9582-fe9270050d50._msdcs.mydomain.local
            DSA invocationID: afea3845-9fa8-40a6-a477-84348a206348
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 16381653/OU, 16381653/PU
            Last attempt @ 2012-10-29 13:58:34 was successful.
    DC=mySUBdomain,DC=local
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 114871/OU, 114871/PU
            Last attempt @ 2012-10-29 13:54:02 was successful.
    DC=DomainDnsZones,DC=mySUBdomain,DC=local
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 114017/OU, 114017/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
    DC=mydomain,DC=local
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS
            USNs: 114017/OU, 114017/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\HESTIA via RPC
            DSA object GUID: b464fde9-29d7-4490-9582-fe9270050d50
            Address: b464fde9-29d7-4490-9582-fe9270050d50._msdcs.mydomain.local
            DSA invocationID: afea3845-9fa8-40a6-a477-84348a206348
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS
            USNs: 16381614/OU, 16381614/PU
            Last attempt @ 2012-10-29 13:56:52 was successful.
        Default-First-Site\V-SVR01 via RPC
            DSA object GUID: e2f794eb-9658-4bad-b695-3d8c08f46371
            Address: e2f794eb-9658-4bad-b695-3d8c08f46371._msdcs.mydomain.local
            DSA invocationID: 07bb0fe9-bca9-46d1-92ce-308d36da478d
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS
            USNs: 66325/OU, 66325/PU
            Last attempt @ 2012-10-29 13:58:34 was successful.
        Default-First-Site\ATHENA via RPC
            DSA object GUID: cb00a5b0-6dea-473c-bb42-19356dd9ed36
            Address: cb00a5b0-6dea-473c-bb42-19356dd9ed36._msdcs.mydomain.local
            DSA invocationID: 57313a9c-46a2-4b94-87cc-b3f91d54faed
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS
            USNs: 8098385/OU, 8098385/PU
            Last attempt @ 2012-10-29 13:58:38 was successful.

  • Password file may be missing or configured incorrectly.

    Hi All
    Platform:Windows Server 2003
    DB: 10.2.0.5.0/Single instance
    While creating the em repository I get the following:
    2010-aug-23 14:18:05 oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\DWDEV\emca_2010-08-23_02-17-46-PM.log.
    2010-aug-23 14:18:06 oracle.sysman.emcp.EMConfig perform
    ALLVARLIG: Password file may be missing or configured incorrectly.
    Refer to the log file at C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\DWDEV\emca_2010-08-23_02-17-46-PM.log for more details.
    Could not complete the configuration. Refer to the log file at C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\DWDEV\emca_2010-08-23_02-17-46
    -PM.log for more details.
    Its clear what the problem is, I have tried to recreate the password file but I still get the same error.
    my steps
    1. shutdown the instance
    2. orapwd file=orapwDWDEV password=mypassword entries=10
    3. startup
    One thing I wonder is the name of the passwordfile, I saw in one post that the name should be orapw<sid>, I noticed that he old name
    was PWD<SID>. What controls the name (apart from the sid) ?
    Any ideas how to handle this is appreciated.
    Thanks
    Magnus

    It seems that I have misspelled the name.
    It works now.
    Stiil interested what makes the filename, the pwfile is named PWD<SID>.ora.
    Can I name it what I like ?
    /Magnus

  • Bad or missing storyboard configuration file ( studio.ini)

    hi
    i have installed EP 6.0 SP09 sneak preview
    i would be interested in starting the VC applications
    i have already installed Adobe SVG viewer and Microsoft XML Praser
    but till i m getting en error "bad or missing storyboard configuration file ( studio.ini)"
    how should i resolve this error
    Regards
    JM

    Hello all Experts,
    We can use all the version of IE(Internet Explorer),
    I got the solution of this particular error, so please follow the this steps:-
    Install the "IE6SP2" in your system Registry..
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/vc/ie70
    After that you can use the any version of IE(Internet Explorer).
    and also please check the version of these softwares:
    SVGView
    MSXML Parser 4.0
    This will help you Definately.
    Thankyou
    Regards
    Kshitij D.

  • SEVERE: Password file may be missing or configured incorrectly.

    Platform: windows xp 32 bit
    Oracle upgrade from 10.2.0.2 to 10.2.0.5 (pATCHSET 4)(P820632)
    WHEN using the DBUA i get the following on C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\ftdcdb\emca_2010-08-19_02-37-49-PM.log
    The dabatase is working fine (is and up and running), , i can log in, run sql queries, but i wanted to upgrade EM too, but i am not able to figure this out, any one has suggestions? Basically the problem is on The Enterprise Manager part.
    SEVERE: Password file may be missing or configured incorrectly.
    Refer to the log file at C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\ftdcdb\emca_2010-08-19_02-37-49-PM.log for more details.
    Aug 19, 2010 2:38:14 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Password file may be missing or configured incorrectly.
         at oracle.sysman.emcp.ParamsManager.checkPwdFile(ParamsManager.java:2633)
         at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:690)
         at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:255)
         at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:176)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:170)
         at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:494)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1161)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:478)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:426)

    Recreate the password file..

  • Missing POF configuration

    Could you please let me know what is wrong with my code.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
         <caching-scheme-mapping>
              <cache-mapping>
                   <cache-name>cacheEquityMarket</cache-name>
                   <scheme-name>distributed-cache1</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>java.lang.String</param-name>
                             <param-value>{cache-name}</param-value>
                             <param-name>local-storage</param-name>
                             <param-value system-property="cacheEquityMarket.localstorage">true</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>cacheEquityCompany</cache-name>
                   <scheme-name>distributed-cache2</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>java.lang.String</param-name>
                             <param-value>{cache-name}</param-value>
                             <param-name>local-storage</param-name>
                             <param-value system-property="cacheEquityCompany.localstorage">true</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>cacheEquityHistorical</cache-name>
                   <scheme-name>distributed-cache3</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>java.lang.String</param-name>
                             <param-value>{cache-name}</param-value>
                             <param-name>local-storage</param-name>
                             <param-value system-property="cacheEquityHistorical.localstorage">true</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>cacheEquityIPO</cache-name>
                   <scheme-name>distributed-cache4</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>java.lang.String</param-name>
                             <param-value>{cache-name}</param-value>
                             <param-name>local-storage</param-name>
                             <param-value system-property="cacheEquityIPO.localstorage">true</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>cacheDerivativeMaster</cache-name>
                   <scheme-name>distributed-cache5</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>java.lang.String</param-name>
                             <param-value>{cache-name}</param-value>
                             <param-name>local-storage</param-name>
                             <param-value system-property="cacheDerivativeMaster.localstorage">true</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>cacheDerivativeMarket</cache-name>
                   <scheme-name>distributed-cache6</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>java.lang.String</param-name>
                             <param-value>{cache-name}</param-value>
                             <param-name>local-storage</param-name>
                             <param-value system-property="cacheDerivativeMarket.localstorage">true</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>cacheDerivativeHistorical</cache-name>
                   <scheme-name>distributed-cache7</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>java.lang.String</param-name>
                             <param-value>{cache-name}</param-value>
                             <param-name>local-storage</param-name>
                             <param-value system-property="cacheDerivativeHistorical.localstorage">true</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>cacheMFMaster</cache-name>
                   <scheme-name>distributed-cache8</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>java.lang.String</param-name>
                             <param-value>{cache-name}</param-value>
                             <param-name>local-storage</param-name>
                             <param-value system-property="cacheMFMaster.localstorage">true</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>cacheMFData</cache-name>
                   <scheme-name>distributed-cache9</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>java.lang.String</param-name>
                             <param-value>{cache-name}</param-value>
                             <param-name>local-storage</param-name>
                             <param-value system-property="cacheMFData.localstorage">true</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
         </caching-scheme-mapping>
         <caching-schemes>
              <distributed-scheme>
                   <serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                        <init-params>
                             <init-param>
                                  <param-type>String</param-type>
                                  <param-value>base-entity-pof-config.xml</param-value>
                             </init-param>
                        </init-params>
                   </serializer>
                   <scheme-name>distributed-cache1</scheme-name>
                   <service-name>DistributedEqMktService</service-name>
                   <!--
                        serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                        <init-params> <init-param> <param-type>java.lang.String</param-type>
                        <param-value>base-entity-pof-config.xml</param-value> </init-param>
                        </init-params> </serializer
                   -->
                   <internal-cache-scheme>
                        <local-scheme>
                             <high-units>1000</high-units>
                             <expiry-delay>1m</expiry-delay>
                        </local-scheme>
                   </internal-cache-scheme>
                   <backing-map-scheme>
                        <read-write-backing-map-scheme>
                             <internal-cache-scheme>
                                  <class-scheme>
                                       <class-name>com.tangosol.util.ObservableHashMap</class-name>
                                  </class-scheme>
                             </internal-cache-scheme>
                             <cachestore-scheme>
                                  <class-scheme>
                                       <class-name>com.fs.framework.cache.cachestores.EquityMarketCacheStore</class-name>
                                       <init-params>
                                            <init-param>
                                                 <param-type>java.lang.String</param-type>
                                                 <param-value>{cache-name}</param-value>
                                            </init-param>
                                       </init-params>
                                  </class-scheme>
                             </cachestore-scheme>
                             <refresh-ahead-factor>0.5</refresh-ahead-factor>
                             <read-only>false</read-only>
                             <expiry-delay>10s</expiry-delay>
                             <flush-delay>2s</flush-delay>
                        </read-write-backing-map-scheme>
                   </backing-map-scheme>
                   <autostart>true</autostart>
              </distributed-scheme>
              <distributed-scheme>
                   <serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                        <init-params>
                             <init-param>
                                  <param-type>String</param-type>
                                  <param-value>base-entity-pof-config.xml</param-value>
                             </init-param>
                        </init-params>
                   </serializer>
                   <scheme-name>distributed-cache2</scheme-name>
                   <service-name>DistributedEqCoyService</service-name>
                   <internal-cache-scheme>
                        <local-scheme>
                             <high-units>1000</high-units>
                             <expiry-delay>1m</expiry-delay>
                        </local-scheme>
                   </internal-cache-scheme>
                   <backing-map-scheme>
                        <read-write-backing-map-scheme>
                             <internal-cache-scheme>
                                  <class-scheme>
                                       <class-name>com.tangosol.util.ObservableHashMap</class-name>
                                  </class-scheme>
                             </internal-cache-scheme>
                             <cachestore-scheme>
                                  <class-scheme>
                                       <class-name>com..fs.framework.cache.cachestores.EquityCompanyCacheStore</class-name>
                                       <init-params>
                                            <init-param>
                                                 <param-type>java.lang.String</param-type>
                                                 <param-value>{cache-name}</param-value>
                                            </init-param>
                                       </init-params>
                                  </class-scheme>
                             </cachestore-scheme>
                             <refresh-ahead-factor>0.5</refresh-ahead-factor>
                             <read-only>false</read-only>
                             <expiry-delay>10s</expiry-delay>
                             <flush-delay>2s</flush-delay>
                        </read-write-backing-map-scheme>
                   </backing-map-scheme>
                   <autostart>true</autostart>
              </distributed-scheme>
              <distributed-scheme>
                   <serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                        <init-params>
                             <init-param>
                                  <param-type>String</param-type>
                                  <param-value>base-entity-pof-config.xml</param-value>
                             </init-param>
                        </init-params>
                   </serializer>
                   <scheme-name>distributed-cache3</scheme-name>
                   <service-name>DistributedEqHistService</service-name>
                   <internal-cache-scheme>
                        <local-scheme>
                             <high-units>1000</high-units>
                             <expiry-delay>1m</expiry-delay>
                        </local-scheme>
                   </internal-cache-scheme>
                   <backing-map-scheme>
                        <read-write-backing-map-scheme>
                             <internal-cache-scheme>
                                  <class-scheme>
                                       <class-name>com.tangosol.util.ObservableHashMap</class-name>
                                  </class-scheme>
                             </internal-cache-scheme>
                             <cachestore-scheme>
                                  <class-scheme>
                                       <class-name>com..fs.framework.cache.cachestores.EquityHistoricalCacheStore</class-name>
                                       <init-params>
                                            <init-param>
                                                 <param-type>java.lang.String</param-type>
                                                 <param-value>{cache-name}</param-value>
                                            </init-param>
                                       </init-params>
                                  </class-scheme>
                             </cachestore-scheme>
                             <refresh-ahead-factor>0.5</refresh-ahead-factor>
                             <read-only>false</read-only>
                             <expiry-delay>10s</expiry-delay>
                             <flush-delay>2s</flush-delay>
                        </read-write-backing-map-scheme>
                   </backing-map-scheme>
                   <autostart>true</autostart>
              </distributed-scheme>
              <distributed-scheme>
                   <serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                        <init-params>
                             <init-param>
                                  <param-type>String</param-type>
                                  <param-value>base-entity-pof-config.xml</param-value>
                             </init-param>
                        </init-params>
                   </serializer>
                   <scheme-name>distributed-cache4</scheme-name>
                   <service-name>DistributedEqIPOService</service-name>
                   <internal-cache-scheme>
                        <local-scheme>
                             <high-units>1000</high-units>
                             <expiry-delay>1m</expiry-delay>
                        </local-scheme>
                   </internal-cache-scheme>
                   <backing-map-scheme>
                        <read-write-backing-map-scheme>
                             <internal-cache-scheme>
                                  <class-scheme>
                                       <class-name>com.tangosol.util.ObservableHashMap</class-name>
                                  </class-scheme>
                             </internal-cache-scheme>
                             <cachestore-scheme>
                                  <class-scheme>
                                       <class-name>com..fs.framework.cache.cachestores.EquityIPOCacheStore</class-name>
                                       <init-params>
                                            <init-param>
                                                 <param-type>java.lang.String</param-type>
                                                 <param-value>{cache-name}</param-value>
                                            </init-param>
                                       </init-params>
                                  </class-scheme>
                             </cachestore-scheme>
                             <refresh-ahead-factor>0.5</refresh-ahead-factor>
                             <read-only>false</read-only>
                             <expiry-delay>10s</expiry-delay>
                             <flush-delay>2s</flush-delay>
                        </read-write-backing-map-scheme>
                   </backing-map-scheme>
                   <autostart>true</autostart>
              </distributed-scheme>
              <distributed-scheme>
                   <serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                        <init-params>
                             <init-param>
                                  <param-type>String</param-type>
                                  <param-value>base-entity-pof-config.xml</param-value>
                             </init-param>
                        </init-params>
                   </serializer>
                   <scheme-name>distributed-cache5</scheme-name>
                   <service-name>DistributedDerivativeMstrService</service-name>
                   <internal-cache-scheme>
                        <local-scheme>
                             <high-units>1000</high-units>
                             <expiry-delay>1m</expiry-delay>
                        </local-scheme>
                   </internal-cache-scheme>
                   <backing-map-scheme>
                        <read-write-backing-map-scheme>
                             <internal-cache-scheme>
                                  <class-scheme>
                                       <class-name>com.tangosol.util.ObservableHashMap</class-name>
                                  </class-scheme>
                             </internal-cache-scheme>
                             <cachestore-scheme>
                                  <class-scheme>
                                       <class-name>com..fs.framework.cache.cachestores.DerivativeMasterCacheStore</class-name>
                                       <init-params>
                                            <init-param>
                                                 <param-type>java.lang.String</param-type>
                                                 <param-value>{cache-name}</param-value>
                                            </init-param>
                                       </init-params>
                                  </class-scheme>
                             </cachestore-scheme>
                             <refresh-ahead-factor>0.5</refresh-ahead-factor>
                             <read-only>false</read-only>
                             <expiry-delay>10s</expiry-delay>
                             <flush-delay>2s</flush-delay>
                        </read-write-backing-map-scheme>
                   </backing-map-scheme>
                   <autostart>true</autostart>
              </distributed-scheme>
              <distributed-scheme>
                   <serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                        <init-params>
                             <init-param>
                                  <param-type>String</param-type>
                                  <param-value>base-entity-pof-config.xml</param-value>
                             </init-param>
                        </init-params>
                   </serializer>
                   <scheme-name>distributed-cache6</scheme-name>
                   <service-name>DistributedDerivativeMktService</service-name>
                   <internal-cache-scheme>
                        <local-scheme>
                             <high-units>1000</high-units>
                             <expiry-delay>1m</expiry-delay>
                        </local-scheme>
                   </internal-cache-scheme>
                   <backing-map-scheme>
                        <read-write-backing-map-scheme>
                             <internal-cache-scheme>
                                  <class-scheme>
                                       <class-name>com.tangosol.util.ObservableHashMap</class-name>
                                  </class-scheme>
                             </internal-cache-scheme>
                             <cachestore-scheme>
                                  <class-scheme>
                                       <class-name>com.fs.framework.cache.cachestores.DerivativeMarketCacheStore</class-name>
                                       <init-params>
                                            <init-param>
                                                 <param-type>java.lang.String</param-type>
                                                 <param-value>{cache-name}</param-value>
                                            </init-param>
                                       </init-params>
                                  </class-scheme>
                             </cachestore-scheme>
                             <refresh-ahead-factor>0.5</refresh-ahead-factor>
                             <read-only>false</read-only>
                             <expiry-delay>10s</expiry-delay>
                             <flush-delay>2s</flush-delay>
                        </read-write-backing-map-scheme>
                   </backing-map-scheme>
                   <autostart>true</autostart>
              </distributed-scheme>
              <distributed-scheme>
                   <serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                        <init-params>
                             <init-param>
                                  <param-type>String</param-type>
                                  <param-value>base-entity-pof-config.xml</param-value>
                             </init-param>
                        </init-params>
                   </serializer>
                   <scheme-name>distributed-cache7</scheme-name>
                   <service-name>DistributedDerivativeHistService</service-name>
                   <internal-cache-scheme>
                        <local-scheme>
                             <high-units>1000</high-units>
                             <expiry-delay>1m</expiry-delay>
                        </local-scheme>
                   </internal-cache-scheme>
                   <backing-map-scheme>
                        <read-write-backing-map-scheme>
                             <internal-cache-scheme>
                                  <class-scheme>
                                       <class-name>com.tangosol.util.ObservableHashMap</class-name>
                                  </class-scheme>
                             </internal-cache-scheme>
                             <cachestore-scheme>
                                  <class-scheme>
                                       <class-name>com.fs.framework.cache.cachestores.DerivativeHistoricalCacheStore</class-name>
                                       <init-params>
                                            <init-param>
                                                 <param-type>java.lang.String</param-type>
                                                 <param-value>{cache-name}</param-value>
                                            </init-param>
                                       </init-params>
                                  </class-scheme>
                             </cachestore-scheme>
                             <refresh-ahead-factor>0.5</refresh-ahead-factor>
                             <read-only>false</read-only>
                             <expiry-delay>10s</expiry-delay>
                             <flush-delay>2s</flush-delay>
                        </read-write-backing-map-scheme>
                   </backing-map-scheme>
                   <autostart>true</autostart>
              </distributed-scheme>
              <distributed-scheme>
                   <serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                        <init-params>
                             <init-param>
                                  <param-type>String</param-type>
                                  <param-value>base-entity-pof-config.xml</param-value>
                             </init-param>
                        </init-params>
                   </serializer>
                   <scheme-name>distributed-cache8</scheme-name>
                   <service-name>DistributedMFMstrService</service-name>
                   <internal-cache-scheme>
                        <local-scheme>
                             <high-units>1000</high-units>
                             <expiry-delay>1m</expiry-delay>
                        </local-scheme>
                   </internal-cache-scheme>
                   <backing-map-scheme>
                        <read-write-backing-map-scheme>
                             <internal-cache-scheme>
                                  <class-scheme>
                                       <class-name>com.tangosol.util.ObservableHashMap</class-name>
                                  </class-scheme>
                             </internal-cache-scheme>
                             <cachestore-scheme>
                                  <class-scheme>
                                       <class-name>com.fs.framework.cache.cachestores.MFMasterCacheStore</class-name>
                                       <init-params>
                                            <init-param>
                                                 <param-type>java.lang.String</param-type>
                                                 <param-value>{cache-name}</param-value>
                                            </init-param>
                                       </init-params>
                                  </class-scheme>
                             </cachestore-scheme>
                             <refresh-ahead-factor>0.5</refresh-ahead-factor>
                             <read-only>false</read-only>
                             <expiry-delay>10s</expiry-delay>
                             <flush-delay>2s</flush-delay>
                        </read-write-backing-map-scheme>
                   </backing-map-scheme>
                   <autostart>true</autostart>
              </distributed-scheme>
              <distributed-scheme>
                   <serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                        <init-params>
                             <init-param>
                                  <param-type>String</param-type>
                                  <param-value>base-entity-pof-config.xml</param-value>
                             </init-param>
                        </init-params>
                   </serializer>
                   <scheme-name>distributed-cache9</scheme-name>
                   <service-name>DistributedMFDataService</service-name>
                   <internal-cache-scheme>
                        <local-scheme>
                             <high-units>1000</high-units>
                             <expiry-delay>1m</expiry-delay>
                        </local-scheme>
                   </internal-cache-scheme>
                   <backing-map-scheme>
                        <read-write-backing-map-scheme>
                             <internal-cache-scheme>
                                  <class-scheme>
                                       <class-name>com.tangosol.util.ObservableHashMap</class-name>
                                  </class-scheme>
                             </internal-cache-scheme>
                             <cachestore-scheme>
                                  <class-scheme>
                                       <class-name>com.fs.framework.cache.cachestores.MFDataCacheStore</class-name>
                                       <init-params>
                                            <init-param>
                                                 <param-type>java.lang.String</param-type>
                                                 <param-value>{cache-name}</param-value>
                                            </init-param>
                                       </init-params>
                                  </class-scheme>
                             </cachestore-scheme>
                             <refresh-ahead-factor>0.5</refresh-ahead-factor>
                             <read-only>false</read-only>
                             <expiry-delay>10s</expiry-delay>
                             <flush-delay>2s</flush-delay>
                        </read-write-backing-map-scheme>
                   </backing-map-scheme>
                   <autostart>true</autostart>
              </distributed-scheme>
         </caching-schemes>
    </cache-config>
    <?xml version="1.0"?>
    <!DOCTYPE pof-config SYSTEM "pof-config.dtd">
         <pof-config>
              <user-type-list>
                   <!-- coherence POF user types -->
                   <include>coherence-pof-config.xml</include>
                   <!-- com.tangosol.examples package -->
                   <user-type>
                        <type-id>1001</type-id>
                        <class-name>com.fs.framework.cache.model.BaseCacheEntity</class-name>
                   </user-type>
              </user-type-list>
                   <allow-interfaces>true</allow-interfaces>
                   <allow-subclasses>true</allow-subclasses>
         </pof-config>
    package com.fs.framework.cache.model;
    import java.io.IOException;
    import java.io.Serializable;
    import org.apache.log4j.Logger;
    import com.tangosol.io.pof.PofReader;
    import com.tangosol.io.pof.PortableObject;
    import com.tangosol.io.pof.PofWriter;
    import com.tangosol.util.Base;
    public class BaseCacheEntity implements PortableObject{
         public BaseCacheEntity() {
              // TODO Auto-generated constructor stub
         public BaseCacheEntity(String dataType, String data) {
              super();
              this.dataType = dataType;
              this.data = data;
         private static Logger logger      = Logger.getLogger(BaseCacheEntity.class);
         private String dataType;
         private String data;
         public String getDataType() {
              return dataType;
         public void setDataType(String dataType) {
              this.dataType = dataType;
         public String getData() {
              return data;
         public void setData(String data) {
              this.data = data;
         @Override
         public void readExternal(PofReader pofReader) throws IOException {
              // TODO Auto-generated method stub
         this.setData((String)pofReader.readObject(0));
         this.setDataType((String)pofReader.readObject(1));
         @Override
         public void writeExternal(PofWriter pofWriter) throws IOException {
              // TODO Auto-generated method stub
              pofWriter.writeObject(0, this.getData());
              pofWriter.writeObject(1, this.getDataType());
    2010-06-24 21:13:33.861/211.255 Oracle Coherence GE 3.5.3/465 <D5> (thread=Cluster, member=n/a): Service Cluster joined the cluster with senior service member n/a
    2010-06-24 21:13:34.064/211.458 Oracle Coherence GE 3.5.3/465 <Info> (thread=Cluster, member=n/a): This Member(Id=3, Timestamp=2010-06-24 21:13:33.587, Address=172.17.89.51:8088, MachineId=58419, Location=site:India.com,machine:01HW136561,process:4124, Role=WeblogicServer, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1) joined cluster "cluster:0xDDEB" with senior Member(Id=2, Timestamp=2010-06-22 19:22:43.104, Address=172.17.88.171:8089, MachineId=58795, Location=site:India.com,machine:01HW133294,process:1304, Role=CoherenceConsole, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1)
    2010-06-24 21:13:34.080/211.474 Oracle Coherence GE 3.5.3/465 <Error> (thread=Cluster, member=n/a): An exception (java.lang.IllegalStateException) occurred reading Message MemberConfigResponse Type=-2 for Service=ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_JOINED), Id=0, Version=3.5, OldestMemberId=2}
    2010-06-24 21:13:34.080/211.474 Oracle Coherence GE 3.5.3/465 <Error> (thread=Cluster, member=n/a): StopRunning ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_JOINED), Id=0, Version=3.5, OldestMemberId=2} due to unhandled exception:
    2010-06-24 21:13:34.080/211.474 Oracle Coherence GE 3.5.3/465 <Error> (thread=Cluster, member=n/a):
    java.lang.IllegalStateException: Missing POF configuration (Config=C:\com\fs-base-framework\src\resources\base-entity-pof-config.xml)
         at com.tangosol.io.pof.ConfigurablePofContext.report(ConfigurablePofContext.java:1311)
         at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(ConfigurablePofContext.java:803)
         at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePofContext.java:762)
         at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(ConfigurablePofContext.java:325)
         at com.tangosol.util.ExternalizableHelper.ensureSerializer(ExternalizableHelper.java:286)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:25)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:1)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.readObject(Service.CDB:4)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid$ServiceConfigMap.readObject(Grid.CDB:1)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid$MemberConfigResponse.read(Grid.CDB:13)
    Edited by: tally_15 on Jun 24, 2010 8:54 AM

    I believe there are some other concerns as well
    <cache-mapping>
    <cache-name>cacheEquityMarket</cache-name>
    <scheme-name>distributed-cache1</scheme-name>
    <init-params>
    <init-param>
    <param-name>java.lang.String</param-name>
    <param-value>{cache-name}</param-value>
    <param-name>local-storage</param-name>
    <param-value system-property="cacheEquityMarket.localstorage">true</param-value>
    </init-param>
    </init-params>
    </cache-mapping>
    The cavhe-config.dtd shows the cache-mapping as
    <!ELEMENT cache-mapping
    (cache-name, scheme-name, init-params?)>
    Where init-params is defined as
    !ELEMENT init-param
    ((param-name | param-type), param-value)>
    Which states either have a param-name or a param-type with a param-value
    Which would change the above xml to:
    <init-params>
    <init-param>
    <param-name>java.lang.String</param-name>
    <param-value>{cache-name}</param-value>
    </init-param>
    <init-param>
    <param-name>local-storage</param-name>
    <param-value system-property="cacheEquityMarket.localstorage">true</param-value>
    </init-param>
    </init-params>
    I believe the java.lang.String is meant to be a <param-type> instead of <param-name>
    which would change the xml to:
    <init-params>
    <init-param>
    <param-type>java.lang.String</param-type>
    <param-value>{cache-name}</param-value>
    </init-param>
    <init-param>
    <param-name>local-storage</param-name>
    <param-value system-property="cacheEquityMarket.localstorage">true</param-value>
    </init-param>
    </init-params>
    These are different examples from the 3.5 user guide
    <class-name>com.mycompany.cache.CustomCacheLoader</class-name>
    <init-params>
    <init-param>
    <param-type>java.lang.String</param-type>
    <param-value>EmployeeTable</param-value>
    </init-param>
    <init-param>
    <param-type>int</param-type>
    <param-value>2000</param-value>
    </init-param>
    </init-params>
    <init-params>
    <init-param>
    <param-type>java.lang.String</param-type>
    <param-value>{cache-name}</param-value>
    </init-param>
    </init-params>
    Edited by: drowland on Jun 24, 2010 12:06 PM
    Edited by: drowland on Jun 24, 2010 12:24 PM

  • VC: bad or missing storyboard configuration file ( studio.ini)

    Hi Experts
    When I try to use VC on my desktop (winXP sp2 - Internet Explorer browser v.6.0.2900.2180 sp2) show me a popup with the following message: "bad or missing storyboard configuration file ( studio.ini)"
    i have SVG 3.0 & MSXML 4.0  and MSXML 6.0  files on my client machine....what could be the issue??

    Hello all Experts,
    We can use all the version of IE(Internet Explorer),
    I got the solution of this particular error, so please follow the this steps:-
    Install the "IE6SP2" in your system Registry..
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/vc/ie70
    After that you can use the any version of IE(Internet Explorer).
    and also please check the version of these softwares:
    SVGView
    MSXML Parser 4.0
    This will help you Definately.
    Thankyou
    Regards
    Kshitij D.

  • 339 - Component 'Srcvw3.dll' missing / not configured correctly

    Hi,
    I'm trying to connect to essbase through FDM. I met this error in Tool > View error: "339 - Component 'Srcvw3.dll' or one of its dependencies not correctly registered: a file is missing or invalid."
    I moved ES11X-G4-H.xml to FDM Shared component and upsES11XG4H.exe to Essbase-client-32/bin folder. I also configure ARBORPATH and ESSBASEPATH to essbase 32 bit client directory.
    Please help

    The file you are referencing should be located in the Oracle\Middleware\Bin directory. Do you see this file here? If so, you can register it using regsrv32. The file and it's corresponding .lic file should be in this directory and registered from this directory.
    If you still receive the error, copy these two files to the FinancialDataQuality\sharedcomponents directory and register them using regsrv32 from this location.

  • Icons missing & blank configuration

    I purchased the 8830 World smartphone, (GPRS, COMA), SW ver 4.2.2.176 on Platform 3.0.0.76, with all SW modules ver 4.2.2.176, with excption: net_rim_reimbursed 4.2.10,  SecureIDLib 2.1.0, and all net_rim_bb_lbs....... at 1.2.26
    I could have sworn that I had an email and web browser icon when I began confirguring this phone.  Too bad I didn't do those first.  Biggest issue:
    #1 > The browser app is there (ver 4.2.2); Default Permission for connections, interactions & user data are set to Allow; When I select Opts > Advd > Browser, it displays Default browser configuration:  and nothing else.
    I've gone to Host Routing Table and Restered. My Service Book has no entries. Enterprise Activation is blank em/pswrd, PIN has an alphanumerical entry, status=not activated.
    Default Services is empty.  Browser Push has all Enabled, Auto and Allow All.
    I have a Sprint package that give me EVERYTHING - web, pc to phone web connect, yada yada..
    I am not hiding any icons and have Show All selected.
    The following is a complete list of the icons in my application screen.  A SERIOUS subset of what is listed under Opts > Advd > Apps.
    Blackberry Messenger       Saved Messages        Call Log        Messages     Compose        Voice Dialing
    Address Book                  Setup Wizard            Calendar       Tasks           Memo Pad      Maps
    Manage Connections        Setup Blue Tooth       Profiles         Options        Search          Help
    Turn Power Off               Keyboard Lock           Calculator     Media           Alarm
    Password Keeper             BrickBreaker
    How do I get my icons, correctly configure the browser and what else is missing that I don't know about yet? 
    I'm reluctant to do anything in case I need to wipe this clean and start from scratch (I hope not).
    Signed... disgused former Palm Treo user

    You might want to contact Sprint for assistance. Without the service books nothing is going to work. What plan do you have with Sprint? Is it the Simply Everything Plan?

  • SQL SERVICES ARE MISSING IN CONFIGURATION MANAGER

    hi
    We have recently migrated SQL2008 to SQL2012 enterprise edition on WINDOWS 2012,and everything is running fine.
     Today i have just opened SQLCONFIGURATIONMANAGER for normal services checkup,but i couldn't find any SQL services in it expect integration services.i have checked in SERVICES.MSC and all services are running, this happened suddenly before it was alright(i
    could see all the services)could some one please help me in finding the reason for sudden missing of the SQL services in CONFIGURATION MANAGER and way to get them back.
    cheers

    OK, so that is strange enough and looks like permissions issue with the WMI. There is an article for SQL 2008R2, which you can check and see if the solution helps you somehow - http://www.mssqltips.com/sqlservertip/2492/why-is-sql-server-configuration-manager-missing-services/
    Ivan Donev MCT and MCSE Data Platform

  • MISSING: Tools- Configure SOA menu item in SOA Suite 11g TP4

    Hi,
    I have installed 11g TP4 Jdev and followed the install guide.
    I didnt find the menu item 'Tools > Configure SOA...' itself... :((
    May i know what i might hv missed ???
    Thanks & Regards,
    ATC

    On the information page for SOA Tech Preview 4, there is a step called, Enable. You need to go to metalink to read the instructions there on how to enable SOA for TP4. Then the Configure SOA command will show up in the Tools menu.
    here is the information page: [http://www.oracle.com/technology/products/ias/bpel/techpreview/index.html]
    Heidi.

  • Missing SATA configuration screen in BIOS

    Original setup
    Mobo: MSI PT880 Neo (V2.0)
    Model: MS-7043 Ver:100
    BIOS: AMIBIOS v1.3
    CPU: Intel P4 3.0GHz
    RAM: 2x 1GB Kingston DDR400
    HDD: 80GB IDE Maxtor
    Optical: Lite-On DVD-RW IDE
    PSU: Tristar 550W
    Video: MSI 8907 ver200
    the hard drive is beginning to fail so I purchased a new WD 500GB SATA hard drive. The mobo has two SATA ports and according to the manual and these forums, this board should be able to handle a SATA drive but when I plug in the drive, it doesn't appear in the BIOS. In fact, there is no setting to configure the SATA drive except for to enable/disable in the "integrated peripherals" menu of the BIOS. At first I thought that I needed to flash the bios. I was able to succesfully flash it to version 2.0 but the SATA config is still missing. I tried flashing to version 1.9 but the process froze after the message "erase done" appeared but before it started writing the new bios. I had to power off the power supply to get out of the frozen screen (I know that this was probably not good but I had no other choice since it was frozen for 30 minutes with no activity during the flash process) Luckily, the system wasn't toasted. I just reset the CMOS jumper and the bios was back to version 2.0
    I'm performing the flash update by booting using a Win98 CD (I got the ISO for it from another post in this forum) then swapping in another CD with the BIOS utility and file. The PC was stable prior to the hard drive beginning to fail.
    Can anyone tell me what I'm doing incorrectly? I just want to be able to install Win XP on the new SATA drive and replace the IDE drive.

    Quote from: Stu on 15-May-10, 19:22:31
    What SATA config settings are you looking for? For a single drive, there is nothing to configure.
    From the FAQ section of the mobo on MSI's webpage, I was under the impression that there should be more settings in the "integrated peripherals" http://www.msi.com/index.php?func=faq2show&faq_no=37 although now that I look at the page, it doesn't say that it's specifically for this mobo (even though it is linked right from the mobo's product page)
    Quote from: Henry on 15-May-10, 12:59:04
    Did you put the jumper on for S-ATA 1.5 or did you leave no jumper for S-ATA 3.0?
    I was able to find the jumper and set the drive to SATA 150MB and now I am able to choose it in the list of bootable devices. It appears as "BBS-0 (RAID)" when I press F11 to choose a boot device. It still doesn't appear in the BIOS settings as a detected HD though. Now when I try to install Win XP, it says that there is no storage device detected. When I press F6 during the start of the install, it wants to find the driver on a floppy disk. Is there another way for Windows to be able to see the drive? I'm not installing a RAID and I'm not sure if I have a working floppy drive or floppy disk.
    Do I need to install this drive on a completely different machine, get Windows installed and then transfer it back to this box?
    ..

  • Reg.Simulation entry missing from configuration

    Dear Experts
    I am newly configure in IDES system,in which I create Inventory A/c,Consumption account,GR/IR a/c,Inv offsetting a/c,Inc/Dec a/c,Cash payable on purchase a/c ,Gain loss revaluation a/c and Loss in exchange rate a/c  and configured in OBYC ,but in OMWB->Simulation all assigned are missing -
          Posting line text                     PK      Acct Deb     PK     Acct.Cr
         Inventory Posting                     83      Missing    93      Missing
    Pls help me where I have missed to assign the G/L Account.And how to configure for come in OMWB settings.
    Thanks
    Rajakumar.K

    Please maintain GL Codes against Gen Modifier/Valuation Class in OBYC settings.
    Regards,
    Alok

  • 'Required app is missing' using Configurator

    Today I got an error message while trying to prepare my iPad 3 using Apple Configurator v 1.2
    After clicking on the Prepare button and 'Are you sure..." the error message is "Required App is Missing". I thought that I had selected to install an app that wasn't loaded or had been trashed. Removed all the apps. That didn't help.
    I tried to supervise my iPad forcing it to erase and upgrade to iOS 6.0. I got the error message.
    I unplugged my Supervised devices. Restarted my machine and restored my iPad. Still the same error message. On one website I read that they downloaded their VPP spreadsheet again and all was good though I'm not using the VPP spreadsheet with my unsupervised iPad.
    I also noticed that the Prepared button icon now has a little star as part of the icon. Is this telling me something?
    I haven't experienced this on any other machines yet.
    Am I missing something?

    I haven't seen this message before, but if I were to guess I'd think that maybe an app that was on the original backup was removed. Have you compared the app list from the problem iPad to the non-problem iPads?
    If there isn't any data that needs to be saved on the problem iPad, you may want to restore the Supervised backup to remedy the issue. But I'm curious to know why the error came up in the first place.
    If you find a solution, please post it. I'd like to know the answer!

Maybe you are looking for

  • Archive Logs NOT APPLIED but transferred

    Hi Gurus, I have configured Primary & Standby databases in same Oracle Home. OS version is OEL 5. Database version is 10.2.0.1. I could get the archive logs in the standby site but they are not getting applied in the standby database. I don't have OL

  • Dropped My Laptop - Which Tests Should I Run To Assure It's Fine?

    Unfortunately I placed my one + a half year old 15" MacBook Pro laptop  on a new tilted notebook cooler (that has no grip), & sat them both  on my computer chair while in use. To my recollection I only had the  YouTube homepage open without any video

  • Does using an external HD slow down iMovie?

    I have stored about 6000 photos on my hard drive. I believe it may be slowing down my computer, so I have thought about buying a separate drive just for iPhoto and iMovie. Would that be a good idea? If so, would I expect the program to run more slowl

  • Why can't I see the 1000 e-mails as entered in Settings for Mail?

    I am accessing an Exchange mail account.  Only the most recent 50 or so e-mails in my Inbox are visible.  (Yes, I know I can see them all by going to webmail in Safari)

  • Update Time confirmation and Long text of Work Order in single FM or BAPI

    Hi, I would like to know, which standard FM or BAPI will update the longtext along with the confirmation text while doing the time confirmation of a work order. I have tried with standard BAPI BAPI_ALM_CONF_CREATE for updating the time confirmation.