Issues with element:introduce-cache-config

we have a common cache configuration file (log4j-server-cache-config.xml) and we want to include it to other cache config file. but we tried different approaches, none of them seems work. here are the configuration file we use:
<?xml version='1.0'?>
<cache-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.oracle.com/coherence/coherence-cache-config"
xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-cache-config coherence-cache-config.xsd"
xmlns:element="class://com.oracle.coherence.environment.extensible.namespaces.XmlElementProcessingNamespaceContentHandler"
element:introduce-cache-config="log4j-server-cache-config.xml">
     <defaults>
          <serializer>
               <instance>
                    <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                    <init-params>
                         <init-param>
                              <param-type>String</param-type>
                              <param-value>etlm-pof-config.xml</param-value>
                         </init-param>
                    </init-params>
               </instance>
          </serializer>
     </defaults>
     <caching-scheme-mapping>
          <cache-mapping>
               <cache-name>etlm-codelist</cache-name>
               <scheme-name>etlm-distribute-scheme</scheme-name>
               <init-params>
                    <init-param>
                         <param-name>max-size</param-name>
                         <param-value>5m</param-value>
                    </init-param>
                    <init-param>
                         <param-name>expiry-delay</param-name>
                         <param-value>5m</param-value>
                    </init-param>
               </init-params>
          </cache-mapping>
          <cache-mapping>
               <cache-name>etlm-*</cache-name>
               <scheme-name>etlm-distribute-scheme</scheme-name>
          </cache-mapping>
     </caching-scheme-mapping>
     <caching-schemes>
               <local-scheme>
                    <scheme-name>unlimited-local</scheme-name>
                    <high-units>{max-size 50m}</high-units>
                    <unit-calculator>BINARY</unit-calculator>
                    <expiry-delay>{expiry-delay 0}</expiry-delay>
               </local-scheme>
               <distributed-scheme>
                    <scheme-name>etlm-distribute-scheme</scheme-name>
                    <scheme-ref>etlm-base</scheme-ref>
                    <autostart>true</autostart>
               </distributed-scheme>
               <distributed-scheme>
                    <scheme-name>etlm-base</scheme-name>
                    <service-name>ETLMDistributedCache</service-name>
                    <partition-count>257</partition-count>
                    <backing-map-scheme>
                         <local-scheme>
                              <scheme-ref>unlimited-local</scheme-ref>
                         </local-scheme>
                    </backing-map-scheme>
                    <autostart>true</autostart>
               </distributed-scheme>
               <proxy-scheme>
                    <service-name>ExtendTcpProxyService</service-name>
                    <thread-count>20</thread-count>
                    <acceptor-config>
                         <tcp-acceptor>
                              <local-address>
                                   <address system-property="tangosol.coherence.proxy.host">localhost</address>
                                   <port system-property="tangosol.coherence.proxy.port">18030</port>
                              </local-address>
                         </tcp-acceptor>
                    </acceptor-config>
                    <autostart system-property="tangosol.coherence.proxy">true</autostart>
               </proxy-scheme>
     </caching-schemes>
</cache-config>
Following is the log4j-server-cache-config.xml
<?xml version='1.0'?>
<cache-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns="http://xmlns.oracle.com/coherence/coherence-cache-config"
     xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-cache-config coherence-cache-config.xsd">
     <cachdding-scheme-mapping>
          <cache-mapping>
               <cache-name>dist-log4j</cache-name>
               <scheme-name>engineering-distributed</scheme-name>
               <init-params>
                    <init-param>
                         <param-name>write-delay</param-name>
                         <param-value>1s</param-value>
                    </init-param>
                    <init-param>
                         <param-name>write-batch-factor</param-name>
                         <param-value>0.5</param-value>
                    </init-param>
               </init-params>
          </cache-mapping>
     </caching-scheme-mapping>
     <caching-schemes>
          <local-scheme>
               <scheme-name>unlimited-local</scheme-name>
               <unit-calculator>BINARY</unit-calculator>
          </local-scheme>
          <distributed-scheme>
               <scheme-name>engineering-distributed</scheme-name>
               <service-name>Log4JDistributedCache</service-name>
               <thread-count>20</thread-count>
               <backing-map-scheme>
                    <read-write-backing-map-scheme>
