Portable object format

Hi All ,I am working on portable object format with coherence my requirement is to build portable object format using java so every platform call that object..
please tell me when ever  i use to start the coherence with my cache name its showing like pof-config file unable to find how to resolve this error is there any wrong in my cohernce cache config if there pls tell me ...
is it correct way to built portable object .
*1.Created the java class ( Manager.java) --> portable object interface*
package com.Manager;
import java.io.IOException;
import com.tangosol.io.pof.PofReader;
import com.tangosol.io.pof.PofWriter;
import com.tangosol.io.pof.PortableObject;
public class Manager implements PortableObject
     private String m_id ;
private String m_name ;
public Manager()
public Manager(String m_id,String m_name)
     this.m_id=m_id;
     this.m_name=m_name;
public String getId()
     return m_id;
public void setId(String id)
     m_id = id;
public String getName()
     return m_name;
public void setName(String name)
     m_name = name;
     @Override
     public void readExternal(PofReader arg0) throws IOException {
          // TODO Auto-generated method stub
          m_id = arg0.readString(0);
m_name = arg0.readString(1);
     @Override
     public void writeExternal(PofWriter arg0) throws IOException {
          arg0.writeString(0, m_id);
          arg0.writeString(1, m_name);     
*2. created the (manager2.java)*
package com.Manager;
import java.io.IOException;
import com.tangosol.io.pof.PofReader;
import com.tangosol.io.pof.PofWriter;
public class Manager2 -->Pof Initilizer
     public void serialize(PofWriter out, Object o)
     throws IOException
     Manager trade = (Manager) o;
     out.writeObject(0, trade.getId());
     out.writeString(1, trade.getName());
     // mark that writing the object is done
     out.writeRemainder(null);
     public Object deserialize(PofReader in)
     throws IOException
     String ldtPlaced = in.readString(0);
     String name = in.readString(1);
     // mark that reading the object is done
     in.readRemainder();
     return new Manager(ldtPlaced,name);
*3.created another java class to cput the data into cache*
package com.Manager;
import com.Manager.Manager;
import com.tangosol.net.CacheFactory;
import com.tangosol.net.NamedCache;
public class Main {
     * @param args
     public static void main(String[] args) {
          // TODO Auto-generated method stub
          String m_id = "123";
          String m_name ="laxman";
          CacheFactory.ensureCluster();
          NamedCache cache = CacheFactory.getCache("hello");
          /*Manager m1 = new Manager();
          m1.setId("1");
          m1.setName("laxman");*/
          cache.put(m_id,m_name);
**4.created coherence-cache-config.xml**
!DOCTYPE cache-config SYSTEM "cache-config.dtd">
<cache-config>
<caching-scheme-mapping>
<cache-mapping>
<cache-name>hello</cache-name>
<scheme-name>Distributed</scheme-name>
</cache-mapping>
</caching-scheme-mapping>
<caching-schemes>
<distributed-scheme>
<scheme-name>Distributed</scheme-name>
<service-name>DistributedCache</service-name>
<serializer>
<instance>
<class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
<init-params>
<init-param>
<param-type>String</param-type>
<param-value>pof-config.xml</param-value>
</init-param>
</init-params>
</instance>
</serializer>
<backing-map-scheme>
<local-scheme>
<!-- each node will be limited to 250MB -->
<high-units>250M</high-units>
<unit-calculator>binary</unit-calculator>
</local-scheme>
</backing-map-scheme>
<autostart>true</autostart>
</distributed-scheme>
</caching-schemes>
</cache-config>
****5.created coherence-pof-config.xml****
<?xml version="1.0"?>
<!DOCTYPE pof-config SYSTEM "pof-config.dtd">
<pof-config>
     <user-type-list>
     <include>Manager-pof-config.xml</include>
<user-type>
<type-id>1000</type-id>
<class-name>com.Manager.Manager</class-name>
<serializer>
<class-name>com.Manager.Manager2</class-name>
</serializer>
</user-type>
</user-type-list>
</pof-config>
****6.My Cache-server.cmd****
@echo off
@rem This will start a cache server
setlocal
:config
@rem specify the Coherence installation directory
set coherence_home=%~dp0\..
@rem specify the JVM heap size
set memory=512m
:start
if not exist "%coherence_home%\lib\coherence.jar" goto instructions
if "%java_home%"=="" (set java_exec=java) else (set java_exec=%java_home%\bin\java)
:launch
set java_opts="-Xms%memory% -Xmx%memory% -Dtangosol.pof.config=file:/C:/Users/lakshmana/JPACoherenceWorkspace/Application/appClientModule/Manager-pof-config.xml -Dtangosol.coherence.cacheconfig=file:/C:/Users/lakshmana/JPACoherenceWorkspace/Application/appClientModule/coherence-cache-config.xml"
"%java_exec%" -server -showversion "%java_opts%" -cp "%coherence_home%\lib\coherence.jar" com.tangosol.net.DefaultCacheServer %1
goto exit
:instructions
echo Usage:
echo ^<coherence_home^>\bin\cache-server.cmd
goto exit
:exit
endlocal
@echo on
***7.Coherence-cache-server.cmd***
@echo off
@rem This will start a console application
@rem demonstrating the functionality of the Coherence(tm) API
setlocal
:config
@rem specify the Coherence installation directory
set coherence_home=%~dp0\..
@rem specify if the console will also act as a server
set storage_enabled=false
@rem specify the JVM heap size
set memory=64m
:start
if not exist "%coherence_home%\lib\coherence.jar" goto instructions
if "%java_home%"=="" (set java_exec=java) else (set java_exec=%java_home%\bin\java)
:launch
if "%storage_enabled%"=="true" (echo ** Starting storage enabled console **) else (echo ** Starting storage disabled console **)
set java_opts="-Xms%memory% -Xmx%memory% -Dtangosol.coherence.distributed.localstorage=true -Dtangosol.coherence.cacheconfig=file:/C:/Users/Praveen/workspace/SimpleCacheApp/build/classes/coherence-cache-config.xml -Dtangosol.coherence.override=file:/C:/Users/Praveen/workspace/SimpleCacheApp/src/tangosol-coherence-override.xml"
"%java_exec%" -server -showversion "%java_opts%" -cp "%coherence_home%\lib\coherence.jar" com.tangosol.net.CacheFactory %1
goto exit
:instructions
echo Usage:
echo ^<coherence_home^>\bin\coherence.cmd
goto exit
:exit
endlocal
@echo on
**cache server working fine , When i am trying to start the coherence and entered cache and mycache name hello its showing following error**
Map (?): cache hello
2012-06-14 22:48:02.475/7.590 Oracle Coherence GE 3.6.0.4 <Info> (thread=main, member=11): Loaded cache configuration from "file:/C:/Users/lakshmana/JPACoherenceWorkspace/Application/appClientModule/c
oherence-cache-config.xml"
2012-06-14 22:48:02.609/7.724 Oracle Coherence GE 3.6.0.4 <D4> (thread=DistributedCache, member=11): PartitionedCache caught an unhandled exception (com.tangosol.util.WrapperException: (Wrapped: error
configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to load POF configuration: Manager-config.xml) The POF configuration is missing: "Manager-config.xml", loader=sun.misc
.Launcher$AppClassLoader@6d6f0472) while exiting.
2012-06-14 22:48:02.610/7.725 Oracle Coherence GE 3.6.0.4 <Error> (thread=DistributedCache, member=11): ClusterService.doServiceLeft: Unknown Service PartitionedCache{Name=DistributedCache, State=(SER
VICE_STOPPED), Not initialized}
2012-06-14 22:48:02.610/7.725 Oracle Coherence GE 3.6.0.4 <D5> (thread=DistributedCache, member=11): Service DistributedCache left the cluster
2012-06-14 22:48:02.625/7.740 Oracle Coherence GE 3.6.0.4 <Error> (thread=main, member=11): Error while starting service "DistributedCache": (Wrapped) (Wrapped: error configuring class "com.tangosol.i
o.pof.ConfigurablePofContext") (Wrapped: Failed to load POF configuration: Manager-config.xml) java.io.IOException: The POF configuration is missing: "Manager-config.xml", loader=sun.misc.Launcher$App
ClassLoader@6d6f0472
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:28)
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:1057)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(DefaultConfigurableCacheFactory.java:892)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:874)
at com.tangosol.net.DefaultConfigurableCacheFactory.configureCache(DefaultConfigurableCacheFactory.java:1231)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:290)
at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:735)
at com.tangosol.coherence.component.application.console.Coherence.doCache(Coherence.CDB:18)
at com.tangosol.coherence.component.application.console.Coherence.processCommand(Coherence.CDB:209)
at com.tangosol.coherence.component.application.console.Coherence.run(Coherence.CDB:37)
at com.tangosol.coherence.component.application.console.Coherence.main(Coherence.CDB:3)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.tangosol.net.CacheFactory.main(CacheFactory.java:1400)
Caused by: (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to load POF configuration: Manager-config.xml) java.io.IOException: The POF configuration is
missing: "Manager-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.instantiateSerializer(Service.CDB:17)
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:31)
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: (Wrapped: Failed to load POF configuration: Manager-config.xml) java.io.IOException: The POF configuration is missing: "Manager-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:330)
at com.tangosol.run.xml.XmlHelper.loadFileOrResource(XmlHelper.java:281)
at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(ConfigurablePofContext.java:813)
at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePofContext.java:775)
at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(ConfigurablePofContext.java:319)
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.instantiateSerializer(Service.CDB:13)
... 6 more
Caused by: java.io.IOException: The POF configuration is missing: "Manager-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:316)
... 11 more
2012-06-14 22:48:02.625/7.740 Oracle Coherence GE 3.6.0.4 <Error> (thread=main, member=11):
(Wrapped) (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to load POF configuration: Manager-config.xml) java.io.IOException: The POF configuration is
missing: "Manager-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
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:28)
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:1057)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(DefaultConfigurableCacheFactory.java:892)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:874)
at com.tangosol.net.DefaultConfigurableCacheFactory.configureCache(DefaultConfigurableCacheFactory.java:1231)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:290)
at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:735)
at com.tangosol.coherence.component.application.console.Coherence.doCache(Coherence.CDB:18)
at com.tangosol.coherence.component.application.console.Coherence.processCommand(Coherence.CDB:209)
at com.tangosol.coherence.component.application.console.Coherence.run(Coherence.CDB:37)
at com.tangosol.coherence.component.application.console.Coherence.main(Coherence.CDB:3)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.tangosol.net.CacheFactory.main(CacheFactory.java:1400)
Caused by: (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to load POF configuration: Manager-config.xml) java.io.IOException: The POF configuration is
missing: "Manager-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.instantiateSerializer(Service.CDB:17)
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:31)
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: (Wrapped: Failed to load POF configuration: Manager-config.xml) java.io.IOException: The POF configuration is missing: "Manager-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:330)
at com.tangosol.run.xml.XmlHelper.loadFileOrResource(XmlHelper.java:281)
at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(ConfigurablePofContext.java:813)
at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePofContext.java:775)
at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(ConfigurablePofContext.java:319)
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.instantiateSerializer(Service.CDB:13)
... 6 more
Caused by: java.io.IOException: The POF configuration is missing: "Manager-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:316)
... 11 more
Please tell me how to approach this task.......
Thanks
Edited by: 875910 on Jun 15, 2012 12:48 PM
Edited by: 875910 on Jun 15, 2012 1:14 PM

