States, Transitions and Reparent in Flex 4

Hi,
I'm trying to control exactly when certain changes occur between states in a transition.
One thing I can't seem to control is when the Reparent action takes place in a state transition. What I want to do is move the targeted component into position and resize it before reparenting it. Otherwise the component causes layout issues in its new parent. The raparenting seems to take place at the beginning of the transition no matter what I do.
Surely this is possible? It certainly makes sense to be able to do it. If anybody has some info I'd be really grateful. There's very little coverage of advanced control of states in the way I wish to achieve.
Thanks!

Good advice Corey.
I've filed a bug report. Here's the link: http://bugs.adobe.com/jira/browse/SDK-26414
If anybody gets stuck with this, then please vote for it to be resolved.
Thanks!

Similar Messages

  • State transitions from Modules

    My application.mxml defines my state transitions and loads a couple of modules at startup - GuestSearch and GeneralInformation. In the GuestSearch, there is a button that when clicked, should remove the GeneralInformation module on the right and replace it with a different third module, GuestSearchResults. I'm new to Flex, so I haven't quite got my mind around the proper way to handle application flow.
    [application.mxml]
        <mx:states>
            <mx:State name="GuestSearch"> // initial state
                <mx:AddChild relativeTo="{leftSide}" position="lastChild">
                    <states:GuestSearch/>
                </mx:AddChild>
                <mx:AddChild relativeTo="{rightSide}" position="lastChild">
                    <states:GeneralInformation/>
                </mx:AddChild>
            </mx:State>
            <mx:State name="GuestSearchResults"> // state to go to after button click in module1
                <mx:RemoveChild target="{rightSide}"/>
                <mx:AddChild relativeTo="{rightSide}" position="lastChild">
                    <states:GuestSearchResults/>
                </mx:AddChild>
            </mx:State>
        </mx:states>
        <mx:Canvas x="0" y="54" width="100%" height="100%" backgroundColor="#8591C2">
            <mx:constraintColumns>
                <mx:ConstraintColumn id="col1" width="300"/>
                <mx:ConstraintColumn id="col2" width="100%" />
            </mx:constraintColumns>
            <mx:Canvas id="leftSide" left="col1:7" top="9" bottom="9" right="col1:4"/>
            <mx:Canvas id="rightSide" left="col2:4" top="9" bottom="9" right="col2:7"/>
        </mx:Canvas>
    My question is since this information is defined in my application.mxml, how can clicking on the button in the GuestSearch module reference the states defined in the application.mxml so as to swap modules?
    Thanks for the help
    Brian

    Is this the preferred way to do this kind of navigation - by putting all state transitions in the application.mxml? Or should state be defined in the GuestSearch module?

  • State transitions across components?

    Hi,
    I've been using Catalyst for a few days now to put together a "clickable mockup" of an app. Instead of working based on a comp, I'm creating the UI in Catalyst directly, using it's built-in components and creating a "wireframe" look. Works fine. I anticipate to work with more hi-fi comps.
    One thing I'm having trouble with, is making deep transitions between states from subcomponents.
    Imagine this setup:
    The app has two states/pages, "1" and "2". Inside each page, I have one component to represent all the states of that page. So for the first page, the internal component states would be 1-1, 1-2 and 1-3. Ditto for 2.
    So, now, let's say that in state 1-3, I have a button inside the component, where I want to transition to 2-2. Currently, it appears that there is no way for me to do that. When I click on the options in "Play transition to state" of the button, it shows me states 1 and 2, as well as 1-1 through 1-3, but it does not show the "child" states of "2".
    Is there any way to accomplish the transition from 1-3 to 2-2?
    Another version on the same problem: let's say I can somehow get from 1-3 to 2-2. Now, inside 2-2, I have a button that jumps back to "1". Currently, when I jump to "1", it jumps to whatever state 1 was in, which is 1-3 in my case, which is undesirable. It would be nice if I could somehow reset the component state on some event (showing, hiding, ...) to its default state, so that when people later jump back to it, it would start in its default state.
    I am familiar with ActionScript and XML and did poke around a bit. I see that in components, there is this kind of code:
      protected function Button_click_1_1():void
        mx.core.FlexGlobals.topLevelApplication.currentState='AppHome';
    I speculate that this lets me do what I need by editing code, and instead of topLevelApplication.currentState using topLevelApplication.someComponent.currentState... but I wanted to see if there is/will be another friendlier way of accomplishing this?

    Hi,
    Just my, hopefully helpful thoughts about how to render complex state transition much easier to understand, design and debug ...............
    Perhaps, initially for coders with a solid background in conditional logic, the inclusion of one or two design windows/panels providing the ability to design and display at least state transition diagrams and preferably also state transition tables, could be very helpful when trying to either design or understand complex, inter-related state transitions - actually, even relatively simple state-transitions with only five to seven objects, each with only three or four states to track concurrently, can be difficult to design, debug and test using just a mental model and memory to retain knowledge of the desired vs. actual state transition paths.
    Although I say "initially for coders", many years ago I taught both of these techniques successfully during software "design principles" courses that addressed software developers who's function was to prepare "design specifications" rather than actually write the code which, in those days, was the job of programmers rather than designers.  In fact many of my students were not programmers at all - for example analysts who used state transition diagramming techniques to design functions regardless of whether those functions would become implemented as code, or as a set of human actions, or mechanical machine operations (think pinball!).
    It should be possible using today's technoloy to be able to
        (a) generate code from a state transition table or a state transition diagram and
        (b) generate both forms of diagram from existing code (including the code autogenerated during visual design and
        (c) consistency check existing code automatically.
    It should be possible, using state transition table and diagram functions, to highlight structural logic errors.  How such highlighting should be done, for example:
        (a) using a classic state transition table or diagram or
        (b) generating some form of structured text report or
        (c) inserting colour-highlighted error messages in-line in the code or
        (c) some other more visual-designer-oriented signalling technique or
        (d) a combination of several of the above
    would be a design issue for Adobe.  This would not be a trivial exercise for Adobe, but the functionality would be reusable, i.e. transferable into other products.
    After all, the only reason for such tables or diagrams is to render complex state transitions understandable by humans, and these two techniques have proved extremely useful for many decades in many areas of design - programming, electronic circuit design, machine design, business process design......
    Re. Catalys, it's just a classic program design application, with some whizzy UI graphics that need to display, disappear, change colour, glow, shimmer, move, .... in predictable and desirable ways.
    The original pinball machines used mechanical relays to implement their underlying state transition diagrams; pinball designers needed to understand at least two things (a) complex state transitions and (b) a well designed UI. From this point of view, Catalyst looks like a pinball design panel!

  • Is there a way to make state transitions/animations of a fl.control states - button for example ?

    Is there a way to make state transitions/animations of a fl.control states - button for example ?
    All I can do now is change the skin design and that's it, I can't animate between states like I can with Flash Builder skins. So is there a way to do that, any technique or I have to create a button component from scratch?
    Thanks!

    simplebuttons have upState etc properties you can use to assign movieclips to the 3 states.  you can use the currentFrame property of movieclps to (appear to) smoothly transition from one state to another.

  • PPP Dialup cnx fails - Mica modem never completes state transitions

    I have a NAS (LAC) serving PPP calls over PSTN for multiple customers and for this particular connection, the call always drops at the 'State Transition to Ranging". I have another CE router succesfully calling the NAS and usingeaxctly the same external modem, so it proves the NAS works correctly.
    What's the 'Ranging state'? What happens here? What causes the Mica modem to go into that state?   Any help to solve this problem will be very much appreciated.
    NAS Details:
    Cisco Internetwork Operating System Software
    IOS (tm) 5300 Software (C5300-J-M), Version 12.3(22), RELEASE SOFTWARE (fc2)
    cisco AS5300 (R4K) processor (revision A.32) with 65536K/16384K bytes of memory.
    NAS Debugging output:
    Mar  1 17:05:22 UTC: VDEV_ALLOCATE: 1/33 is allocated
    Mar  1 17:05:22 UTC: EVENT_FROM_ISDN: dchan_idb=0x623BA450, call_id=0x2E41, ces=0x1
       bchan=0xD, event=0x1, cause=0x0
    Mar  1 17:05:22 UTC:  dev in call to isdn : set dnis_collected & fap_notify
    Mar  1 17:05:22 UTC: EVENT_FROM_ISDN:(2E41): DEV_INCALL at slot 1, port 33
    Mar  1 17:05:22 UTC: EVENT_FROM_ISDN: decode:calling oct3 0x21, called oct3 0xA1, oct3a 0x83,mask 0x3F
    Mar  1 17:05:22 UTC: EVENT_FROM_ISDN: csm_call_info:calling oct3 0x21, called oct3 0xA1, oct3a 0x83,mask 0x3F
    Mar  1 17:05:22 UTC: CSM_PROC_IDLE: CSM_EVENT_ISDN_CALL at slot 1, port 33
    Mar  1 17:05:22 UTC: Mica Modem(1/33): Configure(0x1 = 0x0)
    Mar  1 17:05:22 UTC: Mica Modem(1/33): Configure(0x23 = 0x0)
    Mar  1 17:05:22 UTC: Mica Modem(1/33): Call Setup
    Mar  1 17:05:22 UTC: csm_connect_pri_vdev: TS allocated at bp_stream 1, bp_Ch 3, vdev_common 0x61D53E9C 1/33
    Mar  1 17:05:23 UTC: Mica Modem(1/33): State Transition to Call Setup
    Mar  1 17:05:23 UTC: Mica Modem(1/33): Went offhook
    Mar  1 17:05:23 UTC: CSM_PROC_IC2_RING: CSM_EVENT_MODEM_OFFHOOK at slot 1, port 33
    Mar  1 17:05:23 UTC: EVENT_FROM_ISDN: dchan_idb=0x623BA450, call_id=0x2E41, ces=0x1
       bchan=0xD, event=0x4, cause=0x0
    Mar  1 17:05:23 UTC: EVENT_FROM_ISDN:(2E41): DEV_CONNECTED at slot 1, port 33
    Mar  1 17:05:23 UTC: CSM_PROC_IC6_WAIT_FOR_CONNECT: CSM_EVENT_ISDN_CONNECTED at slot 1, port 33
    Mar  1 17:05:23 UTC: Mica Modem(1/33): Link Initiate
    Mar  1 17:05:23 UTC: %ISDN-6-CONNECT: Interface Serial0:13 is now connected to 02155915479 N/A
    Mar  1 17:05:24 UTC: Mica Modem(1/33): State Transition to Connect
    Mar  1 17:05:24 UTC: Mica Modem(1/33): State Transition to V8bis Exchange
    Mar  1 17:05:28 UTC: Mica Modem(1/33): State Transition to Link
    Mar  1 17:05:32 UTC: Mica Modem(1/33): State Transition to Ranging <- !!!!!! Call drops here *******
    Mar  1 17:05:59 UTC: %ISDN-6-DISCONNECT: Interface Serial0:13  disconnected from 02155915479 , call lasted 36 seconds
    Mar  1 17:05:59 UTC: EVENT_FROM_ISDN: dchan_idb=0x623BA450, call_id=0x2E41, ces=0x1
       bchan=0xD, event=0x0, cause=0x10
    Mar  1 17:05:59 UTC: EVENT_FROM_ISDN:(2E41): DEV_IDLE at slot 1, port 33
    Mar  1 17:05:59 UTC: CSM_PROC_IC7_OC6_CONNECTED: CSM_EVENT_ISDN_DISCONNECTED at slot 1, port 33
    Mar  1 17:05:59 UTC: Mica Modem(1/33): Link Terminate(0x6)
    Mar  1 17:05:59 UTC: CSM(1/33): Enter csm_enter_disconnecting_state
    Mar  1 17:06:00 UTC: EVENT_FROM_ISDN: dchan_idb=0x623BA450, call_id=0x2E41, ces=0x1
       bchan=0xD, event=0x0, cause=0x0
    Mar  1 17:06:00 UTC: VDEV_DEALLOCATE: slot 1, port 33 is deallocated
    Mar  1 17:06:00 UTC: Mica Modem(1/33): State Transition to Terminating
    Mar  1 17:06:00 UTC: Mica Modem(1/33): State Transition to Idle
    Mar  1 17:06:00 UTC: Mica Modem(1/33): Went onhook
    Mar  1 17:06:00 UTC: CSM_PROC_IC8_OC8_DISCONNECTING: CSM_EVENT_MODEM_ONHOOK at slot 1, port 33
    Mar  1 17:06:00 UTC: CSM(1/33): Enter csm_enter_idle_state
    CE Router Details:
    Cisco IOS Software, 2800 Software (C2800NM-ADVENTERPRISEK9-M), Version 12.4(25a), RELEASE SOFTWARE (fc2)
    CE External Modem: Paradyne3920
    chat-script:
    ABORT ERROR ABORT BUSY ABORT "NO ANSWER" "" AT&F\\D1\\Q3M0&D2&R0&S1S55=1S0=2&W OK "ATDT \T" TIMEOUT 60 CONNECT \c

  • Problems while making a MovieMaker with different transition and music.

    Hi..I am making a MovieMaker in flash.I dont have much of experince in flash ,There are some problems which I am facing.kindly guide me..Thanks.
    There are 4 things in my project.
    1)Uploading Images-First of all User will Upload the images,Based on those uploads there will be one xml generated which will be stored in a disc and by that xml the images uploaded be the users will be get in the flash.
    Problem1-How to generate an xml file that would be stored in disc or localhost through which we can get the path of images?
    2)Theme Selection-After the images have been uploaded and xml file have been generated then then the images would be loaded in one window.This is for the purpose of viewing those images that has been uploaded by users.After that there is one button below the window "Select Theme".In clicking that Button there is simply another frame opens (by removing child of the previous frames) in which there are some dummy animationswhich are already made .Like in oneAnimation there are 9 Transition effects fading,fly,spiral etc etc and in another Animation there are another 9 effects like zoom,blend  and so onetc.User can select one theme out of suppose 9 themes then that theme is the theme of their movie.There is one file called themes.xml tahat containes all the information of the themes.After the theme is selected ,There is button in ThemeSelection called Select Music.
    3)Music Selection-There are categories of songs like sad,instrumental,slow,pop etc,In each category there are some songs that are stored in server.Whatever the user will select that will be the theme song.songs are also fetching from xml.After selecting the song there is Make Movie Option in the music frame.
    4)Make Movie-Finally based on the above selection the movie is generated which should create new swf dynamically and user can download that movie also with above theme and music selection and those images should play that theme with the background music as selected by user.
    Problem2:-How to generate new swf that donot take images.xml,transition.xml and songs.xml.First of all i dont know how to create new swf at run time while using the file operations.and
    Problem 3-secondly if i made some swf supposingly movie.swf then whatever the user selected then based on those images,theme and songs selection i called the movieClip object of the movie.swf and all those images with the selected transition and background music are playing in it BUT they need the xml files and images.But i want to give the user one independant swf which dont use xml files and images folder.How can i do that?
    The Project is similar to this one
    http://pmdvd.kodak.com/
    Regards
    Ankur

    It looks like there is lack of fundamental understanding of flash/ActionScript capabilities.
    Your post covers too many topics - forum works the best if questions are focused. You may need to polish your knowledge which will allow you to have answers to some of the problems.
    The main thing you should know before proceeding is that one cannot generate swf files at runtime in Flash. And it doesn't matter if you go with Flash or Flex. Should swf generation be a centerpiece of your application, you may want to consider server side compiler.
    Otherwise you may not need to generate swfs at all but allow users to see results of their work with help of dynamic content generation including database. In any case, you probably will need and extensive server side application.

  • What is the proper way to delete video transitions and restore clips?

    I guess this is a two parter.. In the case where you overlap two clips and add a cross-fade, etc., and when you butt two clips together and do a 3D-spin, etc. I am talking about when you are long past using Command-Z to backup. I'd like to restore adjacent clips to their original state before overlaping and/or adding transitions.
     20" Intel iMac (2.0GB RAM, 256MB VRAM, 500GB HD)   Mac OS X (10.4.6)  

    well, i can think of the best way to restore if you think you're gonna get into a transition heavy sequence.
    duplicate your cuts only sequence and add transitions to your duplicate. i often create duplicate sequences and than add a word or two as well as the date as an identifier. when i'm done with the project, i delete the unused sequences or keep them around if i think i may reuse something.
    otherwise, what is wrong with just selecting the transition and deleting?

  • Cannot render audio fade and/or transition and/or title

    I am at my wits end and ready to blow up the computer on this one.
    I have about a dozen
    DV-AVI clips, captured from a Sony camcorder via Firewire.  I am editing them into 7 scenes.  I tried this with the first two scenes and I did a test Burn to File, viewed the VOB in Windows Media Player and all worked well.  I then added 5 more scenes, all with the same transition recipe between scenes, did another Burn to File and found that past the first two scenes, everything was black.  WMP showed video playing, but it was just solid black past the first two scenes.
    I scoured the forum looking for clues and hours later I have absolutely no idea what is going on.   Here are my specs and what I have tried.  I also attached a screen shot showing the 3 areas on my timeline that show different states of rendering (or non-rendering).
    Computer specs: PreE8, Win7 64bit, intel i7, ATI card, 6 GB RAM, 400+GB free HD
    DV-AVI clips, some with the In and Out points trimmed a few seconds.
    I added to each clip Audio Fade In and Fade Out.
    Between each clip is the following: Dip to Black, Title, Dip to Black
    I added a Menu Marker to each title.  They all appear on the menu as they should.
    Background rendering is OFF.
    I am still new to PreE so I still don't quite understand the whole rendering thing.  But as near as I can tell, that is the heart of the problem, but I cannot for the life of me see how to fix it.  As seen on my screen shot, the first two transions are rendered green.  Now skip ahead to the fourth transition and it is red.  Zooming in, the red goes from the start of the audio fade out of the previous clip, through the title, then stops at the start of the next clip.  So I thought it is a transition, the title, menu marker or the audio fade out causing a problem.  however, even when I removed ALL these elements from between and on the 2nd and 3rd clips (the third transition) it is STILL red!  And yes I am pressing the Enter key to render.  There are no effects, keyframes, or anything on the adjacent clips and it won't render.  The only thing I noticed is now the unrendered part is the first 4 seconds of the later clip.
    Why on earth do the first two transitions work, but the rest won't?  Why won't it render after I removed everything except the plain DV-AVI clips?

    Thanks Hunt for all your help, information and encouragement.  I have been able to return to my project (I saved the original with no changes) and was able to adjust the Work Area, Render and Burn to Folder (VOB).  When I tested the VOB, everything worked great!  So that was the problem.  Hurrah!
    FYI--in PreE 8, the Burn to Folder option does NOT have a "Export Work Area" button, BUT the Share to Computer (mpeg) DOES, so that is something good to know.  Obviously the Burn to Folder option in PrE 8 defaults to burning the Work Area.  For my small project, the Work Area concept is not a necessary feature, but I can see how  for larger more complicated projects it is a good way to manage resources.
    Now that I have had some time away and a couple glasses of wine :-) I can be more positive about what I learned.  In my travails,  I learned a lot about rendering, keyframes, the work area,  stumbled across a way to easily search only the Premiere Elements subforum, and a lot about stop markers (which seems to cause some black-screen problems when too near to menu markers).  So it was not a complete waste of time.  Oh yeah, and thanks for the compliment on my post info.  In my forum travels,  I also learned what information is asked for over and over to get more directly to an answer and just put it in the first go-round. And it paid off!
    Well, back to the shop.  My husband thinks I am crazy for using this aggravating software (I used to use Windows Movie Maker) but I keep telling him, PreE 8 is like a Ferrari.  The problem is that it is temperamental and often broken down in the shop causing a lot of frustration.   But when it runs well, it is oh such a sweet thrill, so slick and powerful, that I just can't give it up and go back to the Honda.
    Margthecar

  • Triggering a state transition via time

    Something that comes up often for me is the need to jump from one state to another after a certain amount
    of time (as opposed to a user clicking on something).
    For example, lets say you are prototyping a search interface. The sequence is:
    1) The user fills in a form and clicks "Search"    (state 1)
    2) The UI displays a "searching" indicator for a few seconds (state 2)
    3) Search Results are displayed (state 3)
    Note that the user does not "click" anything to go from "state 2" to "state 3"; it happens
    automatically after some specified time.
    For the life of me I cannon figure out how to do this in Flash Catalyst gracefully. You can kind of fake it
    my fading things in the timeline, but this seems "hacky"; also, I cannot figure out how to fade something in AND
    fade something out in the same transition (to simulate state 2 above).
    Any suggestions?
    Thanks!
    Rob

    Hey! thanx for your quick reply. This really sucks.....
    Date: Sun, 7 Feb 2010 11:06:28 -0700
    From: [email protected]
    To: [email protected]
    Subject: Triggering a state transition via time
    You can't do this in Catalyst; you have to add timer code in Flash Builder. And what totally sucks is that once you modify code in Flash Builder, you can't bring it back into Catalyst; it's a one way street
    >

  • CSM : How to display state transitions ?

    Hi,
    Is there any way on the CSM to monitor the number of state transitions for real servers and virtual servers (like the show summary command on the CSS)? I don't find any information in the detail output of "show mod csm x real detail" or "show mod csm x vserver detail"
    Thank you,
    Yves Haemmerli

    Yves,
    there is no counter tracking this info.
    The CSM will log a message when a server goes down or up. You could save them on a syslog device and use a script to count transitions.
    A CSM command to use to detect if there was probe failures is 'sho mod csm X tech probe'. It counts total of probe [not per real] so.
    Gilles.

  • Running a State Transition on Startup

    Hi there
    Trying to get my ap to change state on startup to run a
    transition animation. The idea is that this is a nice way to bring
    the ap to life, with some movement to bring the interface in.
    Is there a simple trick to do this?
    I have tried state="
    startupState" in the WindowedApplication line which works
    for me in a Flex ap, but in Air produces a long list of complaints
    about transition effects under the category:
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference
    I have tried creationComplete="state='
    startupState'" but get the same result
    Any suggestions? I am quite new to this so may have missed
    something obvious, or perhaps there is a better way than using a
    state transition to run a bit of animation on the interface at
    startup?
    Any help much appreciated
    Andy

    Hello
    The self-help bureau here...(!)
    Just in case anybody else is looking into this I have the
    solution...
    One of my Zoom transitions was set to a duration of zero.
    This plays happily in the Flex world
    In Air land on the other hand zero's are no-no's, so simply
    setting the duration to 0.001 resolved the issue

  • Open MQ 4.3 "Bad transaction state transition"

    We have Open MQ 4.3 in remote, enhanced cluster. We are seeing ERRORs and WARNINGs in broker log file. They occur sporadically, once every couple hours or so. I think they might be related. Anyone have an idea what the problems may be?
    1) "Bad transaction state transition"
    [30/Jun/2009:00:48:12 EDT] ERROR com.sun.messaging.jmq.jmsserver.util.BrokerException: Bad transaction state transition. Cannot perform operation PREPARE_TRANSACTION(56) (XAFlag=null) on a transaction in state STARTED(1).: TUID=8284690576893811200 Xid=62726970706C303130302E6263627372692E6F72672C7365727665722C5032363137332C00E11C0000CD99242E62726970706C303130302E6263627372692E6F72672C7365727665722C503236313733:
    com.sun.messaging.jmq.jmsserver.util.BrokerException: Bad transaction state transition. Cannot perform operation PREPARE_TRANSACTION(56) (XAFlag=null) on a transaction in state STARTED(1).
    at com.sun.messaging.jmq.jmsserver.data.TransactionState.nextState(TransactionState.java:440)
    at com.sun.messaging.jmq.jmsserver.data.handlers.TransactionHandler.doPrepare(TransactionHandler.java:1625)
    at com.sun.messaging.jmq.jmsserver.data.handlers.TransactionHandler.handle(TransactionHandler.java:551)
    at com.sun.messaging.jmq.jmsserver.data.PacketRouter.handleMessage(PacketRouter.java:181)
    at com.sun.messaging.jmq.jmsserver.service.imq.IMQIPConnection.readData(IMQIPConnection.java:1489)
    at com.sun.messaging.jmq.jmsserver.service.imq.IMQIPConnection.process(IMQIPConnection.java:644)
    at com.sun.messaging.jmq.jmsserver.service.imq.OperationRunnable.process(OperationRunnable.java:170)
    at com.sun.messaging.jmq.jmsserver.util.pool.BasicRunnable.run(BasicRunnable.java:493)
    at java.lang.Thread.run(Thread.java:595)
    2) "ROLLBACK_TRANSACTION(48): Ignoring unknown XID"
    [29/Jun/2009:22:54:34 EDT] WARNING ROLLBACK_TRANSACTION(48): Ignoring unknown XID=62726970706C303130302E6263627372692E6F72672C7365727665722C5032363137332C0006140000CD99242E62726970706C303130302E6263627372692E6F72672C7365727665722C503236313733 broker will notify the client
    3) "Heartbeat timeout"
    [29/Jun/2009:22:54:14 EDT] WARNING [B2122]: Heartbeat timeout from /192.168.106.192:32000 [brokerID=jmsnode_brippl0301, brokerSession=8155493556708599552] (seq#=7856, ts=1246330447089, interval=2, len=231) sender=/192.168.106.192:57964
    Steve

    Your question has also been posted to mq-interest alias with broker/appserver log files. The following is based on the log files:
    1) "Bad transaction state transition"
    The server.log you provided shows that right before this exception, there was appserver exception as below. It appears that something was wrong with the application/appserver state:
    [#|2009-06-29T19:03:32.253-0400|WARNING|sun-appserver9.1|javax.enterprise.system.core.transaction|_ThreadID=22;_ThreadName=JMSJCA sync #0(queRouterRequest);Context=RouterJMS_ESB_R1_0032_PPMO_090626/queRouterRequest_svcBpRouterJMS_ejb;_RequestID=f92d8d20-1abb-4c0b-b6eb-cd205eabcd37;|JTS5041: The resource manager is doing work outside a global transaction
    javax.transaction.xa.XAException
    2) "ROLLBACK_TRANSACTION(48): Ignoring unknown XID"
    This can be ignored. By looking at a couple of such WARNING messages in the broker log you provided
    - The transaction was cleaned up on client connection closing and then the client reconnects, appserver attempts to rollback the old transaction.
    3) "Heartbeat timeout"
    This will be logged if the broker didn't receive heartbeat from the other broker for configured timeout period. This can happen occasionally due to network fluctuation. The heartbeat timeout values can be adjusted by broker "Failure Detection Properties"
    http://docs.sun.com/app/docs/doc/820-6740/gguju?a=view

  • Statement caching and batch update

    Can these 2 JDBC features work together ?
    Is it possible while statement is cached to be reparsed (soft) if used in batch update ?
    I am asking this questions because i have a sitution where an insert is cached using implicit statement caching and then put in a batch to exeute batch updates !!! From statspack reports i find that 1/3 of statements are reparsed ... even soft !!!

    Statement caching and batch update work fine together. The most common cause of unexpected soft parses is changing the type of some parameters. If you first bind one type, setInt(1, ...), do addBatch, then bind another type to the same parameter, setString(1, ...), and do addBatch, you will get a soft reparse. There is nothing the JDBC driver can do about this, the RDBMS requires it.
    In general, whatever parse behavior you see with statement caching you would also see without it.
    Douglas

  • Purchasing transitions (and/or creating ones in Motion)

    I'm going to be doing a lot of work for a pretty straight-forward interview type TV show that is looking to spice up its transitions and are open to the idea of purchasing some to go beyond what FCP includes. I was looking at the ones from Eiperle and Eureka (both of which look good, are affordable, and can be used on multiple computers) and Sapphire. I'm wondering A) if there are others I should look into and B) which people recommend for what is essentially an Entertainment Tonight style show.
    Also, I'm wondering if it is possible to create transitions in Motion that can be dropped into FCP (or better yet, if the templates, such as the 'frames/glass' one, can be saved without elements and dropped into FCP as a transition between clips)
    Thanks for your help!

    This link http://www.fxscriptreference.org/ doesn't work for me, it says:
    Forbidden
    You don't have permission to access / on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Apache/1.3.33 Server at www.joemaller.com Port 80
    I really want to make my own scripts in FCP so can you check if this is the right link or if something else is wrong?
    Thanks
    - Aleks

  • Saving projects with Transitions and Titles - iMovie 3

    Every time I edit a movie in iMovie 3, add transitions and titles, and then save, the next time I open the project, I get a window saying there are x number of stray clips (my transition and title clips) and would I like to move them to the clip panes or leave them alone. Either way, they end up being out of order. Why will they not stay in the edited order that I put them in, even after I hit Save?

    I do Save the projects this way and all the clips show up in the edit panel below the clip frames. BUT, none of the Transition or Title clips stay in the edit panel below. Each time I open the saved project, a message window appears saying that there are x number of stray clips (the Transition and Title Clips). Then it asks me if I would like to leave them alone or put them in the clips pane. If I put them in the clips pane, then I have to once again reposition them where they belong in the edit panel below. This happens every time.

Maybe you are looking for

  • Net value is zero in proforma invoice.

    26.11.2010 Hi friends, I am trying to create a proforma invoice against delivery. But on the screen against the items i see the Net value against each item and the over all net value as 0.  But in the condition tab for each item the values are existi

  • Screen turns alot of colors and sound contiues

    I will be watching a video or coming back on after sleep and the screen will turn a bunch of colors. Some times the sound continues as normal, but other times a loud screeching noise starts. It has been happening for a couple of months. Its not very

  • Domain Name & Hosting the Website

    I have made a website for an event I am planning in March. Is there a place on Apple where I can purchase my domain name and host it there? or should I be using another place? I need it to be as cheap as possible...but still be a good place for hosti

  • Statistical only posting even between company codes with no FI postings?

    OK experts - I am trying to accommodate what the customer is asking for here and having a really hard time trying to come up with a solution.  Is it possible to give statistical cost to a project in company A and statistical revenue to a cost center

  • Deposit on Order

    Who knows how to create a Deposit On Order by the DI API only not the UI API ? How it's made in SAP Detail : When we are in a Sales Order, we click on the Payment Means and what it creates it's a Deposit On Order. IT automaticly generate an Incoming