<internal-cache-scheme>
                         <local-scheme/>
                    </internal-cache-scheme>
                    <cachestore-scheme>
                    <class-scheme>
                         <class-name>com.adp.cache.log4j.LoggingCacheStore</class-name>
                              <init-params>
                              <init-param>
                                   <param-type>java.lang.String</param-type>
                                   <param-value>jdbc:oracle:thin:@10.17.134.215:1521:poc</param-value>
                              </init-param>
                              <init-param>
                                   <param-type>java.lang.String</param-type>
                                   <param-value>oracle.jdbc.driver.OracleDriver</param-value>
                              </init-param>
                              <init-param>
                                   <param-type>java.lang.String</param-type>
                                   <param-value>poc</param-value>
                              </init-param>
                              <init-param>
                                   <param-type>java.lang.String</param-type>
                                   <param-value>tiger</param-value>
                              </init-param>
                              <init-param>
                                   <param-type>java.lang.String</param-type>
                                   <param-value>INSERT INTO LOG_JDBC (LogTime, LogLevel, ClassName, LogMessage) VALUES (?)</param-value>
                              </init-param>
                              </init-params>
                         </class-scheme>
          </cachestore-scheme>
          <write-delay>
               {write-delay 0}
          </write-delay>
          <write-batch-factor>
               {write-batch-factor 0}
          </write-batch-factor>
          <write-requeue-threshold>
               {write-requeue-threshold 0}
          </write-requeue-threshold>
     </read-write-backing-map-scheme>
               </backing-map-scheme>
               <autostart>true</autostart>
          </distributed-scheme>
          <proxy-scheme>
               <service-name>Log4JTcpProxyService</service-name>
               <thread-count>20</thread-count>
               <acceptor-config>
                    <tcp-acceptor>
                         <local-address>
                              <address system-property="tangosol.coherence.proxy.host">localhost</address>
                              <port system-property="tangosol.coherence.proxy.port">20170</port>
                         </local-address>
                    </tcp-acceptor>
               </acceptor-config>
               <autostart system-property="tangosol.coherence.proxy.enabled">true</autostart>
          </proxy-scheme>
     </caching-schemes>
