ArrayDeque as a stack doesn't work as expected with complex objects

Trying to use ArrayDeque as a strorage for complex values <PSList<PSol>> (i.e. Arraylists of structured Values PSol), this doesn't work as expected. The code below should produce different values of pSLWk, being stored on bkStack, which are then to be retrieved by pop() to the variables pSL1, pSL2, pSL3.
However, retrieval only ends up with three identical data sets (variables) pS1,pS2, pS3.
        public PSList<PSol> pSL;
        private ArrayDeque<PSList<PSol>> bkStack=new ArrayDeque<PSList<PSol>>();
        pSLWk=new PSList<PSol>();       // Constructor copies some Array (static field) to the PSLists
        pSL=new PSList<PSol>();
        pSLAux=new PSList<PSol>(pSLWk);   // Constructor copies from existing PSList
        pSLWk.checkResult("pSLWk prior to setDefaults - modifies pSLWk !");
        setDefaults();                                                            // Modifies pSLWk only
        pSLWk.checkResult(" pSLWk after setDefaults");              // .. got changes (o.k.)
        pSL.checkResult(" pSL after setDefaults");                  // .. unchanged  (o.k.)
        pSL.checkResult(" pSLAux after setDefaults");               // .. unchanged  (o.k.)
        bkStack.push(new PSList<PSol>(pSLWk));                      // store changes in bkStack
        pSLWk.getEl(77).setVal(new StringBuffer("4"));              // change pSLWk again (value 4 @ 77)
        pSLWk.checkResult("pSLWk, after PUSH, THEN modify 4@77");   // .. got change (o.k.)
        pSL.checkResult("pSL after setVal 77");
        bkStack.push(pSLWk);                      // store changes in bkStack
        pSLWk.getEl(80).setVal(new StringBuffer("8"));              // change pSLWk again (value 8 @ 80)
        pSLWk.checkResult("pSLWk after setVal 8@80");               // .. got change (o.k.)
        pSL.checkResult("pSL after setVal 80");
        bkStack.push(new PSList<PSol>(pSLWk));                      // store changes in bkStack
        pSL1=new PSList<PSol>(bkStack.pop());
        pSL1.checkResult("pSL1 after 1st pop");
//      pSL1=bkStack.pop()                                          // Straightforward way doesn't work either...
        pSL2=new PSList<PSol>(bkStack.pop());
        pSL2.checkResult("pSL2 after 2nd pop");
        pSL3=new PSList<PSol>(bkStack.pop());
        pSL3.checkResult("pSL3 after 3rd pSLWk=..pop()");Here the result from the code above:
debug:
1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSLWk prior to setDefaults - modifies pSLWk !
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2   63 <C.R.> pSLWk after setDefaults
1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSL after setDefaults
1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSLAux after setDefaults
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  463 <C.R.>pSLWk, after PUSH, THEN modify 4@77
1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 77
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSLWk after setVal 8@80
1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 80
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL1 after 1st pop
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL2 after 2nd pop
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL3 after 3rd pSLWk=..pop()
1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSLWk prior to setDefaults - modifies pSLWk !
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2   63 <C.R.> pSLWk after setDefaults
1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSL after setDefaults
1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSLAux after setDefaults
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  463 <C.R.>pSLWk, after PUSH, THEN modify 4@77
1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 77
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSLWk after setVal 8@80
1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 80
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL1 after 1st pop
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL2 after 2nd pop
128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL3 after 3rd pSLWk=..pop()What's the problem with this ?
Rem: I tried the simple approach as well:
bkstack.push(pSLWk);
...

