LocalStorage

In our html content we are using localStorage to store data usefull for the content. It usually works properly but every time the kiosk goes in background and back on top, the localStorage does not return saved data. At this point if we browse one page back and then return on the page that contain HTML content the localStorage returns the correct data.
It seems that the localStorage does not work when the page that contain HTML content is open when app is put in background and recalled on top.
In old version of adobe content viewer we did not this problem: is it a bug? Is the way to store data changed in the last release?

Dear Neil, thank you for your answer but our problem did not get resolved with the last update of the contet viewer downloaded on February 3.
Our Problem is:
In our html content we are using localStorage to store data usefull for the content. It usually works properly but every time the kiosk goes in background and back on top, the localStorage does not return saved data. At this point if we browse one page back and then return on the page that contain HTML content the localStorage returns the correct data.
It seems that the localStorage does not work when the page that contain HTML content is open when app is put in background and recalled on top.
In old version of adobe content viewer we did not this problem: is it a bug? Is the way to store data changed in the last release?
Thank you very much
TKart staff

Similar Messages

  • LocalStorage is not working in indesign cc extension

    Hi All,
    I planned to store some user preferences for my extension so I thought to use localStorage class to do this but it fails when i closed the extension and next time when open the extension and tries to get the last saved value then it returns NULL.
    Supose while my extension is running I set a key as follows
    window.localStorage.setItem("username", "Alam");
    now close the extension and opened it again and used following code to retrieve last saved value
    window.localStorage.getItem("username"); but it returns NULL
    Regards,
    Alam

    Are you using InDesign CC 2014 SDK?
    Check the sdk path.

  • Questions related to the localstorage=false client restarted and join back

    Hi, We are using the coherence 3.4.2 version. I notified a strange problem in our application, related to the coherence. I am posting here seeking for help. We are using JDK 1.6.0_16 on Linux 64 OS.
    To simplify the problems, let me just say that we have 3 JVM running as now. One is we called the data server, starting with following JVM settings:
    java -Xms1G -Xmx1G -server -Dlog4j.configuration=log4j.xml
    -Dtangosol.coherence.cacheconfig=/xxx/coherence_config.xml
    -Dtangosol.coherence.ttl=0
    -Dtangosol.coherence.log=log4j
    -Dtangosol.coherence.clusterport=5511
    -Dtangosol.coherence.distributed.localstorage=true The other 2 JVMs will use the same JVM settings as above, except -Dtangosol.coherence.distributed.localstorage=false.
    When I started the all servers in this order: data server -> one client jvm -> the other client jvm, I can see they all join into one cluster, and our application works fine.
    Now, if I shutdown client1 and client2, and restarted them, the problems comes:
    1) From the coherence log, I can see the client1 and client2 joined back in the cluster.
    2) But when client1 is trying to get cache using the following api:
    NamedCache cache = CacheFactory.getCache("cacheName");
    Object o = (Object)cache.get(id);The cache object is there, but without any elements in it. So Object o will always to Null. But I know in this case, there is one element in the case, which I just put in before restarted client 1 and 2.
    So in this case, I can get a cache object back, but without any element into it. This is not the case before the JVM restarted.
    3) In the above case, the cache is defined as a replicated cache as following:
              <cache-mapping>
                   <cache-name>cacheName</cache-name>
                   <scheme-name>ReplicatedScheme</scheme-name>
              </cache-mapping>
              <replicated-scheme>
                   <scheme-name>ReplicatedScheme</scheme-name>
                   <backing-map-scheme>
                        <local-scheme>
                             <scheme-ref>unlimited-backing-map</scheme-ref>
                        </local-scheme>
                   </backing-map-scheme>
              </replicated-scheme>
              <!-- Backing map scheme definition used by all the caches that do not require any eviction policies -->
              <local-scheme>
                   <scheme-name>unlimited-backing-map</scheme-name>
              </local-scheme>4) I tried to use the SimpleCacheExplorer example coming with the coherence to see if I can reproduce this case. But I can not. I use the same coherence.xml as our application. I used the same cache name in the SimpleCacheExplorer as in our application. I started 3 JVMs, one with localstorage=true, the other 2 with localstorage=false. Everytime, I restarted the other 2 JVMs, it can join back the cluster and get the value for the original key. So I am not sure which part in our application breaks this.
    5) I list the coherence log below from our application. I added 2-3 lines comments just to list what happened then.
    Any idea or hints about why this is happenning? Thanks for your help.

    Here is the log:
    ############ start the data server
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 INFO   2009-11-19 14:55:07.132/65.613 Oracle Coherence 3.4.2/411 <Info> (thread=http-8080-1, member=n/a): Loaded operational configuration from resource "jar:file:/datacloud/trunk/install/apache-tomcat-6.0.18/webapps/datacloud/WEB-INF/lib/coherence.jar!/tangosol-coherence.xml"
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 INFO   2009-11-19 14:55:07.187/65.668 Oracle Coherence 3.4.2/411 <Info> (thread=http-8080-1, member=n/a): Loaded operational overrides from resource "jar:file:/datacloud/trunk/install/apache-tomcat-6.0.18/webapps/datacloud/WEB-INF/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 DEBUG  2009-11-19 14:55:07.187/65.668 Oracle Coherence 3.4.2/411 <D5> (thread=http-8080-1, member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 DEBUG  2009-11-19 14:55:07.190/65.671 Oracle Coherence 3.4.2/411 <D5> (thread=http-8080-1, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 DEBUG 
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-11-19 14:55:08,356 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:08.351/863.022 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member(Id=2, Timestamp=2009-11-19 14:55:08.15, Address=10.241.59.246:8089, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30265, Role=ApacheCatalinaStartupBootstrap) joined Cluster with senior member 1
    2009-11-19 14:55:08,360 Coherence  Logger@9230760 3.4.2/411 INFO   2009-11-19 14:55:08.360/66.841 Oracle Coherence GE 3.4.2/411 <Info> (thread=Cluster, member=n/a): This Member(Id=2, Timestamp=2009-11-19 14:55:08.15, Address=10.241.59.246:8089, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30265, Role=ApacheCatalinaStartupBootstrap, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1) joined cluster "cluster:0xC3E1" with senior Member(Id=1, Timestamp=2009-11-19 14:40:47.04, Address=10.241.59.246:8088, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:29459, Role=NokiaDcServerDataServer, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1)
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service ExpiryService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSearchService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistributedCache with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLRUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLFUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallHYBRIDService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLRUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLFUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumHYBRIDService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLRUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLFUService with senior member 1
    2009-11-19 14:55:08,387 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeHYBRIDService with senior member 1
    2009-11-19 14:55:08,682 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:08.681/863.352 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member 2 joined Service DistributedCache with senior member 1
    2009-11-19 14:55:08,686 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.686/67.167 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache joined the cluster with senior service member 1
    2009-11-19 14:55:08,690 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:08.686/863.357 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=1): Service DistributedCache: sending ServiceConfigSync containing 258 entries to Member 2
    2009-11-19 14:55:08,693 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.693/67.174 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache: received ServiceConfigSync containing 258 entries
    2009-11-19 14:55:09,593 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:09.593/864.264 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): TcpRing: connecting to member 2 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=8089,localport=37475]}
    2009-11-19 14:55:09,597 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:09.596/68.077 Oracle Coherence GE 3.4.2/411 <D5> (thread=TcpRingListener, member=2): TcpRing: connecting to member 1 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=37475,localport=8089]}
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 INFO   2009-11-19 14:55:12.508/172.386 Oracle Coherence 3.4.2/411 <Info> (thread=pool-2-thread-1, member=n/a): Loaded operational configuration from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence.xml"
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 INFO   2009-11-19 14:55:12.514/172.392 Oracle Coherence 3.4.2/411 <Info> (thread=pool-2-thread-1, member=n/a): Loaded operational overrides from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 DEBUG  2009-11-19 14:55:12.514/172.392 Oracle Coherence 3.4.2/411 <D5> (thread=pool-2-thread-1, member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 DEBUG  2009-11-19 14:55:12.517/172.395 Oracle Coherence 3.4.2/411 <D5> (thread=pool-2-thread-1, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 DEBUG 
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-11-19 15:04:23,811 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.811/62.250 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLRUService with senior member 1
    2009-11-19 15:04:23,811 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.811/62.250 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLFUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.811/62.250 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallHYBRIDService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLRUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLFUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumHYBRIDService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLRUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLFUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeHYBRIDService with senior member 1
    2009-11-19 15:04:23,946 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:23.946/1418.617 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member 2 joined Service DistributedCache with senior member 1
    2009-11-19 15:04:23,953 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.952/62.391 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache joined the cluster with senior service member 1
    2009-11-19 15:04:23,955 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:23.953/1418.624 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=1): Service DistributedCache: sending ServiceConfigSync containing 259 entries to Member 2
    2009-11-19 15:04:23,959 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.959/62.398 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache: received ServiceConfigSync containing 259 entries
    2009-11-19 15:04:24,513 Coherence  Logger@879081272 3.4.2/411 INFO   2009-11-19 15:04:24.351/181.083 Oracle Coherence 3.4.2/411 <Info> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Loaded operational configuration from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence.xml"
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 INFO   2009-11-19 15:04:24.355/181.087 Oracle Coherence 3.4.2/411 <Info> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Loaded operational overrides from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 DEBUG  2009-11-19 15:04:24.355/181.087 Oracle Coherence 3.4.2/411 <D5> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 DEBUG  2009-11-19 15:04:24.358/181.090 Oracle Coherence 3.4.2/411 <D5> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 DEBUG 
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-11-19 15:04:24,546 Coherence  Logger@879081272 3.4.2/411 INFO   2009-11-19 15:04:24.546/181.278 Oracle Coherence GE 3.4.2/411 <Info> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Loaded cache configuration from file "/datacloud/trunk/install/conf/coherence_config.xml"
    2009-11-19 15:04:24,760 Coherence  Logger@879081272 3.4.2/411 WARN   2009-11-19 15:04:24.760/181.492 Oracle Coherence GE 3.4.2/411 <Warning> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): UnicastUdpSocket failed to set receive buffer size to 1428 packets (2096304 bytes); actual size is 89 packets (131071 bytes). Consult your OS documentation regarding increasing the maximum socket buffer size. Proceeding with the actual value may cause sub-optimal performance.
    2009-11-19 15:04:24,786 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:24.785/1419.456 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): TcpRing: connecting to member 2 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=8089,localport=48995]}
    2009-11-19 15:04:24,787 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:24.787/63.226 Oracle Coherence GE 3.4.2/411 <D5> (thread=TcpRingListener, member=2): TcpRing: connecting to member 1 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=48995,localport=8089]}
    2009-11-19 15:04:24,882 Coherence  Logger@879081272 3.4.2/411 DEBUG  2009-11-19 15:04:24.882/181.614 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-11-19 15:04:25,118 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:25.112/1419.783 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member(Id=3, Timestamp=2009-11-19 15:04:24.917, Address=10.241.59.246:8090, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30657, Role=NokiaDcServerBuildBuildServer) joined Cluster with senior member 1
    2009-11-19 15:04:25,118 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:25.115/63.554 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=2): Member(Id=3, Timestamp=2009-11-19 15:04:24.917, Address=10.241.59.246:8090, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30657, Role=NokiaDcServerBuildBuildServer) joined Cluster with senior member 1
    2009-11-19 15:04:25,120 Coherence  Logger@9242415 3.4.2/411 INFO   2009-11-19 15:04:25.120/181.852 Oracle Coherence GE 3.4.2/411 <Info> (thread=Cluster, member=n/a): This Member(Id=3, Timestamp=2009-11-19 15:04:24.917, Address=10.241.59.246:8090, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30657, Role=NokiaDcServerBuildBuildServer, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1) joined cluster "cluster:0xC3E1" with senior Member(Id=1, Timestamp=2009-11-19 14:40:47.04, Address=10.241.59.246:8088, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:29459, Role=NokiaDcServerDataServer, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1)
    2009-11-19 15:04:25,127 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.127/181.859 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member(Id=2, Timestamp=2009-11-19 15:04:23.541, Address=10.241.59.246:8089, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30753, Role=ApacheCatalinaStartupBootstrap) joined Cluster with senior member 1
    2009-11-19 15:04:25,131 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.131/181.863 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service ExpiryService with senior member 1
    2009-11-19 15:04:25,131 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.131/181.863 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSearchService with senior member 1
    2009-11-19 15:04:25,132 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistributedCache with senior member 1
    2009-11-19 15:04:25,132 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLRUService with senior member 1
    2009-11-19 15:04:25,132 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLFUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallHYBRIDService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLRUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLFUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumHYBRIDService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLRUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLFUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeHYBRIDService with senior member 1
    2009-11-19 15:04:25,134 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.134/181.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 2 joined Service DistributedCache with senior member 1
    2009-11-19 15:04:25,219 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:25.219/1419.890 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member 3 joined Service ReplicatedCache with senior member 3
    2009-11-19 15:04:25,220 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:25.220/63.659 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=2): Member 3 joined Service ReplicatedCache with senior member 3
    2009-11-19 15:04:25,223 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.223/181.955 Oracle Coherence GE 3.4.2/411 <D5> (thread=ReplicatedCache, member=3): Service ReplicatedCache joined the cluster with senior service member 3
    2009-11-19 15:04:26,310 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:26.309/183.041 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=3): TcpRing: connecting to member 1 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=8088,localport=58713]}
    2009-11-19 15:04:26,312 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:26.312/1420.983 Oracle Coherence GE 3.4.2/411 <D5> (thread=TcpRingListener, member=1): TcpRing: connecting to member 3 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=58713,localport=8088]}

  • LocalStorage in iBooks without iTunes Author?

    Dear Community
    I'm trying to find a way to make localStorage work for a regular ePub3 file. The goal is to create an chapter1.xhtml, that will offer a quiz with a number of radio buttons and and a button that calls a JS funcion to store the value of those clicked buttons into an Array in localStorage (this works so far). On chapter2.xhtml there will be a button who calls this Array and will show the stored values via alert.
    I finally made it work for readium and all available browsers. Sadly iBooks won't give me the chance to see if this all works, because it's not showing any alert at all. I also tried to write the values into an exisiting <p> - Section via an other JS function. No way to proof this, because iBooks won't show anything.
    Does anyone have a solution for my problem? That would be awesome.

    Sorry, but you posted in the notebook iBook forum, and not the eBook forum for the iBook eBook format.  Here's where to post for the latter:
    iBooks for iOS for iPad/iPod Touch/iPhone eBooks, and iBooks for Mac.

  • F$Live.SiteContent.Messenger/4.2.64010/release/Microsoft.Live.Core.LocalStorage.FF.js:39

    Hello,
    when working within msn mail firefox stops then appears a widows telling about script problems and that is what is tistited:
    F$Live.SiteContent.Messenger/4.2.64010/release/Microsoft.Live.Core.LocalStorage.FF.js:39

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • "localStorage.setItem" is 1000 times slower than in IE,Opera,Chrome.Is it normal?

    Hi.
    If you try to open this HTML page in Firefox 3.6.8, Firefox is 1000 times slower than IE 8,Opera 10 and Chrome. I cannot believe that localStorage.setItem is so slow in Firefox.
    Is there a solution ?
    Thanks in advance
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Storage test</title>
    </head>
    <body>
    <script type="text/javascript">
    var TestValue = "1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890";
    for (var i = 0; i < 1000; i++) {
    localStorage.setItem(i, TestValue);
    </script>
    </body>
    </html>

    Hi.
    If you try to open this HTML page in Firefox 3.6.8, Firefox is 1000 times slower than IE 8,Opera 10 and Chrome. I cannot believe that localStorage.setItem is so slow in Firefox.
    Is there a solution ?
    Thanks in advance
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Storage test</title>
    </head>
    <body>
    <script type="text/javascript">
    var TestValue = "1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890";
    for (var i = 0; i < 1000; i++) {
    localStorage.setItem(i, TestValue);
    </script>
    </body>
    </html>

  • LocalStorage reach maximum size while there are only 800 Kb data in it.

    I met an localStorage exception when I call API "localStorage.setItem()"<br>
    we are developing a web site, we used host like aaaa.bb.com the case is :<br>
    the local storage has about 560KB Data in localstorage and then I want to set an item into localStorage, the size of the new item is 301KB<br>
    then the browser throw exception, the content of the exception is as follows:<br>
    <br>
    The way I used to test the size of localStorage is: JSON.stringify(localStorage).length<br>
    <br>
    "Persistent Storage maximum size reached" code:"1014" nsresult: "0x80530f6(NS_ERROR_DOM_QUOTA_REACHED)"<br><br>
    I tested this function in other machines and in chrome, this exception will not occur, I want to know why this exception occurs on the machine, if there is any settings in firefox? or if there is any relationship with the cache size?

    the root cause is found.
    the reason is that aaa.domain.com and bbb.domain.com, the two sub domain will share the same space of localStorage because they are under the same top level domain domain.com.
    aaa.domain.com reach maximum size when there is only 500KB data in localStorage because there is already 4.5MB data in localStorage of bbb.domain.com.

  • Minimum configuration for localstorage=false nodes

    We have a grid that provides data for multiple clients. Considering that the client is started with localstorage=false, and all requests are passed to the data nodes, what is the minimum cache-configuration that is required by the clients to participate in the cluster.
    Edited by: tfanshteyn on Jul 31, 2009 6:54 AM

    It is alright to have the following scheme defined in storage-enabled member:
    <distributed-scheme>
    <scheme-name>app-scheme-1</scheme-name>
    <service-name>DistributedScheme1</service-name>
    <backup-count>1</backup-count>
    <backing-map-scheme>
    <read-write-backing-map-scheme>
    <internal-cache-scheme>
    <local-scheme>
    </local-scheme>
    </internal-cache-scheme>
    <cachestore-scheme>
    <scheme-name>jdbc</scheme-name>
    <class-scheme>
    <class-name>misc.MyCacheStore</class-name>
    </class-scheme>
    </cachestore-scheme>
    <write-delay-seconds>{delay 5}</write-delay-seconds>
    </read-write-backing-map-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
    </distributed-scheme>
    and client (storage-disabled) with:
    <distributed-scheme>
    <scheme-name>app-scheme-1</scheme-name>
    <service-name>DistributedScheme1</service-name>
    <autostart>true</autostart>
    </distributed-scheme>
    But as Aleks has mentioned in the previous reply it is much easier to manage and distribute single cache configuration even though there a quite a few configs that can be different. Any "data" specific settings like CacheStore will only trigger where that Entry is, so on a localstorage=false nodes these settings are not required. But keep in mind as the applications grow managing multiple cache configurations can become quite problematic.

  • LocalStorage object available in iBooks?

    Does anyone know if the local storage object is available in html widgets? Can we store and retrieve data in html widgets inside iBooks?

    Rhys_Jones wrote:
    Here is some sample code that stores and gets some text from localStorage:
    <textarea id="sometext" rows="15" cols="100"></textarea>
    </br>
    <input type="submit" value="Save to localStorage" onclick="save_localstorage()" />
    <script type="text/javascript">
        var sometext = localStorage.sometext;
        if (sometext) {
            document.getElementById("sometext").value = sometext;
        function save_localstorage() {
            localStorage.sometext = document.getElementById("sometext").value;
    </script>
    I've also placed it in an example widget for you to download at:
    http://www.classwidgets.com/static/LocalStorageTest.wdgt.zip
    @Rhys: Can you confirm if this still works?  I'm also having trouble with localStorage - I inserted the widget you supplied and it fails to work. If I close the widget and reopen it, the storage is wiped. I'm using iBooks Author 1.1 (190) and iBooks 2.1 (876) on an iPad 2.
    Thanks.

  • How do I enable localStorage in Safari on iOS7?

    How do I enable localStorage in Safari on iOS7?
    When a web page loads javascript is able to write to localStorage, and read from localStorage. However once the page reloads or URL changes, all data stored in localStorage disappears. "Settings -> Safari -> Advanced -> Website Data" shows no data for the domain.
    Is there a setting to enable persistant localStorage on iOS7?
    (i'm not in Private Browsing mode, and this works in Safari on PC, Mac and iOS 6.1.3)
    Many thanks.

    This bug was fixed when upgrading from iOS 7.0.2 to iOS 7.0.3

  • LocalStorage not storing between sessions

    Hi,
    When I load panel whitch conteining below HTML code:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
       $('#saveButton').click(function(){
       if(window.localStorage){
         var s = $('#text1').val();
         localStorage.setItem("key1", s);
              $('#readButton').click(function(){
         if(window.localStorage){
             window.alert( localStorage.getItem("key1") );
    </script>
    </head>
    <body>
    <h3>Web Storage</h3>
    <h4>Save data to localstrage</h4>
    <div>
    <input type="text" id="text1">
    <button type="button" id="saveButton">Save</button>
    </div>
    <h4>Read from localstrage</h4>
    <div>
    <button type="button" id="readButton">Read</button>
    </div>
    </body>
    </html>
    It works properly. But once the panel closed or host application closed, stored values are cleared. It seems to localstrage not keep across sessions.
    Web DB also work fine in single transaction, but not keep Database.
    Is there any way to keep storages?
    Thanks,

    Hi,
    I'm happy to found localstrage work fine. indexedDB and WebDB also work in CC HTML extensions.
    Below images are some test shots:
    Ten.

  • "SCRIPT5: Access is denied" error when accessing web sites using LocalStorage

    We are having an issue with Internet Explorer 10 affecting users on a number of our Windows 8 workstations. When a user visits a web site that uses the Local Storage feature of HTML5, the page is not displayed correctly. For example, if you visit this page:
    http://jsfiddle.net/xFtQR/
    You should see text in the grey boxes in the lower-right hand corner if everything is working. For the affected users, nothing is displayed. In addition, if you open the F12 Developer Tools and reload the page, the following error message is displayed: "SCRIPT5:
    Access is denied.". It appears the LocalStorage feature is broken for these users.
    From the troubleshooting I've done so far, I've determined that this issue does not affect the Local Administrator account on these computers, but it does affect any domain user and any new local user I create, whether the local user is in the Administrators
    group or not. This leads me to believe the issue may be related to the default user profile in the image that was applied to these computers.
    Other observations:
    Performing a complete reset of Internet Explorer settings (from Tools > Internet Options... > Advanced) does not resolve the issue
    These sites do work correctly after turning off Protected Mode for the Internet Zone (from Tools > Internet Options... > Security) 
    These sites also work correctly when InPrivate Browsing is turned on
    I've tried using Process Monitor to determine whether access is being blocked to a folder. On a working computer, iexplore.exe creates a file within a folder at C:\Users\username\AppData\LocalLow\Microsoft\Internet Explorer\DOMStore. I can't see
    anything on an affected computer that would prevent IE from creating this folder, as the security settings on the folder all appear to be correct.
    The location of this folder appears to be stored in the registry at HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\LowCache\Extensible Cache\DOMStore. I've tried copying this key from a working computer and blanking
    it out entirely to have IE recreate it, but neither resolved the issue. I've even gone as far as to try and compare an export of the registry from the default user profile from a working system and an affected system but I haven't been able to pinpoint any
    differences which I thought might be relevant.
    I've tried the "Internet Explorer Performance" and "Internet Explorer Safety" troubleshooters in the Control Panel.
    Here are some links to articles on other sites which make reference to the same (or a similar) issue:
    http://answers.microsoft.com/en-us/ie/forum/ie10-windows_7/ie10-script5-access-is-denied/e87bdb30-7f2a-4510-bfa3-a22b995f777b
    http://community.spiceworks.com/topic/357825-ie10-script5-access-is-denied
    https://github.com/meteor/meteor/issues/1291
    Unlike these other cases, deleting an affected user's profile does not resolve the issue (further bolstering my theory that the issue is due to an issue in the default profile in my case).
    Thanks in advance for any assistance anyone can provide!

    With some excellent detective work by Microsoft Product Support (thanks Siddarth!), the solution has been found.
    It turns out that in addition to the security settings on a folder, there is an integrity setting. More information about it is
    here.
    The integrity setting on the AppData\LocalLow folder in each user's profile is supposed to be set to "Low" (hence the name, presumably). In our case, the integrity level was not set correctly on this folder. To rectify the problem, we will need
    to run the following command under each user's profile (with a login script, for example):
    icacls %userprofile%\Appdata\LocalLow /t /setintegritylevel (OI)(CI)L
    As for how this incorrect setting was propagated in the first place, it is because the LocalLow folder in the C:\Users\Default\Appdata folder in our customized OS image had the wrong setting. The C:\Users\Default folder is the template for a new user profile,
    so each new user on these computers was affected. I examined the C:\Users\Default\AppData folder on another machine without a customized user template and found the LocalLow folder is not present at all, so in our environment we will be deleting the C:\Users\Default\AppData\LocalLow
    from each machine to prevent the issue from affecting future new users.
    EDIT: If the command above does not resolve the issue, the registry key that points to the low integrity DOMStore folder may have been changed. Check the
    CachePath registry value at HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\LowCache\Extensible Cache\DOMStore. It should be
    %USERPROFILE%\AppData\LocalLow\Microsoft\Internet Explorer\DOMStore.

  • Why are the localStorage objects unavailable to Safari while Private Browsing?

    According to these two sites
    http://caniuse.com/#feat=namevalue-storage
    http://apple.stackexchange.com/questions/131587/how-can-a-web-site-determine-if- safari-private-browsing-is-turned-on
    HTML5 localStorage objects aren't accessible when users visit sites that use them via a Safari Private Browsing window.
    W3 indicated this is supported: http://www.w3schools.com/html/html5_webstorage.asp as does https://developer.apple.com/library/safari/documentation/tools/conceptual/safari extensionguide/ExtensionSettings/Extensi…
    I'm hoping to find or establish more information that confirms localStorage objects don't work in Safari Private Browsing windows. All other browsers my team has tried support this in private browsing mode.
    Thanks for any and all assistance.
    Message was edited by: cmcleod99

    Maybe Google history is enabled.
    *https://www.google.com/history/?hl=en&ctz=-120

  • Having issues with localStorage

    Hi Guys,
    Apparently we are having issues with returning saved data from localStorage. Currently, we are able to store some data in the localStorage.
    However, when we close out of the DPS app and restart it, localStorage seems not to be loading the saved data/entires.
    We currently have the onAppear event in our code, to trigger storing and loading of localStorage data... maybe this event is causing some sort of issue with localStorage? Any suggestions?
    Does anyone know which events are currently working with localStorage without issues?
    It would be great if someone could provide a small working localStorage snippet as an example, this would really help us.
    Many thanks!
    Juan

    You can also use Dropbox. 2GB free. Put files in the Public folder and you can send them links of the files instead.
    You can use my referral link http://db.tt/MXNpy62 to create an account.

  • Html5 localStorage in Folio, InDesign 5.5

    Hi,
    for a customer we have build a presentation in InDesign CS5.5 as Folio which works fine.
    And we made a small htm5 page with a formular which stores some information via “localStorage.setItem()”. In any browser that works fine too.
    But when we import the html into the folio, an error occurred. It seems, that the localStorage is the point of failure.
    Is there any thing that we can do to bring the html to work inside the folio?
    SirGraya
    (germany)

    There´s no AIR in iPad. It uses webkit engine to run html-content inside native applications. And there are some restrictions, all the functions you can use with normal browsers are not supported there. You should find webkit´s specifications from Apple´s developer portal.
    I don´t know what kind of data you want to save, but one possible way to do it is use iPad´s built in database. It´s quite easy to use and you can store data from html-page, also from one you have placed inside folio (I used to make nice little yellow sticky note widget by using that) Users could create new sticky notes and write some text into them and everything was stored into iPad´s database. Next time they visited same folio, all the data was pulled back to sticky notes automatically... I used a sticy notes code from apple´s html5 showreel with small modifications.
    You will find original code from here http://developer.apple.com/safaridemos/sticky-notes.php
    Open notes.js to see how iPad´s local database is instantiated.
    ps. I understand that you have very good reasons to use DPS and folios, I just want to clarify to other possible readers that html5 web-apps eDocker produces are cached with html5 local storage manifest and they are also running in offline mode....=)

Maybe you are looking for

  • KO8G open work order settlement

    Hi, I am facing an issue with open work order settlement using KO8G or KO88. We are on 6.0 and PSM turned and New GL activated with a document splitting on fund mandatory flag turned on. When open work orders undergo WIP calculation through KKAI, it

  • How do i transfer files from one mac to another?

    how do i transfer my files from one mac to another mac?

  • Wondershare's iDraft for $2.99 will not update crashing issues due to 4.2!

    Wondershare will not update their iDraft App, on the App Store, for compatibility issues due to iOS 4.2! iDraft costs $2.99, and should be pulled from the app store. An app should not be sold, until the issue is addressed. It's wrong, and I want to s

  • New iMacs - 27" i3 vs 27"i5

    I'm getting a new iMac and want to know how much of a difference in processing speed there will be between the i3 which has 2 cores on one processor and the 15 which has 4 cores. I'm planning on getting 16gb of ram for whichever one I get I'm a desig

  • Subtitle semi\colon question & subtitles take forever to remove from project

    I have been having problems with two NTSC DVDs. The subtitles would line up perfectly in Subtitle Workshop put upon importing into Encore (CS3) they would lose sync after about 10 minutes or so. Turns out I was looking in the wrong area (at my MPEG f