hi Jon thanks for reply ...actually i have modified what u said in the post , but still i am getting the same error .............
is it correct way to build a portable object , its by using java .....
is it when i remove serializer in my coherence-ccache-config ..its working fine ,
Is there any mistake in this config ....if i used this serializer ,getting following error , this config is must to implement pof concept...
<serializer>
<instance>
<class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
<init-params>
<init-param>
<param-type>String</param-type>
<param-value>Manager-pof-config.xml</param-value>
</init-param>
</init-params>
</instance>
</serializer>
Map (?): cache hello
2012-06-15 16:09:27.651/5.755 Oracle Coherence GE 3.6.0.4 <Info> (thread=main, member=13): Loaded cache configuration from "file:/C:/Users/lakshmana/J
oherence-cache-config.xml"
2012-06-15 16:09:27.784/5.888 Oracle Coherence GE 3.6.0.4 <Info> (thread=DistributedCache:DistributedCacheService, member=13): Loaded POF configuratio
pace/Application/appClientModule/Manager-pof-config.xml"
2012-06-15 16:09:27.784/5.888 Oracle Coherence GE 3.6.0.4 <D4> (thread=DistributedCache:DistributedCacheService, member=13): PartitionedCache caught a
ception: (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to load included POF configuration: Manager-
missing: "Manager-pof-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472) while exiting.
2012-06-15 16:09:27.785/5.889 Oracle Coherence GE 3.6.0.4 <Error> (thread=DistributedCache:DistributedCacheService, member=13): ClusterService.doServi
ributedCacheService, State=(SERVICE_STOPPED), Not initialized}
2012-06-15 16:09:27.786/5.890 Oracle Coherence GE 3.6.0.4 <D5> (thread=DistributedCache:DistributedCacheService, member=13): Service DistributedCacheS
2012-06-15 16:09:27.789/5.893 Oracle Coherence GE 3.6.0.4 <Error> (thread=main, member=13): Error while starting service "DistributedCacheService": (W
gosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to load included POF configuration: Manager-pof-config.xml) java.io.IOException: The included P
ml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
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:28)
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:1057)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(DefaultConfigurableCacheFactory.java:892)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:874)
at com.tangosol.net.DefaultConfigurableCacheFactory.configureCache(DefaultConfigurableCacheFactory.java:1231)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:290)
at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:735)
at com.tangosol.coherence.component.application.console.Coherence.doCache(Coherence.CDB:18)
at com.tangosol.coherence.component.application.console.Coherence.processCommand(Coherence.CDB:209)
at com.tangosol.coherence.component.application.console.Coherence.run(Coherence.CDB:37)
at com.tangosol.coherence.component.application.console.Coherence.main(Coherence.CDB:3)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.tangosol.net.CacheFactory.main(CacheFactory.java:1400)
Caused by: (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to load included POF configuration: Manage
d POF configuration is missing: "Manager-pof-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.instantiateSerializer(Service.CDB:17)
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:31)
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: (Wrapped: Failed to load included POF configuration: Manager-pof-config.xml) java.io.IOException: The included POF configuration is missing
er$AppClassLoader@6d6f0472
at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:330)
at com.tangosol.run.xml.XmlHelper.loadFileOrResource(XmlHelper.java:281)
at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(ConfigurablePofContext.java:856)
at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePofContext.java:775)
at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(ConfigurablePofContext.java:319)
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.instantiateSerializer(Service.CDB:13)
... 6 more
Caused by: java.io.IOException: The included POF configuration is missing: "Manager-pof-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:316)
... 11 more
2012-06-15 16:09:27.789/5.893 Oracle Coherence GE 3.6.0.4 <Error> (thread=main, member=13):
(Wrapped) (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to load included POF configuration: Manager
POF configuration is missing: "Manager-pof-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
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:28)
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:1057)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(DefaultConfigurableCacheFactory.java:892)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:874)
at com.tangosol.net.DefaultConfigurableCacheFactory.configureCache(DefaultConfigurableCacheFactory.java:1231)
at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:290)
at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:735)
at com.tangosol.coherence.component.application.console.Coherence.doCache(Coherence.CDB:18)
at com.tangosol.coherence.component.application.console.Coherence.processCommand(Coherence.CDB:209)
at com.tangosol.coherence.component.application.console.Coherence.run(Coherence.CDB:37)
at com.tangosol.coherence.component.application.console.Coherence.main(Coherence.CDB:3)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.tangosol.net.CacheFactory.main(CacheFactory.java:1400)
Caused by: (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to load included POF configuration: Manage
d POF configuration is missing: "Manager-pof-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.instantiateSerializer(Service.CDB:17)
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:31)
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: (Wrapped: Failed to load included POF configuration: Manager-pof-config.xml) java.io.IOException: The included POF configuration is missing
er$AppClassLoader@6d6f0472
at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:330)
at com.tangosol.run.xml.XmlHelper.loadFileOrResource(XmlHelper.java:281)
at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(ConfigurablePofContext.java:856)
at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePofContext.java:775)
at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(ConfigurablePofContext.java:319)
at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.instantiateSerializer(Service.CDB:13)
... 6 more
Caused by: java.io.IOException: The included POF configuration is missing: "Manager-pof-config.xml", loader=sun.misc.Launcher$AppClassLoader@6d6f0472
at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:316)
... 11 more
Map (?):
Thanks..