</cache-config>
I included coherence-common 2.1.1.288 jar file in front of all of the other jar files. the server can be started up successfully without any error or exceptions, but I don't see any services from Log4J-server-cache-config.xml from the startup console. here is the output from server startup:
C:\coherence\coherence3.7.1\bin>"C:\Progra~1\Java\jdk1.6.0_21\bin\java" -server -showversion ""-Xms512m -Xmx512m"" -Dtangosol.coherence.log.level=9 -Dtangosol.coherence.override=et
lm\etlm-server-config.xml -Dtangosol.coherence.localhost=10.17.134.215 -Dtangosol.coherence.localport=8088 -cp "etlm\coherence-common.jar;C:\coherence\coherence3.7.1\bin\\..\lib\c
oherence.jar;etlm\CacheService.jar;etlm\commons-pool-1.5.6.jar;etlm\commons-dbcp-1.4.jar;etlm\commons-lang3-3.1.jar;etlm\log4j-1.2.16.jar;etlm\ojdbc6.jar;etlm\etlm.jar" com.tangoso
l.net.DefaultCacheServer
java version "1.6.0_21"
Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)
2012-01-03 10:18:21.256/0.461 Oracle Coherence 3.7.1.0 <Info> (thread=main, member=n/a): Loaded operational configuration from "jar:file:/C:/coherence/coherence3.7.1/lib/coherence.
jar!/tangosol-coherence.xml"
2012-01-03 10:18:21.344/0.549 Oracle Coherence 3.7.1.0 <Info> (thread=main, member=n/a): Loaded operational overrides from "file:/C:/coherence/coherence3.7.1/bin/etlm/etlm-server-c
onfig.xml"
2012-01-03 10:18:21.349/0.554 Oracle Coherence 3.7.1.0 <D5> (thread=main, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
2012-01-03 10:18:21.349/0.554 Oracle Coherence 3.7.1.0 <D6> (thread=main, member=n/a): Loaded edition data from "jar:file:/C:/coherence/coherence3.7.1/lib/coherence.jar!/coherence-
grid.xml"
Oracle Coherence Version 3.7.1.0 Build 27797
Grid Edition: Development mode
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
2012-01-03 10:18:21.672/0.877 Oracle Coherence GE 3.7.1.0 <Info> (thread=main, member=n/a): Loaded cache configuration from "file:/C:/coherence/coherence3.7.1/bin/etlm/etlm-server-
cache-config.xml"
2012-01-03 10:18:22.313/1.518 Oracle Coherence GE 3.7.1.0 <D4> (thread=main, member=n/a): TCMP bound to /10.17.134.215:8088 using SystemSocketProvider
2012-01-03 10:18:22.559/1.764 Oracle Coherence GE 3.7.1.0 <D7> (thread=PacketListener1, member=n/a): Growing MultiplexingWriteBufferPool segment '65536' to 2 generations
2012-01-03 10:18:27.622/6.827 Oracle Coherence GE 3.7.1.0 <Info> (thread=Cluster, member=n/a): Created a new cluster "ETLMDIT" with Member(Id=1, Timestamp=2012-01-03 10:18:22.373,
Address=10.17.134.215:8088, MachineId=27829, Location=site:,machine:leon-desk,process:9064, Role=CoherenceServer, Edition=Grid Edition, Mode=Development, CpuCount=8, SocketCount=8)
UID=0x0A1186D700000134A42653A56CB51F98
2012-01-03 10:18:27.626/6.831 Oracle Coherence GE 3.7.1.0 <Info> (thread=main, member=n/a): Started cluster Name=ETLMDIT
WellKnownAddressList(Size=1,
WKA{Address=10.17.134.215, Port=8088}
MasterMemberSet(
ThisMember=Member(Id=1, Timestamp=2012-01-03 10:18:22.373, Address=10.17.134.215:8088, MachineId=27829, Location=site:,machine:leon-desk,process:9064, Role=CoherenceServer)
OldestMember=Member(Id=1, Timestamp=2012-01-03 10:18:22.373, Address=10.17.134.215:8088, MachineId=27829, Location=site:,machine:leon-desk,process:9064, Role=CoherenceServer)
ActualMemberSet=MemberSet(Size=1
Member(Id=1, Timestamp=2012-01-03 10:18:22.373, Address=10.17.134.215:8088, MachineId=27829, Location=site:,machine:leon-desk,process:9064, Role=CoherenceServer)
MemberId|ServiceVersion|ServiceJoined|MemberState
1|3.7.1|2012-01-03 10:18:27.622|JOINED
RecycleMillis=1200000
RecycleSet=MemberSet(Size=0
TcpRing{Connections=[]}
IpMonitor{AddressListSize=0}
2012-01-03 10:18:27.657/6.862 Oracle Coherence GE 3.7.1.0 <D5> (thread=Invocation:Management, member=1): Service Management joined the cluster with senior service member 1
2012-01-03 10:18:27.893/7.098 Oracle Coherence GE 3.7.1.0 <Info> (thread=DistributedCache:ETLMDistributedCache, member=1): Loaded POF configuration from "jar:file:/C:/coherence/coh
erence3.7.1/bin/etlm/etlm.jar!/etlm-pof-config.xml"; this document does not refer to any schema definition and has not been validated.
2012-01-03 10:18:27.929/7.134 Oracle Coherence GE 3.7.1.0 <Info> (thread=DistributedCache:ETLMDistributedCache, member=1): Loaded included POF configuration from "jar:file:/C:/cohe
rence/coherence3.7.1/lib/coherence.jar!/coherence-pof-config.xml"
2012-01-03 10:18:27.995/7.200 Oracle Coherence GE 3.7.1.0 <D5> (thread=DistributedCache:ETLMDistributedCache, member=1): Service ETLMDistributedCache joined the cluster with senior
service member 1
2012-01-03 10:18:28.021/7.226 Oracle Coherence GE 3.7.1.0 <D6> (thread=DistributedCache:ETLMDistributedCache, member=1): Service ETLMDistributedCache: sending PartitionConfig Confi
gSync to all
2012-01-03 10:18:28.275/7.480 Oracle Coherence GE 3.7.1.0 <Info> (thread=Proxy:ExtendTcpProxyService:TcpAcceptor, member=1): TcpAcceptor now listening for connections on 10.17.134.
215:18030
2012-01-03 10:18:28.414/7.619 Oracle Coherence GE 3.7.1.0 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptor, member=1): Started: TcpAcceptor{Name=Proxy:ExtendTcpProxyService:Tcp
Acceptor, State=(SERVICE_STARTED), ThreadCount=20, HungThreshold=0, TaskTimeout=0, Codec=Codec(Format=POF), Serializer=com.tangosol.io.pof.ConfigurablePofContext, PingInterval=0, P
ingTimeout=30000, RequestTimeout=30000, SocketProvider=SystemSocketProvider, LocalAddress=[WRTVDCDVMJPCA33/10.17.134.215:18030], SocketOptions{LingerTimeout=0, KeepAliveEnabled=tru
e, TcpDelayEnabled=false}, ListenBacklog=0, BufferPoolIn=BufferPool(BufferSize=2KB, BufferType=DIRECT, Capacity=Unlimited), BufferPoolOut=BufferPool(BufferSize=2KB, BufferType=DIRE
CT, Capacity=Unlimited)}
2012-01-03 10:18:28.419/7.624 Oracle Coherence GE 3.7.1.0 <D5> (thread=Proxy:ExtendTcpProxyService, member=1): Service ExtendTcpProxyService joined the cluster with senior service
member 1
2012-01-03 10:18:28.422/7.627 Oracle Coherence GE 3.7.1.0 <Info> (thread=main, member=1):
Services
ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_JOINED), Id=0, Version=3.7.1, OldestMemberId=1}
InvocationService{Name=Management, State=(SERVICE_STARTED), Id=1, Version=3.1, OldestMemberId=1}
PartitionedCache{Name=ETLMDistributedCache, State=(SERVICE_STARTED), LocalStorage=enabled, PartitionCount=257, BackupCount=1, AssignedPartitions=257, BackupPartitions=0}
ProxyService{Name=ExtendTcpProxyService, State=(SERVICE_STARTED), Id=3, Version=3.7, OldestMemberId=1}
Started DefaultCacheServer...
It seems to me class XmlElementProcessingNamespaceContentHandler is not invoked.
thanks for the help

Hi Leon,
Your problem might be that you have a custom overrides file so you are not including the overrides file from the Incubator Commons...
2012-01-03 10:18:21.344/0.549 Oracle Coherence 3.7.1.0 <Info> (thread=main, member=n/a): Loaded operational overrides from "file:/C:/coherence/coherence3.7.1/bin/etlm/etlm-server-config.xml" The tangosol-coherence-override file in the Incubator looks like this
<coherence>
    <configurable-cache-factory-config>
        <class-name>com.oracle.coherence.environment.extensible.ExtensibleEnvironment</class-name>
        <init-params>
            <init-param>
                <param-type>java.lang.String</param-type>
                <param-value system-property="tangosol.coherence.cacheconfig">coherence-cache-config.xml</param-value>
            </init-param>
        </init-params>
    </configurable-cache-factory-config>
</coherence>If you do not have the configuration shown above then the Incubator com.oracle.coherence.environment.extensible.ExtensibleEnvironment will not be used as the Cache Factory and most of the Incubator functionality will not work.
You have two options; either make sure that the <configurable-cache-factory-config> section from the Incubator configuration added to your etlm-server-config.xml or make the first part of your etlm-server-config.xml file look like this...
<coherence xml-override="/tangosol-coherence-override.xml">    ...if you do this then your etlm-server-config.xml file will be read in then the tangosol-coherence-override file from the Incubator will be read in too.
JK

Similar Messages

  • Crash issues with elements organizer while running Apple OS 10.9 Mavericks

    Crash issues with elements organizer while running Apple OS 10.9 Mavericks.  Crashes then ask if you want to reopen or not.  Also when you are trying to manuver the page with your mouse things go crazy from a full page edit back to viewing all photos on the site and skipping around from picture to picture.  Unsusable as it is today!

    It is very critical to delete all preferences when you do a major OS X upgrade. You need to go to your username>library>preferences and delete everything pertaining to PSE. To see that library in 10.9, open a finder window, click your user account in the list on the left (the little house with your name), and then click the gear wheel at the top of the window and choose View Options. At the bottom of the list of checkboxes you'll see Library. Turn it on and then you can easily find the preferences folder.

  • Issues with Small Business Switch config

    Hi, I know that if I read the documentation I will come to the answers but I would really like some input from someone with more knowledge than me. I have an issue with Cisco SF300 , one of the Small Business Switches. I have a single interface on my router and I need to separate my internal networks , I thought that one way would be to use VLANs. On my two internal networks one network only has unmanaged D-Link switches, the other has the Cisco SF300 so I did as follows. 
    On the Cisco Switch, all ports default to Trunk ports. I have changed FE1-FE24 and GE1-2 to access ports.
    Created two VLANS and placed FE1-FE24 in VLAN10 (also my management VLAN) , GE3 is a trunk Port for VLAN20 untagged, VLAN 20 uplinks to my DiLink Switches. This way traffic from my unmanaged switches comes in on a trunk port untagged on VLAN20.
    GE4 is a trunk port and I have assigned  VLAN1 untagged, VLAN10 tagged and VLAN20 tagged. VLAN 10 and VLAN 20 then forward to my Router.
    The plan was to connect GE4 to my router however I had two things happen I can not explain.
    Firstly as soon as I connected my D-Link to GE3 the LAN on VLAN20 went down, I could not ping Servers from PCs etc, all devices are connected to the unmanaged D-Links. Secondly the VLAN Assigment changed on GE3 and GE4 , VLANs 10 and 20 disappeared and only the default VLAN was assigned, also under VLAN Settings my VLAN interface state for VLAN20 shows Disabled. Also one of my access ports FE12 keeps changing VLAN.
    Can anyone offer any suggestions as to what might have crashed the LAN and why my VLANs change. I did write my running config to the start up config by the way.
    I added two screen shots. 
    I would seriously appreciate some help.
    Thanks 
    Bob

    Hi Garrett, thanks for your reply to my post, I hope you are well. I called Cisco support, they told me that they could not understand why this was happening and suggested a firmware upgrade, usually something I should have considered right from the beginning. This solved the issue for me.
    Thanks
    Bob

  • Windows 8 Install issues with Elements 6

    Does anyone know if Photoshop Elements 6 is compatible with Windows 8.  Just got a new PC, and Windows 8 is confusing enough.  Now I am running into issues trying to install Elements 6.  It just hangs at the installation window

    Windows 8 is not the officially supported version for Elements 6. I would suggest that you upgrade to Photoshop Elements 11, which is supported. Apart from all the amazing new features over so many versions, the new upgrade has been redesigned to make the process of editing and organizing photos much simpler.
    Thanks,
    Preran

  • Issues with Elements 4.0 in Mac

    I don't know what I accidentally mucked around with, but my Photoshop Elements will no longer read or save .png files, and my Save for Web option is no longer clickable. In addition, it is now taking at least twice as long to open up when I click on it... It seems to stick on the "scanning for presets" message for a decent while.
    If whatever I did wasn't irreparable, I'd really love knowing how to fix it. I'm pretty well an idiot when it comes to computers, but I'm pretty decent at following instructions.

    First of all, I would go to your username>library>preferences and delete:
    com.adobe.Photoshop.Elements.plist
    Adobe PSE 4.0 settings
    PSE 4.0 paths
    Save for web preferences
    Opera preferences
    Repair permissions and try again.

  • Issues with running controller-agent config on OLT .

    Hi All,
    I have 3 machines total. One is windows 2008 (controller / server) and other two are RHEL 5.2(agents). I have the same script in all 3 locations. Running the scripts individually in all 3 environments works fine. The scripts read the local databanks which is csv that has the paths for JAVA_HOME to execute jar and generate secret key. From controller(windows box) I clicked on Manage --> Systems and added the agent details and was successfully done. From controller, I added the script, set the system pointing to agent's name and ran the test, the scripts fail at the point where the secret key gets generated using the Jar. My guess is controller is able to read the local path from CSV and not able to generate the secret keys using local java_home and jar. Can anyone kindly comment on this issue.
    Thanks,
    Nags.

    We are running SCOM 2012 server and have deployed the agent successfully to a number of Red Hat Linux servers. I am having an issue on about a quarter of the hosts, in that they appear as HEALTHY but are Grayed out and not green. When I look at the /var/opt/microsoft/scx/log/omiserver.log
    file I see:
    WARNING: wsman: authentication failed for user scom2012
    I have verified that the system account is setup with the correct password and the runas account is setup with the correct password (i am able to deploy the agent from the SCOM server using it, so the passwords DO match).
    Any ideas? 
    I've seen this on a few systems here when the agent has been upgraded but the old agent process does not die off.  Just to rule it out, pick a node, make sure there are no instances of scxcimserver or scxcimprovagt and then start the agent and
    see if the issue goes away.  I've also seen wsman authentication failures related to the libssl issue that was fixed in yesterday's release.

  • Installation issue with Elements/Premiere 12 bundle

    I haven't been able to install the Elements/Premiere 12 bundle I recently purchased at a Best Buy Store.   The installation screen says invalid serial number when I entered the serial number on the back of the box.   I also tried using the included redemption code to request a serial number, and got an invalid redemption code response.
    Using Windows 8.1, Dell XPS 8700, and turned off the Anti Virus during installation.

    there's no serial number/redemption code on the outside of any adobe product boxes (except some older products had a number under a sticker so you could determine, before purchase, if there had been tampering).
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • Issues with tftp and running config backups.

    I just recently setup Solar Winds tftp and am using the following commands below to backup my running config to tftp. They do upload to the tftp but every day as a new config is written it's in a numbered seq. (ie-3900-switch backup 1, 3900-switch backup 2, 3900-switch backup 3, etc). I've checked all the settings on the tftp, and they all look correct. Is there something I'm missing??? I would like the daily backup to overwrite the previous one.
    Thanks in advance!
    archive
    log config
    logging enable
    logging size 200
    notify syslog contenttype plaintext
    hidekeys
    path tftp://DEVICE-IP//DEVICE-HOST-NAME
    time-period 1440

    Hi,
    as a workaround you coul use kron instead of the archive feature.
    Here's an example
    kron occurrence backup at 00:00 sun recurring
    policy-list backup
    kron policy-list backup
    wr
    show running-config | redirect tftp:///
    Regards
    Alain
    Don't forget to rate helpful posts.

  • CSS and JS version control is causing issues with the Application Cache.

    Hi there,
    I am creating a Web App for use on an iPad and I have been using Adobe Muse to do this.
    The Web App needs to work offline for the most part so I have been using the Application Cache in HTML5 to do this. Everything is caching correctly to the iPad (Safari Browser), however, after a while, the browser is unable to retrieve the CSS and JS complonents of the site from the Application Cache. I have deduced after much mucking around, that the HTML references to the CSS and JS files have version control stuck on the end of it. This seems to work fine when online as the version number after the ? is ignored by the browser.
    When the browser is accessing the CSS and JS files from the application cache, it appears to require the version control number as well. This is where the entire site falls over. It sometimes takes about a day of being offline but eventually, the CSS and JS files must be purged from the browser cache and then they are unable to be resolved from the Application Cache.
    This is really annoying as I am having to go through every HTML file to remove the CSS and JS version numbers.
    Does anyone know if this Muse feature can be switched off (no version controlling on JS and CSS file) or will I have to use another product such as Dreamweaver?

    just to let you know, it turns out not to be the JVM (at least directly).
    the real problem seems to be the order of loading specific dll's. I noticed that the only differences (other than the blow up) was that MSVCRT.dll was being loaded far earlier than without the dummy dll.
    I removed the dummy dll I mentioned before, and went into the project workspace properties. I moved the .lib file for the dll that was actually pulling MSVCRT in to be first in the list, then in the driver program moved the .lib file for the new dll to be first in it's list.
    Everything worked.
    I'm not sure the exact bug there, but my current thought is: The MSVCRT.dll must be loaded prior to the .NET runtime dll (MSVCRT70) or say bye-bye.

  • Split cache config file support in 12.1.2?

    With 3.7.1 you could use the coherence-common library from incubator 11 to split cache config files.
    This was done with the introduce-cache-config XML element:
    <?xml version="1.0"?>
    <cache-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://xmlns.oracle.com/coherence/coherence-cache-config"
    xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-cache-config coherence-cache-config.xsd"
    xmlns:element="class://com.oracle.coherence.environment.extensible.namespaces.XmlElementProcessingNamespaceContentHandler"
    element:introduce-cache-config="cache-config-1.xml, cache-config-2.xml, cache-config-3.xml">
    </cache-config>
    But this will not be available in incubator 12, the classes used for that will not be ported from incubator 11 (Coherence 3.7.x) to incubator 12 (Coherence 12.x):
    http://coherence.oracle.com/download/attachments/14188570/Incubator+Update.pdf?version=2&modificationDate=1353937318977
    How to achieve this with 12.1.2?

    Hi,
    It is still possible to do this as I did it with the 12.1.2 beta and a beta of Incubator 12 so unless either of those changed at the last minute you should be able to still import cache configuration files.
    The top of your XML needs to look something like this...
    <?xml version="1.0"?>
    <cache-config xmlns="http://xmlns.oracle.com/coherence/coherence-cache-config"
                  xmlns:element="class://com.oracle.coherence.common.namespace.preprocessing.XmlPreprocessingNamespaceHandler"
                  element:introduce-cache-config="config/cluster.xml">
    where this file is importing the "config/cluster.xml" file.
    If you use custom name spaces in you configuration files then there is a bit more work to do as the XmlPreprocessingNamespaceHandler only knows how to merge the standard Coherence XML so you need to add extra code to you own namespace handlers. Specifically you need to implement...
    public void mergeConfiguration(ProcessingContext processingContext, String sFromURI, XmlElement element, XmlElement xmlIntoCacheConfig, QualifiedName originatedFrom)
    In the implementation you need to merge your custom XML (the element parameter) across to the main XML (the xmlIntoCacheConfig parameter). A very simple implementation of this would be...
    @Override
    public void mergeConfiguration(ProcessingContext processingContext, String sFromURI, XmlElement element, XmlElement xmlIntoCacheConfig, QualifiedName originatedFrom) {
        // clone the element to merge
        XmlElement xmlMergeElement = (XmlElement) element.clone();
        // annotate the origin of the merging element
        xmlMergeElement.addAttribute(originatedFrom.getName()).setString(sFromURI);
        // Add the cloned element to the XML configuration
        xmlIntoCacheConfig.getElementList().add(xmlMergeElement);
    JK

  • Aggregating cache-config.xml files

    I'd like to add to, rather than override, my cache config files. How do I go about that? Do I have to deal with XmlElements of the DefaultConfigurableCacheFactory directly, or is there some simpler way to do this?
    Thanks ---

    Hi Cindy,
    There is nothing in the core product but if you use the Coherence Incubator Commons then you can do it. http://coherence.oracle.com/display/INC10/coherence-common
    You need to include the coherence-commons jar in your class path then you can do this...
    <cache-config
         xmlns="http://xmlns.oracle.com/coherence/coherence-cache-config"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-cache-config coherence-cache-config.xsd"
            xmlns:element="class://com.oracle.coherence.environment.extensible.namespaces.XmlElementProcessingNamespaceContentHandler"
            element:introduce-cache-config="coherence-common-cache-config.xml">
        <caching-scheme-mapping>
        </caching-scheme-mapping>
        <caching-schemes>
        </caching-schemes>
    </cache-config>The above config uses the element namespace from the incubator that allows you to add the element:introduce-cache-config attribute to the cache-config tag which imports the specified cache config file. http://coherence.oracle.com/display/INC10/element-namespace
    JK

  • Issues with Photoshop Elements 12

    I am already using Photoshop CS6 and was informed that I can also purchase and install Photoshop Elements 12 on the same PC (Windows 7).
    This I have now done but after some installation issues I am now experiencing a problem with the camera raw part of Elements. I am receiving an error message when I try and send the edited raw file to the main Elements program. The strange part is that if I open the same raw file again in Elements camera raw and try transfering again it works OK. Can there be a conflict somewhere?

    Hi,
    Could you tell if you are facing this issue with Elements Organizer or Editor?
    For Editor not launching,
    If on Windows, could you follow the steps shared at: Photoshop Elements (PSE) knowledge base.
    For MAC, Photoshop Elements (PSE) knowledge base.
    For Organizer not launching,
    For Windows, Photoshop Elements (PSE) knowledge base.
    For MAC, Photoshop Elements (PSE) knowledge base.
    Regards,
    vaishali

  • Issues with cache updates

    Hi ,
    I have some issues with runtime xi cache update.
    i tested the RFC dest for connection RFC Dest - INTEGRATION_DIRECTORY_HMI.
    that failed with HTTP 500 internal server error .
    I even tried to update the cache from TCode - sxi_cache
    the error i got there was
    Prefix number: entry missing for system XI1 client 200
    If anyone has any idea as to why is such an error occuring
    Thanks
    Nikhil

    Hi
    <i>that failed with HTTP 500 internal server error .</i>
    is not an error
    Please can you check on this thread:
    XI Runtime cache error: Cache contents are obsolete
    Regards
    Vijaya

  • Can create new cache with new cache config xml to existing cache server?

    Hi,
    I have a question regarding coherence cache.
    currently there is coherence cache server running with its own cache config file.
    Can I create another cache with new cache config file?
    If so, do I need add my own cache config file and pof file to the server?
    so during cache server start up, it can load cache config and pof config file?
    Thanks for the help.
    Regards
    Julia

    Yes, when you want to load your own cache configuration you can use something like
    export CLASSPATH=coherence.jar
    java -Xms512m -Xmx512m -Dtangosol.coherence.cacheconfig=my-cache-config.xml com.tangosol.net.DefaultCacheServerby using the system parameter tangosol.coherence.cacheconfig you can add your own cache configuration. Note that
    the POF configuration is loaded when you are referring to it in your cache configuration.

  • Directory Caching issue with Cisco Jabber client for Windows

    Hi ,
    I am facing cache issue with Cisco Jabber client for Windows. If I do any change related to modification or deletion of contacts in Active Directory/ Callmanager, it does not reflect in the Jabber. Because jabber takes the contacts from the locally stored cache file in the Windows system.
    Every time I have to remove the cache file to overcome this issue, practically it's not possible to do the same with all the Widows users. As, if any employee leaves the company and still I can see his contact appears in the "Cisco Jabber client". I have not seen this issue with Android/Apple iOS.
    Is there any automated way to remove the cache file? 
    Here is the detail of CUCM,Presence and Jabber.
    CUCM version: 9.1.x
    Presence          : 9.1.X
    Jabber              : 10.5 and 10.6

    Hello
    On our environment we had to install a dedicated Microsoft Certificate Authority "just for Cisco Jabber usage" to house the
    Network Device Enrollment Service.
    Our certificate for the CUPS were generated on this Certification Authority too.
    I discussed this certificate matter with my colleagues this afternoon and nobody seems to remember how these certificates were deployed into the
    Enterprise Trust store for the users.
    But I think they asked all 400 users to accept the 3 certificates by answering "yes" to the popup instead of using a script deployed by GPO...
    I wish you success with that deployment and really hope you have a technical partner that *Knows* this subject.
    Our partner left us alone with that unfortunately.
    Florent
    EDIT: If the "Certutil script method" works, please let me know. This could be useful in our own deployment.

Maybe you are looking for

  • Issue opening Web Analysis report

    I create, with buttons, links between reports in web analysis. Sometimes when I click on one of them in workspace, it doesn't open linked report, but another one. Furthermore this last one is automatically saved as the previous report, and I can't op

  • FAQ: What are the JDI (Just Do It) features in Photoshop?

    What are JDI features?  They're "Just Do It" features: small features that don't take a lot of time to implement or test and seem like an obvious improvement. JDI list for Photoshop CC JDI features in Photoshop CS6, by category: Automation Contact Sh

  • Preventing my 7 year old from seeing (on his Ipad) what I see on my Iphone

    So, I am surfing for Christmas gifts.... maybe some other adult type gifts. I signed my sons I pad up to my Itunes account. He is getting access to all my apps, Icloud whatever. How do I stop it? I have no problem creating his own apple ID and email

  • Changes to Jpeg not Showing in other programs

    I made changes to a JPEG using bridge and the raw filter and notice it does not show those changes in other programs. I usually use DNG's and notice that other programs show the image correctly modified, I think there is a new thumbanil embedded. Do

  • Object lock for table T001B / view V_T001B (tcode OB52)

    Hi, The table T001B or view V_T001B is for Opening and Closing FI periods. We have given the transaction to Business users who are located in various parts of the world. During month end each user is trying to open the period for his company. However