Can I create a dashboard layout on the fly?

Hi all, I am trying to create a dashboard layout "on-the-fly"
(dynamically).
for example: I can create the following layout using MXML
very easily:
[CODE]
<mx:VBox width="100%" height="100%"
horizontalAlign="center">
<mx:Canvas id="dashboardCanvas" width="90%"
height="90%">
<mx:HBox width="100%" height="100%">
<mx:Panel title="panel 1" width="50%" height="100%">
<mx:VBox width="100%" height="100%"
borderStyle="solid">
<myDashboarComp borderStyle="solid" />
<myDashboarComp borderStyle="solid" />
<myDashboarComp borderStyle="solid" />
</mx:VBox>
</mx:Panel>
<mx:Panel title="panel 2" width="50%" height="100%">
<mx:HBox width="100%" height="100%">
<myDashboarComp borderStyle="solid" />
<myDashboarComp borderStyle="solid" />
<myDashboarComp borderStyle="solid" />
</mx:HBox>
</mx:Panel>
</mx:HBox>
</mx:Canvas>
</mx:VBox>
[/CODE]
You can see that I want to build my dashboard up using
HBox's, VBox's, Panels and the individual custom components
(myDashboarComp) - keepinng the layout and structure quite simple.
The above MXML creates a simple Dashboard consisting of the
canvas (where it all starts - it constructed from -
"dashboardCanvas"). the canvas has 2 panels within a HBox (so are
side by side) called "panel 1" and "panel 2". panel 1 contains a
VBox containing 3 components (displayed vertically) and panel 2
contains a HBox containing 3 components (displayed horizontally) -
so very simple.
However - I want to control this layout externally e.g.
passing an object or array (some sort of descriptor) to describe
the layout to my app.
I then want to loop through this descriptor item and build my
dashboard using ActionScript rather than MXML to more control and
flexibility.
this is the object I have created and have been experimenting
with in ActionScript:
[CODE]
[Bindable]
public var descriptorObj:Object =
{item:"dashboard", children: [
{item:"vbox", id:"vbox1", percentWidth:100,
percentHeight:100, children:[
{item:"panel", id:"panel1", percentWidth:50,
percentHeight:100, children:[
{item:"vbox", children: [
{item:"myDashboarComp"},
{item:"myDashboarComp"},
{item:"myDashboarComp"}
{item:"panel", id:"panel2", percentWidth:50,
percentHeight:100, children:[
{item:"hbox", children: [
{item:"myDashboarComp"},
{item:"myDashboarComp"},
{item:"myDashboarComp"}
[/CODE]
This is as far as I got as I kept hitting hurdles from here.
Basically - all I want to do is somehow read / loop through
this object and build my dashboard.
First of all I was unsure of the best way to loop through the
object - as I have to do it in order to get the correct layout...
i.e. the first 3 "myDashboarComp's" are added to the >
VBox that is added to > "panel1" that is added to the > HBox
that is added to the > Canvas.
This is where I ran into my second problem. I managd to loop
through and read the elements checking there "item" in the object
and adding them accordingly.... I could loop though and add each
item to the canvas ok, e.g:
[CODE]
private function initApp():void
for(var i:int=0; i<descriptorObj.children.length; i++)
var itemType:String = descriptorObj.children
.item.toString();
var percentWidth = descriptorObj.children.percentWidth;
var percentHeight = descriptorObj.children
.percentHeight;
addContainer(itemType, percentWidth, percentHeight);
private function addContainer(conType:String, pWidth:int,
pHeight:int):void
if(conType == "panel")
addPanel(pWidth, pHeight);
else if(conType == "vbox")
addVBox(pWidth, pHeight);
private var newPanel:Panel;
private function addPanel(pWidth:int, ptHeight:int):void
newPanel = new Panel();
newPanel.percentWidth = percentWidth;
newPanel.percentHeight = percentHeight;
newPanel.title = "test panel";
dashboardCanvas.addChild(newPanel);
[/CODE]
in the above actionScript the canvas "dashboardCanvas" is
already set up in the MXML (but is the only MXML container added as
the rest should be built using the create object "descriptorObj" in
AS).
This is my next problem - when I have added a container,
e.g. a panel the next items e.g. my "myDashboarComp's" should then
be added to the previously added panel and not to the canvas
anymore - I need some way of telling the app to add children to the
last added container and not to the canvas (and each container can
change type from a panel to VBox to HBox etc....)
I hope what I am trying to say makes sense, and any help on
this one would be greatly appreciated.
I just need pointing in the right direction and some ideas on
how to continue would be good - and if my thinking / method / ideas
are actually possible.
Kind Regards,
Jon.

There are several ways to do this. The third chapter in the
cookbook is a good place to start.
All things in ActionScript are based on objects. Constructing
them with the data needed for the ui information you will need and
then binding that data to your dashboard objects is basically what
you are going to be doing.
For me it makes the most sence to have an idea of what
different types of objects you will be creating and create some
extended components for those objects. Then when you recieve your
data, binary or xml, you can digest the configuration settings from
the layout and populate the constructor for each of your
components.
It sounds like you need to organize your layout structure in
a heirarchy and from that you can walk each branch and create each
set of things as you parse your data.
Without a bit more information as to what you are
specifically doing that is about as far as I can go minus adding in
some code along some line that I think might work.
Hope that helps some.
-D

Similar Messages

  • Can we create two dashboard prompts for the same column in the samepage

    hi ,
    can we create two dashboard prompts for the same column on the same page,
    I have a date column and I am trying to create 2 dashboard prompts on the same page one as from date and the other one as to date.Is this possible to create.When I am trying to create it is giving me error like cannot use same column for creating the prompt
    Any suggestions or ideas

    863997 wrote:
    hi ,
    can we create two dashboard prompts for the same column on the same page,
    I have a date column and I am trying to create 2 dashboard prompts on the same page one as from date and the other one as to date.Is this possible to create.When I am trying to create it is giving me error like cannot use same column for creating the prompt
    Any suggestions or ideasYou are correct. You cannot build two prompts on the same column. Use this link for instructions on how to build a "between prompt" because of this fact:
    http://oraclebizint.wordpress.com/2008/02/26/oracle-bi-ee-101332-between-prompts-for-date-columns-using-presentation-variables/

  • Can we create a XDP file on the fly

    Hi All,
    I am new to Live Cycle.
    I want to know if we can create an XDP file on the fly and immediately using this XDP file can form server create a PDF?
    Need this info urgently..
    Thanks in advance.
    Regards
    Vinay

    There are several ways to do this. The third chapter in the
    cookbook is a good place to start.
    All things in ActionScript are based on objects. Constructing
    them with the data needed for the ui information you will need and
    then binding that data to your dashboard objects is basically what
    you are going to be doing.
    For me it makes the most sence to have an idea of what
    different types of objects you will be creating and create some
    extended components for those objects. Then when you recieve your
    data, binary or xml, you can digest the configuration settings from
    the layout and populate the constructor for each of your
    components.
    It sounds like you need to organize your layout structure in
    a heirarchy and from that you can walk each branch and create each
    set of things as you parse your data.
    Without a bit more information as to what you are
    specifically doing that is about as far as I can go minus adding in
    some code along some line that I think might work.
    Hope that helps some.
    -D

  • Can we create DBI dashboards, reports, etc. in Arabic text?

    Hi!
    Can we create DBI dashboards, reports, etc. in Arabic text? If we can create forms in Arabic, does it mean we can also do the same in DBI?
    Thanks.

    You can make a form with 10 or more items (depends on the maximum number of the columns you have) and place them in a non base table block. Then you populate the block with a cursor and if you press a button you can populate the same block with another cursor making visible only the columns you need.
    Hope it helps you,
    Fabrizio

  • How can i create multiple accounts but use the same itunes?

    how can i create multiple accounts but use the same itunes?

    Hi iCloud is Making Me Go Crazy,
    You will need to create a new Apple ID for your GameCenter and iCloud services.  You can continue to use the current Apple ID you share with your Mom for access to iTunes Store purchases if you wish. 
    Using your Apple ID for Apple services
    http://support.apple.com/kb/HT4895
    Frequently asked questions about Apple ID
    http://support.apple.com/kb/HT5622
    Cheers,
    - Judy

  • Can you creat an apple id through the computer?

    Can you create an apple id through the computer?

    Yes.
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/

  • Can you creat an Apple ID using the iTunes gift cards?

    Can you creat an Apple ID using the iTunes gift cards?

    Jack, are you trying to make a new account on a computer or and iOS device, you need to click the links and follow the instruction to make the account without a credit card.  After you make your account then redeem your iTunes card. http://support.apple.com/kb/ht2534

  • How can i create a new item in the app "health"?

    how can i create a new item in the app "health"? I need a field for documentation of "Waist-to-height ratio", exactly for "circumference".
    It's a matter of common knowledge, that the Waist-to-height ratio (WHtR) has more significance then the Body-Mass-Index (BMI).

    If you mean you want to change a color of a calendar category or create a new one, you cannot do that, what is pre-loaded is what you get and cannot be edited.

  • Can I create a short cut on the home screen to accessibility settings on an ipad

    Hi, have a partially sighted sister who uses an iPad, is there an easy way for her to switch between voice over on/off and white on black? without having to go into settings and then scroll down to the appropriate menu
    thanks

    Patrick Duncan wrote:
    Can I create a short cut on the home screen to accessibility settings on an ipad
    Patrick ~ Yes, see this post:
    Shortcut to Bluetooth Settings
    ...For quick access to Accessibility settings, set up the shortcut icon with this URL(Homepage) — case sensitive:
    prefs:root=General&path=ACCESSIBILITY

  • Can we create 2 inspection lots at the time of goods receipt.

    Hi experts,
         Can we create two inspection lots at the time of goods receipt from vendor.I will assign two inspection types in material master
    suppose 01,02.Both are releated to goods receipt.For one inspection lot when we take usage decision stock should not post into usage decision.for other inspection lot stock has to be posted.Is this possible?if possible how to do configuration?

    I think I made this recommendation in a previous post concerning this but this is exactly what reference operation sets are created for.
    Create the reference operation set for the characteristics that are used for all the materials.  You create this once.
    When you create the sepcific plan for the individual materials, you include the reference operation as one of the operations, (probably the first one in your case).  You don't have to add characteristics, modify or change it.  All the characeristics and settings come from the reference operation.  If you need to make a change you edit the reference operation and make the change once.   The change is immediately seen in all newly created inspection lots.
    In a second operation of the plan, you add the characteristics specific to the material.
    You can add different workcenters to the operations if you want.  That way you can set up security on the workcenters and control who can record results against which operations.
    Aside from creating lots manually, you can't create two lots at the same time from the same GR.
    Craig

  • Can you create an image field in the form so a respondent can upload a photo to it?

    Can you create an image field in the form so a respondent can upload a photo to it?

    Use the File Attachment field to allow respondents to include a photo with their submission.
    Regards,
    Brian

  • How can i create an indicator to read the RMS value of my FFT using FFT Spectrum (Mag-Phase).vi

    Hai to all,
    how can i create an indicator to read the RMS value of my FFT using FFT Spectrum (Mag-Phase).vi.
    as u can see in my block diagram(attached), i can use statistic to read the RMS value for the data but i cant's use it on the FFT Spectrum (mag-Phase).vi .
    Thank you for helping.
    Attachments:
    block diagram.jpg ‏48 KB

    hafizzuddin wrote:
    thank you for the opinions, for now i am not using any express Vi..
    In the long run you will benefit from this. Anyway is your problem solved, or do you need more help?
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)

  • Why can I create a new folder in the catalog but it only shows up in windows not the catalog

    Why can I create a new folder in the catalog but it only shows up in windows not the catalog

    Not sure I understand the question but it could be because you meant to say "can't" somewhere in the sentence.  anyway, just guessing here:
    Try going to:
    File >> Watch folders
    Now you can Add new folders here that you see them in Windows.  The word ADD is a button to browse for the folders and hopefully this will solve the problem you are having.

  • I have a new western digital 1TB ultra. how do i format it? i can't create a new folder inside the external drive.

    I have a new WD My Passport Ultra external drive. Once connected to the Macbook Pro retina, I can't create a new folder in the external drive. What do I do to solve the problem?

    You should be able to format it for use with your computer using Disk Utility in the Utilities folder:
    http://osxdaily.com/2012/01/04/format-an-external-hard-drive-or-usb-flash-drive- for-mac-os-x/

  • Can I create different Coherence nodes in the same cluster with defferent?

    Can I create different Coherence nodes in the same cluster with defferent cache-config.xml file ?
    Can a cache be distributed in these deffirent nodes?

    Yes. You can create different Coherence nodes in the same cluster with defferent cache-config.xml files as long as you use the same tangosol-coherence.xml file and the same tangosol-coherence-override.xml file. But you cannot store the cache data in the different nodes (started with different cache-config file). In other word, a node only create caches in their own's modes which are started with the same cache-config.xml file.
    See the following demo:
    I start a cache server using the cache config file examples-cache-server.xml. Then I start a storage-disabled cache console (cache client) using the cache config file coherence-cache-config.xml. Both of them using the same tangosol-coherence.xml file and the same tangosol-coherence-override.xml file.
    The cache server uses a cache service PartitionedPofCache. But the client side is using the Distributedcache service. The cluster address is same 224.3.5.2.
    The cluster name is also samme. They know each other.
    D:\coherence\lib>D:\examples\java\bin\run-cache-server.cmd
    D:\coherence\lib>D:\examples\java\bin\run-cache-server.cmd
    The system cannot find the file D:\coherence.
    The system cannot find the file C:\Oracle\Middleware\jdk160_11.
    2009-12-22 12:09:31.400/4.987 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a): Loaded operational configurat
    ion from resource "jar:file:/D:/coherence/lib/coherence.jar!/tangosol-coherence.xml"
    2009-12-22 12:09:31.450/5.037 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a): Loaded operational overrides
    from resource "jar:file:/D:/coherence/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-12-22 12:09:31.470/5.057 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a): Optional configuration override
    "/tangosol-coherence-override.xml" is not specified
    2009-12-22 12:09:31.540/5.127 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a): Optional configuration override
    "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.5.2/463
    Grid Edition: Development mode
    Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
    2009-12-22 12:09:33.864/7.451 Oracle Coherence GE 3.5.2/463 <Info> (thread=main, member=n/a): Loaded cache configuration
    from "file:/D:/examples/java/resource/config/examples-cache-config.xml"
    2009-12-22 12:09:39.983/13.570 Oracle Coherence GE 3.5.2/463 <D5> (thread=Cluster, member=n/a): Service Cluster joined t
    he cluster with senior service member n/a
    2009-12-22 12:09:43.187/16.774 Oracle Coherence GE 3.5.2/463 <Info> (thread=Cluster, member=n/a): Created a new cluster
    "cluster:0xD3FB" with Member(Id=1, Timestamp=2009-12-22 12:09:38.06, Address=192.168.8.80:8088, MachineId=24656, Locatio
    n=process:144, Role=CoherenceServer, Edition=Grid Edition, Mode=Development, CpuCount=1, SocketCount=1) UID=0xC0A8085000
    000125B75D888C60501F98
    2009-12-22 12:09:43.508/17.095 Oracle Coherence GE 3.5.2/463 <D5> (thread=Invocation:Management, member=1): Service Mana
    gement joined the cluster with senior service member 1
    2009-12-22 12:09:46.582/20.169 Oracle Coherence GE 3.5.2/463 <D5> (thread=DistributedCache:PartitionedPofCache, member=1
    ): Service PartitionedPofCache joined the cluster with senior service member 1
    2009-12-22 12:09:46.672/20.259 Oracle Coherence GE 3.5.2/463 <Info> (thread=DistributedCache:PartitionedPofCache, member
    =1): Loading POF configuration from resource "file:/D:/examples/java/resource/config/examples-pof-config.xml"
    2009-12-22 12:09:46.702/20.289 Oracle Coherence GE 3.5.2/463 <Info> (thread=DistributedCache:PartitionedPofCache, member
    =1): Loading POF configuration from resource "jar:file:/D:/coherence/lib/coherence.jar!/coherence-pof-config.xml"
    2009-12-22 12:09:47.734/21.321 Oracle Coherence GE 3.5.2/463 <Info> (thread=main, member=1): Started DefaultCacheServer.
    SafeCluster: Name=cluster:0xD3FB
    Group{Address=224.3.5.2, Port=35463, TTL=4}
    MasterMemberSet
      ThisMember=Member(Id=1, Timestamp=2009-12-22 12:09:38.06, Address=192.168.8.80:8088, MachineId=24656, Location=process
    :144, Role=CoherenceServer)
      OldestMember=Member(Id=1, Timestamp=2009-12-22 12:09:38.06, Address=192.168.8.80:8088, MachineId=24656, Location=proce
    ss:144, Role=CoherenceServer)
      ActualMemberSet=MemberSet(Size=1, BitSetCount=2
        Member(Id=1, Timestamp=2009-12-22 12:09:38.06, Address=192.168.8.80:8088, MachineId=24656, Location=process:144, Rol
    e=CoherenceServer)
      RecycleMillis=120000
      RecycleSet=MemberSet(Size=0, BitSetCount=0
    Services
      TcpRing{TcpSocketAccepter{State=STATE_OPEN, ServerSocket=192.168.8.80:8088}, Connections=[]}
      ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_JOINED), Id=0, Version=3.5, OldestMemberId=1}
      InvocationService{Name=Management, State=(SERVICE_STARTED), Id=1, Version=3.1, OldestMemberId=1}
      DistributedCache{Name=PartitionedPofCache, State=(SERVICE_STARTED), LocalStorage=enabled, PartitionCount=257, BackupCo
    unt=1, AssignedPartitions=257, BackupPartitions=0}
    2009-12-22 12:12:29.737/183.324 Oracle Coherence GE 3.5.2/463 <D5> (thread=Cluster, member=1): Member(Id=2, Timestamp=20
    09-12-22 12:12:29.541, Address=192.168.8.80:8089, MachineId=24656, Location=process:1188, Role=CoherenceConsole) joined
    Cluster with senior member 1
    2009-12-22 12:12:30.498/184.085 Oracle Coherence GE 3.5.2/463 <D5> (thread=Cluster, member=1): Member 2 joined Service M
    anagement with senior member 1
    2009-12-22 12:12:31.860/185.447 Oracle Coherence GE 3.5.2/463 <D5> (thread=Cluster, member=1): TcpRing: connecting to me
    mber 2 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/192.168.8.80,port=8089,localport=2463]}
    2009-12-22 12:12:51.338/204.925 Oracle Coherence GE 3.5.2/463 <D5> (thread=Cluster, member=1): Member 2 joined Service D
    istributedCache with senior member 2The following command starts a cache client.
    D:\coherence\bin>coherence.cmd
    D:\coherence\bin>coherence.cmd
    ** Starting storage disabled console **
    java version "1.6.0_11"
    Java(TM) SE Runtime Environment (build 1.6.0_11-b03)
    Java HotSpot(TM) Server VM (build 11.0-b16, mixed mode)
    2009-12-22 12:12:21.054/3.425 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a): Loaded operational configurat
    ion from resource "jar:file:/D:/coherence/lib/coherence.jar!/tangosol-coherence.xml"
    2009-12-22 12:12:21.355/3.726 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a): Loaded operational overrides
    from resource "jar:file:/D:/coherence/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-12-22 12:12:21.365/3.736 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a): Optional configuration override
    "/tangosol-coherence-override.xml" is not specified
    2009-12-22 12:12:21.415/3.786 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a): Optional configuration override
    "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.5.2/463
    Grid Edition: Development mode
    Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
    2009-12-22 12:12:29.316/11.687 Oracle Coherence GE 3.5.2/463 <D5> (thread=Cluster, member=n/a): Service Cluster joined t
    he cluster with senior service member n/a
    2009-12-22 12:12:29.356/11.727 Oracle Coherence GE 3.5.2/463 <Info> (thread=Cluster, member=n/a): Failed to satisfy the
    variance: allowed=16, actual=20
    2009-12-22 12:12:29.356/11.727 Oracle Coherence GE 3.5.2/463 <Info> (thread=Cluster, member=n/a): Increasing allowable v
    ariance to 17
    2009-12-22 12:12:29.807/12.178 Oracle Coherence GE 3.5.2/463 <Info> (thread=Cluster, member=n/a): This Member(Id=2, Time
    stamp=2009-12-22 12:12:29.541, Address=192.168.8.80:8089, MachineId=24656, Location=process:1188, Role=CoherenceConsole,
    Edition=Grid Edition, Mode=Development, CpuCount=1, SocketCount=1) joined cluster "cluster:0xD3FB" with senior Member(I
    d=1, Timestamp=2009-12-22 12:09:38.06, Address=192.168.8.80:8088, MachineId=24656, Location=process:144, Role=CoherenceS
    erver, Edition=Grid Edition, Mode=Development, CpuCount=1, SocketCount=1)
    2009-12-22 12:12:29.977/12.348 Oracle Coherence GE 3.5.2/463 <D5> (thread=Cluster, member=n/a): Member 1 joined Service
    Management with senior member 1
    2009-12-22 12:12:29.977/12.348 Oracle Coherence GE 3.5.2/463 <D5> (thread=Cluster, member=n/a): Member 1 joined Service
    PartitionedPofCache with senior member 1
    2009-12-22 12:12:30.578/12.949 Oracle Coherence GE 3.5.2/463 <D5> (thread=Invocation:Management, member=2): Service Mana
    gement joined the cluster with senior service member 1
    SafeCluster: Name=cluster:0xD3FB
    Group{Address=224.3.5.2, Port=35463, TTL=4}
    MasterMemberSet
      ThisMember=Member(Id=2, Timestamp=2009-12-22 12:12:29.541, Address=192.168.8.80:8089, MachineId=24656, Location=proces
    s:1188, Role=CoherenceConsole)
      OldestMember=Member(Id=1, Timestamp=2009-12-22 12:09:38.06, Address=192.168.8.80:8088, MachineId=24656, Location=proce
    ss:144, Role=CoherenceServer)
      ActualMemberSet=MemberSet(Size=2, BitSetCount=2
        Member(Id=1, Timestamp=2009-12-22 12:09:38.06, Address=192.168.8.80:8088, MachineId=24656, Location=process:144, Rol
    e=CoherenceServer)
        Member(Id=2, Timestamp=2009-12-22 12:12:29.541, Address=192.168.8.80:8089, MachineId=24656, Location=process:1188, R
    ole=CoherenceConsole)
      RecycleMillis=120000
      RecycleSet=MemberSet(Size=0, BitSetCount=0
    Services
      TcpRing{TcpSocketAccepter{State=STATE_OPEN, ServerSocket=192.168.8.80:8089}, Connections=[]}
      ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_JOINED), Id=0, Version=3.5, OldestMemberId=1}
      InvocationService{Name=Management, State=(SERVICE_STARTED), Id=1, Version=3.1, OldestMemberId=1}
    Map (?):
    2009-12-22 12:12:49.505/31.906 Oracle Coherence GE 3.5.2/463 <Info> (thread=main, member=2): Loaded cache configuration
    from "jar:file:/D:/coherence/lib/coherence.jar!/coherence-cache-config.xml"
    2009-12-22 12:12:51.358/33.729 Oracle Coherence GE 3.5.2/463 <D5> (thread=DistributedCache, member=2): Service Distribut
    edCache joined the cluster with senior service member 2
    <distributed-scheme>
      <!--
      To use POF serialization for this partitioned service,
      uncomment the following section
      <serializer>
      <class-
      name>com.tangosol.io.pof.ConfigurablePofContext</class-
      name>
      </serializer>
      -->
      <scheme-name>example-distributed</scheme-name>
      <service-name>DistributedCache</service-name>
      <backing-map-scheme>
        <local-scheme>
          <scheme-ref>example-binary-backing-map</scheme-ref>
        </local-scheme>
      </backing-map-scheme>
      <autostart>true</autostart>
    </distributed-scheme>But when I try to store data into cache from the client side, it report error message: it's staorage-disabled. It shows that this cache console cannot store the data in the existing cache server because then using different cache config files.
    Map (ca3): cache ca2
    <distributed-scheme>
      <!--
      To use POF serialization for this partitioned service,
      uncomment the following section
      <serializer>
      <class-
      name>com.tangosol.io.pof.ConfigurablePofContext</class-
      name>
      </serializer>
      -->
      <scheme-name>example-distributed</scheme-name>
      <service-name>DistributedCache</service-name>
      <backing-map-scheme>
        <local-scheme>
          <scheme-ref>example-binary-backing-map</scheme-ref>
        </local-scheme>
      </backing-map-scheme>
      <autostart>true</autostart>
    </distributed-scheme>
    Map (ca2): put 1 one
    2009-12-22 14:00:04.999/6467.370 Oracle Coherence GE 3.5.2/463 <Error> (thread=main, member=2):
    java.lang.RuntimeException: Storage is not configured
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.onMissing
    Storage(DistributedCache.CDB:9)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.ensureReq
    uestTarget(DistributedCache.CDB:34)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.put(Distr
    ibutedCache.CDB:22)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.put(Distr
    ibutedCache.CDB:1)
            at com.tangosol.util.ConverterCollections$ConverterMap.put(ConverterCollections.java:1541)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ViewMap.put(Distrib
    utedCache.CDB:1)
            at com.tangosol.coherence.component.util.SafeNamedCache.put(SafeNamedCache.CDB:1)
            at com.tangosol.coherence.component.application.console.Coherence.processCommand(Coherence.CDB:581)
            at com.tangosol.coherence.component.application.console.Coherence.run(Coherence.CDB:39)
            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)

Maybe you are looking for

  • Sending SOAP request from XI and writing a scheduler for this

    Dear XI Experts, My scenario is as follows. We have two landscapes 1)     XI, R/3 2)     Client System(Remote, Other than SAP) Now we have to pull the data from client system using WSDL (There will be one method for pulling the data in the WSDL file)

  • PDFs display correctly in Acrobat Pro, but not in Reader?

    I receive files from printers for UV coating their jobs at our facility. On rare occasions the PDFs I receive display one way in Reader, and another way in Acrobat. Text that is missing--or showing up as faint outlines in Reader--displays correctly i

  • Urgent Help needed - BADI's in Infospoke

    Hi, My Scenario: I am pulling data from master data using infospoke into Application server. I need some kind of easy transformations during this stage. I got ZSTATE field in my data and I need to restrict my output to only certain states(Ex: NJ,CA,

  • Titles and photo info

    Earlier versions of iPhoto allowed you to keep the information pane showing until you manually turned it off. In 9.2.3 it goes away when the program is closed and then restarted. Is there a setting that will simply keep it on the screen? More importa

  • Changing sms text color?

    does anyone know how to change the color of the boxes that holds the text for sms texting?