Similar Messages

  • Oracle coherence-Pof(Portable object format)

    HI,
    I am new to oracle coherence.I read that POF is language independent.I am trying to create a portable object in java and access that object in .NET .So i created a portable object by implementing Portable object interface in Java. My Portable object is as follows:
    Pof.java:
    package com;
    import java.io.IOException;
    import java.io.Serializable;
    import javax.persistence.*;
    import oracle.eclipselink.coherence.integrated.config.CoherenceReadWriteCustomizer;
    import org.eclipse.persistence.annotations.Customizer;
    import com.tangosol.io.pof.PofReader;
    import com.tangosol.io.pof.PofWriter;
    import com.tangosol.io.pof.PortableObject;
    * The persistent class for the POF database table.
    @Entity
    @Customizer(CoherenceReadWriteCustomizer.class)
    public class Pof implements Serializable,PortableObject {
         private static final long serialVersionUID = 1L;
         @Id
         private long id;
         private String city;
         private String name;
         @Column(name="\"STATE\"")
         private String state;
         private String street;
         private String zip;
    public Pof() {
    public Pof(long id,String city,String name,String state,String street,String zip)
         this.id=id;
         this.city=city;
         this.name=name;
         this.state=state;
         this.street=street;
         this.zip=zip;
         public long getId() {
              return this.id;
         public void setId(long id) {
              this.id = id;
         public String getCity() {
              return this.city;
         public void setCity(String city) {
              this.city = city;
         public String getName() {
              return this.name;
         public void setName(String name) {
              this.name = name;
         public String getState() {
              return this.state;
         public void setState(String state) {
              this.state = state;
         public String getStreet() {
              return this.street;
         public void setStreet(String street) {
              this.street = street;
         public String getZip() {
              return this.zip;
         public void setZip(String zip) {
              this.zip = zip;
         @Override
         public void readExternal(PofReader arg0) throws IOException
              id=arg0.readLong(0);
              city=arg0.readString(1);
              name=arg0.readString(2);
              state=arg0.readString(3);
              street=arg0.readString(4);
              zip=arg0.readString(5);
         @Override
         public void writeExternal(PofWriter arg0) throws IOException
              arg0.writeLong(0,id);
              arg0.writeString(1,city);
              arg0.writeString(2,name);
              arg0.writeString(3,state);
              arg0.writeString(4,street);
              arg0.writeString(5,zip);
         @Override
         public String toString()
              return "cityname="+city;
    coherence-cache-config.xml
    <?xml version="1.0"?>
    <!--<!DOCTYPE cache-config SYSTEM "cache-config.dtd">-->
    <cache-config>
         <caching-scheme-mapping>
         <cache-mapping>
         <cache-name>Pof</cache-name>
         <scheme-name>disributedschema</scheme-name>
         </cache-mapping>
         </caching-scheme-mapping>
         <caching-schemes>
         <distributed-scheme>
         <scheme-name>disributedschema</scheme-name>
         <service-name>distributedschemaservice</service-name>
         <serializer>
    <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
    <init-params>
    <init-param>
    <param-value system-property="pof.config">file:///C:/Users/Praveen/workspace/newappworkspace/POF/src/pof-config.xml</param-value>
    <param-type>String</param-type>
    </init-param>
    </init-params>
    </serializer>
    <backing-map-scheme>
    <read-write-backing-map-scheme>
    <internal-cache-scheme>
    <local-scheme/>
    </internal-cache-scheme>
    <cachestore-scheme>
    <class-scheme>
    <class-name>oracle.eclipselink.coherence.integrated.EclipseLinkJPACacheStore</class-name>
    <init-params>
    <init-param>
    <param-type>java.lang.String</param-type>
    <param-value>{cache-name}</param-value>
    </init-param>
    <init-param>
    <param-type>java.lang.String</param-type>
    <param-value>POF</param-value>
    </init-param>
    </init-params>
    </class-scheme>
    </cachestore-scheme>
    </read-write-backing-map-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
         </distributed-scheme>
         </caching-schemes>
    </cache-config>
    pof-config.xml
    <?xml version="1.0"?>
    <!DOCTYPE pof-config SYSTEM "pof-config.dtd">
    <pof-config>
         <user-type-list>
         <!-- include all "standard" Coherence POF user types -->
         <include>coherence-pof-config.xml</include>
         <user-type>
              <type-id>1001</type-id>
              <class-name>com.Pof</class-name>
         </user-type>
         </user-type-list>
         <allow-interfaces>true</allow-interfaces>
    <allow-subclasses>true</allow-subclasses>
    </pof-config>
    Now the data is inserting in to the database and cache.Now how to access this portable object in .NET?
    Any suggestions would be great.
    Regards,
    Praveen

    Hopefully, Coherence Developer's Guide 3.6.1 "Using POF" will help:
    http://download.oracle.com/docs/cd/E15357_01/coh.360/e15723/api_pof.htm#BABEJCFF
    /Mark J
    Oracle Coherence

  • Portable Object Format with Coherence

    Hi All , i have implemented portable object with coherence by using java its working good , i am able put and get the data from cache . Now my requirement is to use another technology like .NET i need to get the data from cache. note : portable object means can any technology use that object (C++ or .NET).
    can u pls tell me how to approach to this task...
    I have everything ready with java now i need to interact with .NET to get the data....
    Thanks

    There is sample code that shows how to do this:
    http://coherence.oracle.com/display/EXAMPLES/Coherence+Features+Examples
    The topic is also covered by Aleks Seovich's book:
    http://www.amazon.com/Oracle-Coherence-3-5-Aleksandar-Seovic/dp/1847196128

  • How to convert the output of Applescript which is in object format to text or string format??

    Hi All,
    I want to convert the output of Applescript which is in object format to string or text format, am running Applescript with Java, I need to display the output of applescript in Eclipse Java Console, since its object format the output is not properly displayed..
    Pls suggest.. I used the below code
    repeat with i in allContents
                if class of i is button then set the end of allStaticText to contents of i
            end repeat
    Applscript ouptput
    {button 1 of window "Player Installer" of application process "Install  Player" of application "System Events", button 2 of window "Player Installer" of application process "Install  Player" of application "System Events", button 3 of window "Player Installer" of application process "Install  Player" of application "System Events", button "Finish" of UI element 1 of scroll area 1 of window "Player Installer" of application process "Install  Player" of application "System Events"}
    Java output
    <NSAppleEventDescriptor: 'obj '{ 'form':'indx', 'want':'butT', 'seld':1, 'from':'obj '{ 'form':'name', 'want':'cwin', 'seld':'utxt'(" Player Installer"), 'from':'obj '{ 'form':'name', 'want':'pcap', 'seld':'utxt'("Install  Player"), 'from':'null'() } } }>

    Here's an improved version of the previous script, where the handler now returns "button 2 of window \"Untitled\" of application process \"TextEdit\" of application \"System Events\"" instead of "button \"2\" of window \"Untitled\" of application process \"TextEdit\" of application \"System Events\"":
    tell application "System Events"
        get button 2 of window 1 of process "TextEdit"
        my objectToText(result) --> "button 2 of window \"Untitled\" of application process \"TextEdit\" of application \"System Events\""
    end tell
    on objectToText(UI_element)
        set theText to ""
        tell application "System Events"
            repeat
                if exists attribute "AXParent" of UI_element then
                    set theParent to value of attribute "AXParent" of UI_element
                    set theClass to class of UI_element
                    if name of UI_element exists then
                        set theName to name of UI_element
                        set theText to theText & (theClass as text) & " \"" & theName & "\" of "
                    else
                        set k to 0
                        get UI elements of theParent whose class is theClass
                        repeat with thisItem in result
                            set k to k + 1
                            if contents of thisItem is UI_element then exit repeat
                        end repeat
                        set theIndex to k
                        set theText to theText & (theClass as text) & " " & theIndex & " of "
                    end if
                    set UI_element to theParent
                else
                    set theClass to class of UI_element
                    set theName to name of UI_element
                    set theText to theText & (theClass as text) & " \"" & theName & "\" of application \"System Events\""
                    exit repeat
                end if
            end repeat
        end tell
        return theText
    end objectToText
    Message was edited by: Pierre L.

  • The "portable document format" icon is a Word 2010 icon, so selecting Adobe Reader as action does not work to display the PDF.

    In the Applications tab -- Content Type -- the "portable document format" icon is a Word 2010 icon (not Adobe), so selecting Adobe Reader or preview in Firefox as action does not work to display the PDF. I can see this Applications difference because my other Firefox laptop has the Adobe icon, and I can view PDFs. Essentially, a PDF is coming in as a Word document -- and the computer tries to open it up as a Word file.
    How do I get the correct PDF icon in the Applications list -- the same way it displays (and works) on my other laptop.

    Adobe PDF Plug-In For Firefox and Netscape 10.1.7 ?
    I think you need to add this to the list of applications and the action to take on the type of content. This can also be managed in the about:permissions page. [[Permissions Manager - Give certain websites the ability to store passwords, set cookies and more]]

  • Cannot see "Portable Document Format" under Options Applications ?

    I was regularly using Foxit PDF reader plugin to view pdf files inside Firefox browser before the pdfjs plugin came through. After that I have disabled the pdfjs plugin (through about:config) and tried many ways to get back to viewing pdfs in the browser using the Foxit plugin but nothing works.
    I have reinstalled Firefox, reinstalled the Foxit pdf plugin.
    When I go to Options > Options > Applications,
    I cannot see the "Portable Document Format" option on the left column.
    There is Adobe Acrobat Forms and XML and there is "Foxit Reader Document" (presumably PDF) and "Foxit Reader FDF Document" - I want to change those opening actions to Foxit inside Firefox, but there is no such option either - so Firefox can just download the file and then open in the external Foxit reader, but not inside it.
    Any help to resolve this is appreciated.
    FF 21, Win 7.

    Hello!
    You can't see the PDF under Options -> Applications because you disabled pdf.js in about:config (I think you set pdfjs.disabled to "true", right?)
    If you go again to about:config and set pdfjs.disabled to "false" you'll see the PDF option again! To change how you view it just click on the spinner on the right. If you have the Foxit PDF reader plugin installed you'll see that in the list of available applications.
    More information here: [https://support.mozilla.org/en-US/kb/disable-built-pdf-viewer-and-use-another-viewer Disable built-in PDF viewer and use another viewer].
    And please, don't use about:config to change your preferences, it can be dangerous: it's preferable to change them from Options.
    Hope it helps!

  • Static initialiser in object formation

    Hi folks. when I instantiate an object, does static variables (in the staic initializer or otherwise) of super class also get initialized in this object formation?

    Of course.

  • Hello, how can i modifie in the options, aplications, Adobe acrobat document, open with Adobe acrobat (in Firefox) instead of open with portable document format (default). Thanks

    I can'T open pdf links in another page, because in options, aplications i have in Adobe acrobat documents open with portable document format (default) and i must put open with Adobe Acrobat (in firefox) default.
    Where can i change the default?
    Tnaks

    All you now have to do is use that variable to the value property of your text field... So add this at the end of your code:
    this.getField("Conference_Option").value = ConferenceOpportunity;
    Also, I would use MouseUp, not MouseDown.

  • How to convert date object format to new?

    Hi,
    I have data object and I want to convert it to this format.
    DD MMM YYYY
    eg: 23 MAR 2003
    I am looking for exact line of code please.
    Thanks,
    Kavans.

    You should check out the Javadoc for java.text.DateFormat and java.text.SimpleDateFormat.
    As for the exact line of code then this would be close:
    Date date = ...; // wherever your date comes from
    DateFormat dateFormat = new SimpleDateFormat("dd MMM yyyy");
    String dateAsString = dateFormat.format(date);Remember to check out those Javadocs, though, 'cos they'll tell you the various formatting options available.
    Hope this helps.

  • Number Object Format

    I have a Number object that needs to be formatted to a certain precision before it is returned. The precision could be changed in the future so I need to do it dynamically. I was going to use doubleValue() to get make the Number type double, but how to I incorporate the precision into this?
    try {
         Number num = NumberFormat.getInstance().parse(value);
         int precision = dataDef.getPrecision();
         if ( precision > 0 ) {
         } else {
              vobj = num;
    } catch (ParseException ex) {
         throw new UnsupportedValueException("Not a valid number: '"
         + value + "'");
    }Edited by: prem1ers on Dec 17, 2009 6:23 PM
    Edited by: prem1ers on Dec 17, 2009 6:23 PM

    paulcw wrote:
    jverd wrote:
    paulcw wrote:
    That's still almost certainly not right.It works as long as there are at least precision digits. He hasn't defined what the behavior should be if there are fewer digits, but with that code, the result is that the string is unchanged.In my experience, trying to edit numbers with regexps rather than parsing them and formatting them, is fragile. Sooner or later there's going to be some kind of surprise, due to an input that's outside the range of currently assumed inputs. Parsing/formatting (with standard tools that are usually more formally correct and debugged to a large degree) is usually less fragile in my experience, and furthermore if some new bad input does break them, then a parse exception will fail faster (OP: failing fast is a good thing) than a regexp failing to substitute.I agree with this in general, but in this particluar case, it's kind of a 50/50 thing, based on what limited knowledge I have of the issue.
    It seems we have a string with, let's assume, at least two digits, and we want to replace it with a string with a decimal point before the last two digits. Even if it may be interpreted as a number at some point, if, in our context, it's always just a string, then parsing to number, doing the math, and formatting back to string seems kind of roundabout.
    On the other hand, if the next thing we do after inserting the DP is to turn around and parse the string and use it as a number, then, yeah, just putting a dot in the string seems kind of pointless.
    And, frankly, if it is always only a string in our context, then what's the point of the point, if you get my point? I mean, if we're not turning the string "180000" into the double of BigD 1800.00, then why bother? Shouldn't it be the responsibility of the part that uses it as a number to know what format it's in and adjust accordingly?

  • Object format with %

    Hello,
    I've a numeric dimension object with a default format object = 0,00 %. (The format is set in the designer)
    But when i use this object in a webi report, I get 0.06% in place of 6.3% !
    The original value is 0.063
    Few months ago, the report displayed right the object but not now. And i will not modify all reports to set the format to 0.00[%] %
    Using the webi reports i have a right display but i refresh it with the same parameters , the display changed.
    I've tryed with a rather old version of my univers on a dev machine and there that works
    I wonder why there was change a one time ?
    Is there any parameters that i have to check ?
    Best regards
    Didier

    Hi Didier,
    In the database the Original value is 0.063. Universe Imports the data from DB as the way it is in DB. You are Just Formatting the Object to be displayed in the Percentage format and Not changing the Original Data. Universe doesnu2019t understand the data present in the DB is in Percentage format it considers this data just as Float type data with Precision and Decimal Places. Thus You Have to Change the Format to show the data in Percentage format.
    Define the Object as Object100 to show it in Percentage value in terms of 100 % value.*
    I Hope this Helpsu2026
    Thanksu2026
    Pratik

  • Jms message format - object format ?

    hi all,
              there are a few messasges formats for messages i'm familier with from
              MQ : MQHRF2, MQFMT_STRING ...
              is there any way to send a message from JMS with MQFMT_STRING format?
              is the default MQHRF2 ?
              is there a way/browser to send/view an object i'm sending as xml ?
              

    You need to find the IBM manual called "WebSphere MQ Using Java". It moves
              around, so I'd suggest going to http://www.ibm.com/software/mqseries/ and
              searching from there. This describes in great detail how messages are
              constructed using the MQSeries JMS API.
              But the short answer is "yes", and the way you do it is that when you use
              the IBM "JMSAdmin" tool to create the JMS "Q" object in JNDI, you specify
              parameters that tell the MQSeries JMS API what format message to create...
              greg
              "hagai" <[email protected]> wrote in message
              news:[email protected]..
              > hi all,
              > there are a few messasges formats for messages i'm familier with from
              > MQ : MQHRF2, MQFMT_STRING ...
              > is there any way to send a message from JMS with MQFMT_STRING format?
              > is the default MQHRF2 ?
              > is there a way/browser to send/view an object i'm sending as xml ?
              

  • Portable hdd format compatible with windows?

    Hi. I have formatted my 320 gb portable hdd to os extended journal format but its not compatible with windows.
    If I choose MS DOS (FAT) will it be at optimum performance with my mac?
    please guide me.

    Hi
    MS DOS (FAT) is a fully compatible format, which will work with both Mac and PC. However, you won't be able to write files which are larger than 4GB.
    Matt
    Message was edited by: Matt Clifton

  • Change text object format problem..

    hello!
    when i'm trying to change the format of textobject in skd(using java).
    its only change the format of the first object in the textobject.
    TextObject p2 = new TextObject();
    p2 = (TextObject) allobj.getReportObject(8);
    TextObject p2old = (TextObject) p2.clone(true);
    FontColor p2c = new FontColor();
    p2c = (FontColor) p2old.getFontColor();
    p2c.setColor(Color.RED);
    roc.modify(p2, p2old);
    anyone know why?
    thanks

    Did you ever solve this?
    I don't know if my problem is similar to yours, but here's what I'm trying to do:
    When you have multiple lines/paragraphs in a text object, each  can have it's own horizontal formating. Any ideas how these can be changed independently via RDC?
    When I change the property HorAlignment on a TextObject it changes it for all the paragraphs, but in the CR designer you can modify each independently.

  • How do I force Pages to keep the object formatting when saving? I placed the word 'draft' in the background of a template, rotated it slightly and save the template. Though the template opens with these changes intact, the document doesn't.

    I'm up to date with OS and Pages software, using an Intel iMac 2 yrs old.

    You need to Capture the page so that it applies to subsequent pages, applying the master objects.
    It sounds like you have just done this for the first page and the following pages are just plain.
    The process is explained here in Letterhead and Followers:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=182&mforum=iworktips ntrick
    Peter

Maybe you are looking for

  • Cannot download blueyonder emails to both iPhone and Mac Mail

    Up until very recently I was receiving blueyonder emails on both my Mac Mail app on my MacBook and on my iPhone. Now the emails will only download to the device it hits first. So, if I receive emails on my iPhone overnight, they wont be received on m

  • Sync Problems with iphone 3g

    Hi. Can someone please help? I'm able to download podcasts in itunes. See it appear on my iphone in itunes but when I sync the new podcasts, it's not downloading on my phone. I've had this phone for 2 years and have never had any problems until I upl

  • Assigning value to a variable.

    i have one doubt. we can assign value to a variable either in declaration section or in exectuion section. so please explain when and wherer should we assign value to a variable. thank you very much.

  • Nano won't resume tune when turned on again - jumps to next one.

    I was under the impression that, if I turned my nano off in the middle of a tune, it would resume playing that tune when switched on again and play is pressed. Mine waits for about 2 seconds and then jumps to the start of the next tune, every time. I

  • The selected wizard could not be started  Reason:org/eclipse/jdt/core/IJava

    Hi i am a newbie to Eclipse plugin , i have used org.eclipse.jdt.core package classes(IJavaElement,ICompliationUnit) for my developement . In Standalone ( as a Eclipse application ) My code is working its generating required java files I export my pl