Thank you for your comments, although I see we still don't have a common understanding of the problem.
Firstly, I add the code for the PSList and the PSol classes, so you might find some problem with that:
     public class PSol     {
          private StringBuffer val;
          private int zI;
          private int sI;
          private int bI;
                    // == Konstruktor
          public PSol( StringBuffer v, int z, int s, int b )     {
               this.val=v;
               this.zI=z;
               this.sI=s;
               this.bI=b;
                    // == Getter,Setter
          public StringBuffer getVal()     {return val;}
          public int getZ()     {return zI;}
          public int getS()     {return sI;}
          public int getB()     {return bI;}
          public int getVSize()     {return val.length();}
          public void setVal(StringBuffer v)     {val=v;}
          public boolean hasVChar( StringBuffer ch, boolean delCh )     {
               boolean bT=false;
               StringBuffer fSt=getVal();
               if (!(fSt.indexOf( ch.toString() )     == -1))     {
                    bT=true;
                    if (delCh)     {
                         setVal(fSt.deleteCharAt(fSt.indexOf( ch.toString() )));
               return bT;
     }     // PSol
     public class PSList<E> extends ArrayList<PSol>     {
               /**     Construktor 1: PSList(v,z,s,b) - makes list from single arrays
          private static final long serialVersionUID =  4711L;                         // ### JAVAC Warning! ###
        public PSList (String[] vS, int[] z, int[] s, int[] b) {
               StringBuffer[] v=new StringBuffer[valDim];
            for (int i=0;i<valDim;i++)  {
                v=new StringBuffer(vS[i]);
//ArrayList<PSol> pSL=new ArrayList<PSol>;
               for (int i=0; i<valDim; i++) {
                    this.add( new PSol( v[i], z[i], s[i], b[i] ) );
/** Konstruktor2 : makes list from matrix array
public PSList () {
for (int j=0; j<nDim; j++) {
for (int i=0; i<nDim; i++) {
this.add( new PSol( new StringBuffer(sGuiArr[i][j]), i, j , i/locDim + (j/locDim)*locDim) );
                    /**     ------- Construktor 3 : PSList(PSList pS) - makes list as a copy of an existing one
public PSList ( PSList<PSol> pX )     {
               super (pX); // ArrayList-Constructor (Collection)
// get Element <PSol>
public PSol getEl ( int i )     {return get(i);}
     public int getCount()     {return size();}
     public int getTValLg()     {
               int lg=0;
               for (int i=0; i<getCount(); i++)     {
                    lg=lg + getEl(i).getVal().length();
               return lg;
                    /**     ------- checkResult()     -     Check if alll elements are single char +dump
     public boolean checkResult(String messg)     {
               boolean allOne=true;
               for (int i=0; i<size(); i++)     {
                    if ( getEl(i).getVal().length() > 1 )     {
                         allOne=false;
                         System.out.print(" ");
               else     {
                    System.out.print(getEl(i).getVal());
               System.out.println("<C.R.>"+messg);
               return allOne;
     }     // Class PSList
Secondly, I don't really see what you mean by pointing out to 'only one "pSLWk" instance of PSList'. The variable pSLWk is the variable to be worked upon; after some change of the contents, I want to save this state of contents to the stack. When I pop that variable from the stack, I wouldn't want to restore it to pSLWK, but to some other variable, e.g. by public PSList<PSol> pSL1;
pSL1=new PSList<PSol>(bkStack.pop());Again - to my understanding (which comes from old days of microprocessor coding... - there shouldn't be a need to know how the data came there, or what was the name of the variable who stored it there. And  : the implementation of ArrayDeque returns 'elements' of class E, not references !
Thirdly, you're right, that the method of using a copy constructor for retrieval looks 'weird'. However - I had some other versions that didn't work either, e.g. the straightforward one, as I pointed out.
And fourthly: yes, I'm almost sure that I'm messing up something somewhere. I went to this forum hoping to clarify that ... :)
If you don't mind, could you please sketch a few lines of code, how to 'push' a complex variable to a ArrayDeque stack, and retrieve it - by 'pop()' - to some to other variable of the same class later ?
Might make our discussion much easier, to see how things REALLY work.
Thank you !                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • HomeGroup Doesn't Work As Expected with Same-Named Accounts

    Hello Community,
    I am running into problems configuring HomeGroup with my collection of Windows 8.1 machines.
    I have 3 Microsoft Accounts:
    Personal: [email protected]
    Business 1: [email protected]
    Business 2: [email protected]
    I have these 3 accounts added on two machines:
    Machine A: Personal/Business 1
    Machine B: Business 2
    All 3 have the same first and last name.  So, when all 3 join Homegroup, there is only 1 node in explorer ("First Last", with the icon being from the live.com account, for whatever reason), and 3 nodes under that with the machines the accounts
    are on.
    The problem I am running into (besides there just being 1 node in home group, there should be 3 -- 1 per account, IMO) is that sharing libraries from Machine A\Business 1 does not show up properly in the Explorer of Machine B\Business 2.  For instance,
    if I share the Documents Library, it displays in the Machine B\Business 2's explorer, but when I double-click it, it doesn't do anything.
    Furthermore, if I explicitly share Machine A\Business 1's Document's folder (not library, the folder), the folder does show up in Machine B\Business 2's explorer, but when I double-click it, it produces an error dialog saying it cannot navigate
    to "C:\Users\Business1\Documents".
    It appears that when Machine A\Business 1 shares items, the shares are being logged into Homegroup as local resources, and not network resources.  So, when another user attempts to access them, they are being accessed with a local path rather than
    a network path.
    Is this a known issue?  If so, is there a workaround/fix for it?
    Thank you for any assistance you can provide,
    Michael

    Hi Michael,
    I cannot repro your issue in my environment. Did the share from your personal account on Machine A work fine?
    Would you please test if the share from your business 2 on Machine B work fine? Let me know your test results.
    Meanwhile, let’s try to recreate the homegroup and rejoin your computer to check the results.
    If the issue only happened on business 1 account, please follow these steps to capture the behavior during the share and access process as you mentioned in your post by using Network monitor. If you find any error or unexpected communication
    issue, please post back the log.
    Microsoft Network Monitor 3.4
    http://www.microsoft.com/en-us/download/details.aspx?id=4865
    Analyzing Network Data with Network Monitor
    http://technet.microsoft.com/en-us/library/cc723623.aspx
    Hope these could be helpful.
    Kate Li
    TechNet Community Support

  • The backlight of keyboard doesn't work in win7, with a well setup bootcamp drivers

    The backlight of keyboard doesn't work in win7, with a well setup bootcamp drivers

    Forum and support for Boot Camp:
    http://www.apple.com/support/bootcamp

  • VoiceOver navigation buttons doesn't work as expected on latest version of Firefox

    VoiceOver navigation buttons doesn't work as expected on latest version of Firefox. VO+Left/Right not jump from element to element
    Version of OS: OS X Yosemite 10.10.1
    Version of Chrome: 42.0.2311.90 (64-bit)
    Version of Firefox: 37.0.2

    Did this work in a previous version of Firefox?
    There is an open bug to improve accessibility on OS X. (Bug 336306) I'll update that bug with any relevant information you provide here.

  • Fan View in Stack doesn't work

    I'm enjoying the new Leopard features. However, suddenly when I put a folder in the dock to use as a "stack" the FAN view doesn't work. I just get a fan of dumb-looking lines. The grid view works. What gives?
    Many thanks,
    Tom

    Glad to hear that. Sometimes preference files get corrupted, it happens. If you lost application icons from the Dock it's because they probably were 3rd party software, OR, the icons that aren't on the Dock by default in Leopard.
    Nada! and thank you for the star.
    Carolyn

  • Ralink rt61 doesn't work on battery with 2.6.36.2

    Hi folks.
    I recently reinstalled Arch on a Packard Bell MZ36 which has a Ralink rt61 wireless card. I'm using latest stock kernel from [core]. When I disconnect AC power and go to battery, I got a kernel message, and wifi doesn't work anymore. If I connect again AC power, it doesn't work. If I boot in battery, it doesn't work neither. Before reinstalling Arch, this machine had 2.6.35 on it, and it worked just fine. Does anyone know how to solve this issue?
    Some outputs:
    lspci
    00:00.0 Host bridge: ATI Technologies Inc Device 5a31 (rev 01)
    00:01.0 PCI bridge: ATI Technologies Inc RS480 PCI Bridge
    00:12.0 IDE interface: ATI Technologies Inc IXP SB400 Serial ATA Controller (rev 80)
    00:13.0 USB Controller: ATI Technologies Inc IXP SB400 USB Host Controller (rev 80)
    00:13.1 USB Controller: ATI Technologies Inc IXP SB400 USB Host Controller (rev 80)
    00:13.2 USB Controller: ATI Technologies Inc IXP SB400 USB2 Host Controller (rev 80)
    00:14.0 SMBus: ATI Technologies Inc IXP SB400 SMBus Controller (rev 82)
    00:14.1 IDE interface: ATI Technologies Inc IXP SB400 IDE Controller (rev 80)
    00:14.2 Audio device: ATI Technologies Inc IXP SB4x0 High Definition Audio Controller (rev 01)
    00:14.3 ISA bridge: ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80)
    00:14.4 PCI bridge: ATI Technologies Inc IXP SB400 PCI-PCI Bridge (rev 80)
    01:05.0 VGA compatible controller: ATI Technologies Inc RC410 [Radeon Xpress 200M]
    09:02.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
    09:04.0 Network controller: RaLink RT2561/RT61 rev B 802.11g
    dmesg | grep rt61pci:
    vale@Charlie:~$ dmesg | grep rt61pci
    rt61pci 0000:09:04.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Registered led device: rt61pci-phy0::radio
    Registered led device: rt61pci-phy0::assoc
    error:
    Dec 19 13:53:15 Charlie kernel: BUG: unable to handle kernel NULL pointer dereference at (null)
    Dec 19 13:53:15 Charlie kernel: IP: [<f8c4cc14>] rt61pci_config+0x14/0x280 [rt61pci]
    Dec 19 13:53:15 Charlie kernel: *pde = 00000000
    Dec 19 13:53:15 Charlie kernel: Oops: 0000 [#1] PREEMPT SMP
    Dec 19 13:53:15 Charlie kernel: last sysfs file: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0A:00/power_supply/BAT1/type
    Dec 19 13:53:15 Charlie kernel: Modules linked in: ipv6 ext2 radeon arc4 ecb rt61pci crc_itu_t snd_hda_codec_realtek rt2x00pci snd_seq_dummy rt2x00lib led_class snd_seq_oss ttm ma$
    Dec 19 13:53:15 Charlie kernel:
    Dec 19 13:53:15 Charlie kernel: Pid: 2659, comm: irq/22-0000:09: Not tainted 2.6.36-ARCH #1 EasyNote MZ36/EasyNote MZ36
    Dec 19 13:53:15 Charlie kernel: EIP: 0060:[<f8c4cc14>] EFLAGS: 00010292 CPU: 0
    Dec 19 13:53:15 Charlie kernel: EIP is at rt61pci_config+0x14/0x280 [rt61pci]
    Dec 19 13:53:15 Charlie kernel: EAX: 00000000 EBX: f7380ba0 ECX: 00000010 EDX: f61b5f54
    Dec 19 13:53:15 Charlie kernel: ESI: f61b5f54 EDI: 00000010 EBP: f61b5f14 ESP: f61b5eec
    Dec 19 13:53:15 Charlie kernel: DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
    Dec 19 13:53:15 Charlie kernel: Process irq/22-0000:09: (pid: 2659, ti=f61b4000 task=f68e4cf0 task.ti=f61b4000)
    Dec 19 13:53:15 Charlie kernel: Stack:
    Dec 19 13:53:15 Charlie kernel: f6ab14a0 01996089 f630d6d8 f630d6c0 00000002 0ac142b0 f7380ba0 f61b5f30
    Dec 19 13:53:15 Charlie kernel: <0> f6ab14a0 f61b5f54 f61b5f80 f8c4cf04 00000300 00010011 00000001 f7380ba0
    Dec 19 13:53:15 Charlie kernel: <0> 00000100 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    Dec 19 13:53:15 Charlie kernel: Call Trace:
    Dec 19 13:53:15 Charlie kernel: [<f8c4cf04>] ? rt61pci_interrupt_thread+0x84/0x1c8 [rt61pci]
    Dec 19 13:53:15 Charlie kernel: [<c1098280>] ? irq_thread+0x100/0x200
    Dec 19 13:53:15 Charlie kernel: [<c1098180>] ? irq_thread+0x0/0x200
    Dec 19 13:53:15 Charlie kernel: [<c1060764>] ? kthread+0x74/0x80
    Dec 19 13:53:15 Charlie kernel: [<c10606f0>] ? kthread+0x0/0x80
    Dec 19 13:53:15 Charlie kernel: [<c1003d3e>] ? kernel_thread_helper+0x6/0x18
    Dec 19 13:53:15 Charlie kernel: Code: 01 00 00 e9 57 ff ff ff eb 0d 90 90 90 90 90 90 90 90 90 90 90 90 90 55 89 e5 57 89 cf 56 89 d6 53 89 c3 83 ec 1c 8b 02 8b 40 18 <8b> 00 85 c$
    Dec 19 13:53:15 Charlie kernel: EIP: [<f8c4cc14>] rt61pci_config+0x14/0x280 [rt61pci] SS:ESP 0068:f61b5eec
    Dec 19 13:53:15 Charlie kernel: CR2: 0000000000000000
    Dec 19 13:53:15 Charlie kernel: ---[ end trace a5962a1ab0d7fe87 ]---
    Dec 19 13:53:15 Charlie kernel: exiting task "irq/22-0000:09:" (2659) is an active IRQ thread (irq 22)
    Dec 19 13:53:17 Charlie kernel: No probe response from AP 00:4f:74:31:75:b0 after 500ms, disconnecting.
    Dec 19 13:53:17 Charlie kernel: cfg80211: Calling CRDA to update world regulatory domain

    same problem here. Screen turns black and says nearly the same as soon as AC power is off. Other distribution work with no problem (Linux Mint, Dream Linux Live-CD).
    I'm running 32bit 2.6.37-ARCH, same problem occurs with 64bit kernel
    05:09.0 Network controller: RaLink RT2561/RT61 rev B 802.11g
    any idea?

  • Connecting to other computers on network doesn't work as expected.

    This is kind of interesting.
    I do this: From Menu Go > Network
    Then I choose either my iMac or MacBook Pro and double click the user name for my home folders on the other computers.
    A window opens up and the bottom right of the window the little twirling busy thing just goes and goes and goes.
    I notice the server icon on the Desktop and double click it and everything is there an access is fast, just like I expected from the first window that popped up. But it's still there, blank, with a little twirly thing (very technical).
    I get what I'm after, but it doesn't work the way it should.

    Try keeping your shares from sleeping during the expected period of use--assuming they are. If this procedure works, then you'll need to decide between the "lesser of the two evils."

  • It doesn�t work lazy loading with remote client (toplink)

    I am trying to use lazy loading in a @ManyToOne field but I get an exception. I have been reading in some oracle tutorials that it's necesary use -javaagent:.../lib/toplink-essentials-agent.jar for that it works because this argument activate dynamic weaving in JavaSE. I have put this command line argument javaagent but it doesn't work. Why? Can I have to do another thing? I have done a lot of tests in base to comments read in another forums but I only obtains an exception.
    Caused by: java.io.IOException: Mismatched serialization UIDs
    NOTE: The server use toplink and the remote client query the entitties through a session bean of the server. Besides, I am using Glassfish (Sun application server and toplink).
    Thanks in advance.
    hayken

    At first, thank you for your reply.
    I know that I haven´t explained the problem too well. I have a stateless bean with one remote method that execute a query an returns an entity like this
    @Entity
    public class ModuloEntity extends Serializable
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long idModulo;
    private String nombre;
    @ManyToOne(fetch=FetchType.LAZY)
    @JoinColumn(name="IdProyecto")
    private ProyectoEntity proyecto;
    The remote client invoke this method and in that moment I get this exception.
    21-may-2007 18:55:48 com.sun.corba.ee.impl.encoding.CDRInputStream_1_0 read_value
    ADVERTENCIA: "IOP00810211: (MARSHAL) Exception from readValue on ValueHandler in CDRInputStream"
    org.omg.CORBA.MARSHAL: vmcid: SUN minor code: 211 completed: Maybe
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.valuehandlerReadException(ORBUtilSystemException.java:7053)
    Caused by: java.io.IOException: Mismatched serialization UIDs : Source (Rep. IDRMI:com.syskonic.gesplan.entities.ModuloEntity:6D06A8C14D488FFF:8E6FC8687EA9E512) = 8E6FC8687EA9E512 whereas Target (Rep. ID RMI:com.syskonic.gesplan.entities.ModuloEntity:1C6925798CDFD3DF:3455DBF4457AE337) = 3455DBF4457AE337
    at com.sun.corba.ee.impl.util.RepositoryId.useFullValueDescription(RepositoryId.java:573)
    If I look the server log, I can see that the call has not been produced, it doesn´t show any exception. It looks that the object managed by the server and the remote client aren´t the same and the corba service doesn´t work when remote client call session method. If I change the ModuloEntity and remove the fetch attribute then all this process executes correctly. The problem is in this attribute.
    NOTE: I am using the javaagent command line argument.
    Hayken

  • StageWebView Doesn't work on Android with Captive Runtme...

    If I make an apk with the default setup (requires separate runtime download) it works, but not with captive runtime. I need captive runtime so that it can be accepted into Amazon Appstore.
    StageWebView.isSupported appears to return true when run, and then it just doesn't work.
    Is there any way around this? Will this work in the future?
    I am probably just going to work around it and do without it for this release, but would like to see if anyone knows what the deal is with it and let folks know of the issue.
    Edit: I have found that any usage of a StageWebView object not only doesn't work, but makes errors and breaks other parts of the app, so I have had to disable any usage of it...

    I'm also using StageWebView, but I don't have the problems you mention. I am using Captive Runtime to compile my app and it's working fine in the Android Market (I haven't tried Amazon Appstore, though).
    The version of AIR i'm using is 3.1. Are you using this version?

  • Convert to DNG doesn't work in Bridge with 5D mark III

    I'm using CS6 and the 'Convert to DNG" option doesn't work when I download my Canon 5D Mark III files, but it works with my 5D Mark II files. HOW can I get this to work. I've had to convert using the DNG converter.

    Update ACR to 8.7.1 and you won't have to convert to DNG at all. the 8.7.1 DNG converter also supports the Mark 3.

  • XML Error Handling doesn't work as expected

    Hi there,
    we are doing some syncronization szenarios between CRM 5.0 and a legacy system via XI.
    One szenario is an asynchronous XML syncronisation. As there are database locks the messages are errornous and turn to system failure - restartable (red flag). To be seen in SXMB_MONI.
    Regarding to weblog /people/sap.user72/blog/2005/11/29/xi-how-to-re-process-failed-xi-messages-automatically I configuered the CRM middleware with IS_Retry and also scheduled a job for report RSXMB_RESTART_MESSAGES.
    That worked fine until yesterday our synchronous XML szenario dumped and produced errornous messages type system failure - not restartable (red dot). Since then the IS_Restart doesn't work anymore.
    I've no idea how to handle theese messages. It seems they are preventing IS_Retry from working. If there are red flagged messages I can process them manually or with report RSXMB_RESTART_MESSAGES. But they are not automatically re-processed via IS_Retry.
    I also checked the queues and they look fine in smq2. There are no stucked queues.
    Does anyone have any idea what is going wrong and how I can fix this issue? I could schedule the report to work more than once a day as it is at the moment (night job), but IS_Retry option would be the better szenario.
    Thanks a lot in advance.
    kind regards
    Michael

    Hello Suraj,
    the error log in SXI_MONITOR tells me that the sender/receiver realtion couldn't be found, due to XI had a downtime.
    On Audit log from Message Monitoring on adapter engine I don't have permission, as I am working only on the CRM.
    But i was able to deal with the errornous XML. The deletion job in sxmb_adm (rsmb_delete_messages) with the parameter PERSIST_DURATION_ERROR with Subparameter SYNC Value 1 has removed them from the system.
    According to forum deletion of unprocessed xml messages
    But I still don't know why IS_Retry doesn't work anymore.
    Kind regards
    Michael

  • Webutil: webutil_file.file_open_dialog with filter doesn't work as expected

    Hi
    I just tried to open files by using webutil_file.file_open_dialog. Since I only want to select files with the prefix "brp" (e.g. brp0001.txt, brp0002.lis), I fill the parameter file_filter with the value: brp*.*
    This doesn't work. The dialog only shows folders, but not the brp*.* files. I tried with switching to capitals, which doesn't solve anything. With the filter set to *.* the dialog shows all folders and files, so that seems to work ok.
    Is anyone aware of this problem and know a solution? I'm using webutil 1.0.2 (beta).

    K..here's some logging. As far as I can see it's all normal, but it doesn't work (no matter if I use a last | or not). Should be easy to reproduce.
    2003-okt-29 09:42:44.547 WUF[setProperty()] Setting property WUF_GFN_DIRNAME to y:\data\
    2003-okt-29 09:42:44.567 WUF[setProperty()] Setting property WUF_FILENAME to false
    2003-okt-29 09:42:44.567 WUF[setProperty()] Setting property WUF_FILTER to (brp_archief*.*)|brp_archief*.*
    2003-okt-29 09:42:44.587 WUF[setProperty()] Setting property WUF_GFN_MESSAGE to bestandsnaam selecteren
    2003-okt-29 09:42:44.597 WUF[setProperty()] Setting property WUF_GFN_MULTISELECT to FALSE
    2003-okt-29 09:42:44.608 WUF[getProperty()] Getting property WUF_GFN_OPENFILE
    2003-okt-29 09:42:45.679 WUF[gfnDialog()] Creating Custom File Filter : Mask=brp_archief*.*, Label=(brp_archief*.*)
    2003-okt-29 09:42:45.679 WUF[gfnDialog()] Open File mode
    2003-okt-29 09:45:27.203 WUF[getProperty()] Value of WUF_GFN_OPENFILE=

  • Vi.lib\Utility\config.llb doesn't work as expected in 6.1

    I have to modify part of a LV project written in 6.1. I started of writing a patch/VI for the project in 7.1.1, tested it and it worked fine. Then I save it from 7.1.1 > 7.0 > 6.1 and the code doesn't work. I have attached the 6.1 and 7.1.1 code that simply modifies a config data file.
    Run both the VI version on the attached data file (save copies of it beforehand as the VI overwites/modifies the .dat file) and you should see for e.g.
    4.6.2.1 Name=Pass
    Change to
    4.6.2.1 Name="4.6.2.1 Extend Ground Cycle"
    with 7.1.1
    and no change with 6.1
    Attachments:
    Modify Configuration File.zip ‏52 KB

    The problem is at the very end. The 'Close Config Data.vi' changed between 6.1 and 7.0. The input 'Write Configuration File' on 7.0 and higher is default to True, any version before that was default to False. With this set to false, the file is not actually written.
    So on 6.1, you need to connect a boolean constant or control set to True to this termianl to write the file.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Save link as option doesn't work as expected anymore

    When I formerly right clicked a link to a file (to download) and chose the option '''Save link as''', I was able to save the file to the location I specified.
    At the moment this doesn't work anymore. When I click the same link as before and choose save link as, firefox wants to save the .htm page instead of the .csv file.

    You can try "Reset Download Actions": http://kb.mozillazine.org/File_types_and_download_actions

  • Finder 'Back' button doesn't work as expected

    Try this in Leopard Finder: In Finder View Options (Command-J), set Applications to always open in icon view, and Documents to always open in list view. Now open a fresh window and click each in the sidebar. They open as expected, one in icon view, and the other in list view. Now click the back button, and you're looking at the folder you just had open half a second earlier, but it's suddenly shifted to a different view - a view you explicitly told the Finder you didn't want this folder to open in. How does this make sense?
    (Thanks to grasshopperus for posting this first at arstechnica: http://episteme.arstechnica.com/eve/forums/a/tpc/f/8300945231/m/982000038831/p/1)

    Back button behaviour can be pretty wierd. I usually use the keyboard combination, but for some reason it doesn't work on PDF's and I have to end up using the graphical back button.
    There are some websites out there that for some reason or another break the Back button's behaviour. Sometimes I have to hold down the mouse button to get the back button menu in order to work around that problem.
    In another case there was this page in Amazon that wouldn't allow me to go back to. Everytime I went to that page the browser to automatically kick me to the next page. I had to disable javascript to work around that problem.

Maybe you are looking for

  • Print smartform from background

    Dear Experts, I have requirement to create delivery then create bill automatically so i open background job from program (A) and submit the creating program for bill (B) via this job what happened is the delivery creating is ok, the delivery printing

  • Letters of words have become less clear - how do I rectify?

    I have a laptop connected to a monitor. When I opened the laptop the letters became less clear - difficult to read - how do I make the letters clear?

  • HP Dv5-1104tu Startup Problem

    I have a HP dv5-1104tu model laptop that doesn't start-up. Last time i hibernate that & now i my unable to start it. When i press power button it light up for a sencond or two and than goes off again. I try to fix it byself using pressing the power b

  • Again:Ping failed: Sun Application Server 8

    Hi, My Sun application server could not start its shows this ...Ping failed.. Possible reasons include: -Port conflict -Incorrect server configuration ( domain.xml to be corrected manually ) -Corrupted Deployed application preventing the server to st

  • Contacts missing from Iphone 3GS after syncing

    I synced my daughters iphone 3GS and then my iphone 3GS to the same itunes account on my pc. Most of my contacts were gone when I got done syncing but I had my daughters contacts.  How do I get my contacts back?  Ive synced my phone again to the same