Com sdk issue: order of stop and play events

Hopefully someone can answer a question regarding the Windows COM SDK. I've written a few applications in VB using this interface to monitor my play history. The documentation says that when the track changes, an OnPlayerStopEvent is given followed by an OnPlayerPlayEvent. This has worked perfectly for me until recently when I upgraded to 7.1.0.59 and its associated version of the COM. Now when I skip to a new track, the order of events is Stop then Play, but when I let a track complete and advance to another, the order of events is Play then Stop. This is contrary to the documentation. Is this a bug or am I missing something?
Thanks in advance for your help!
Ted
Dell Precision 3600   Windows XP Pro   iTunes 7.1.0.59, Visual Studio 2005

You should report this issue (if it is still occurring) at http://bugreport.apple.com
If you don't have an ADC account, you can sign up for an "ADC Online" account for free at http://connect.apple.com

Similar Messages

  • Order of stop and start of reporting services

    Hi All,
    I am using 11.1.1.3 version in my laptop,i want know the correct order of stop and start the services,please help me on this.
    Thanks
    Hypuser

    The full order list can be found at :- http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_install/ch05s02.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How do I get my music to quit scrolling and stop and play a song?

    How do I get my music to quit scrolling and stop and play a song?

    Basically it means that the files are not on the location where iTunes is expecting to be.
    What you can do is remove those songs from you playlist, then try to locate them on your harddisk again, and then in iTunes you can choose file > Add folder to Library... , specify the location where you found them and they will be added again.

  • Stop and play buttons...

    How would I go about adding stop and play buttons to a slideshow?
    stop1.addEventListener(MouseEvent.CLICK, stop1);
    play1.addEventListener(MouseEvent.CLICK, play1);
    function stop1(event:MouseEvent){
    if(this.currentFrame == 1)
    { gotoAndStop(this.totalFrames);
    function play1(event:MouseEvent){
    if(this.currentFrame == 1)
    { gotoAndStop(this.totalFrames);

    well idk if the code is even right i need help?  The way the slide show is working is i have it on the timeline....  With this code it doesnt play automatically and when i push play it goes through them in like 2 seconds and you can't see anything?
    stop1.addEventListener(MouseEvent.CLICK, stopSlide);
    play1.addEventListener(MouseEvent.CLICK, playSlide);
    function stopSlide(event:MouseEvent):void {
    stop();
    function playSlide(event:MouseEvent):void {
    play();

  • Podcasts stops and plays a previous one

    In my itunes (latest update), my podcasts randomly stop and played the previous episode. This patterns seems random as well. I don't download podcasts, but stream them (right click, play). However, when I download the podcast and play it, its fine. But I would rather stream it.
    Also, my internet is fine. I am on blazing fast university internet.
    Does anyone have a fix for this?

    delete off any apps that are asking for the wrong apple id and download/sync them over from the correct one

  • HT1725 I downloaded an album and all of the tracks will play about 3/4 of the song then stop and play the next song.  I went to itunes store and it said the songs fully downloaded. So how do I get the full song into my library?

    I downloaded an album and all of the tracks will play about 3/4 of the song then stop and play the next song.  I went to itunes store and it said the songs fully downloaded. So how do I get the full song into my library?

    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copies of the tracks and try redownloading fresh copies. For instructions, see the following document:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the items that are not playing properly. If you can't see "Report a Problem" next to the items, click the "Report a problem" button. Now click the "Report a Problem" links next to the items.

  • Making stop and play functions fool-proof

    I have a timeline control embedded into my flash piece. It
    contains the buttons "Re-Play, Pause, and Play." I am building some
    testing software, therefore I have instances where the
    animation/sound stops and waits for the user to select an answer.
    At first, I had a problem that, when the user would come to a
    stop point, they could simply click the play button and the audio
    would continue (the play button simply held a command like this):
    on (press) {
    play();
    So I changed it to an IF statement that looked for a variable
    before the PLAY button could be pressed. It looks like this:
    MP3Player, Frame 1
    set ("operator",1);
    Play Button
    on (press) {
    if (operator==1) {
    if (operator==2) {
    play();
    set ("operator",1);
    Pause Button
    on (press) {
    stop();
    set ("operator",2);
    It shows that, in order for Play to work, the user must first
    PAUSE the flash piece.
    The problem therein is that if the user comes to a stop in
    the timeline, they can simply click PAUSE and then PLAY and
    continue on the MP3Player element without advancing any of the
    animation. Is there anyone who can help me fix this? Thanks!

    Sorry - yeah you're right i didn't think that through
    completely. Use the code I suggested though, and add more code
    elsewhere. at the moment operator has two states, yeah? 1=playing,
    2=paused. You could introduce a third state - 3=quiz(or whatever's
    going on in your application).
    So wherever you have your stop() action on a frame, add the
    line:
    operator=3;
    and where the user selects their answer(i am assuming the
    animation continues on at this point?) and you have a play()
    action, add the line:
    operator=1;
    this should give you what you're asking for. the fleece does
    have a point though, that it would make sense to remove the
    play/pause buttons altogether during the quiz as they are inactive
    anyway.
    Craig

  • X2: How to stop and play a MP3 file from any place...

    Hi,
    I have some 1 hour talk shows on MP3 on my X2. I play one show. After 10 minutes I want to pause it there and take a call, or go to the menu and add a reminder, and come back to the mp3 and play from the point I stopped (10 minutes). How to do that? 
    When I pause and come back and press play, it starts from the begininging????
    Thanks
    Roahan

    Well a smarter way of implementing this is by using a solution provided by Java Itself.
    If you are using J2SE 6.0+ there is an in built solution provided along with JDK itself and inorder to go ahead with solution the below are set of API which you;d be using it for compiling Java Programs (Files)
    http://java.sun.com/javase/6/docs/api/javax/tools/package-summary.html
    How do i do that ??
    Check out the below articles which would help you of how to do that
    http://www.ibm.com/developerworks/java/library/j-jcomp/index.html
    http://www.javabeat.net/javabeat/java6/articles/java_6_0_compiler_api_1.php
    http://books.google.com/books?id=WVbpv8SQpkEC&pg=PA155&lpg=PA155&dq=%22javax+tools%22+compiling+java+file&source=web&ots=XOt0siYe-f&sig=HH27ovuwvJgklIf8omTykUmy-eM
    Now once we are done with compilation.In order to run a Specific class all you ought to do is create an object and its specific methods of a specified class included in the CLASSPATH which you can manage it easily by usage little bit reflections.
    Hope that might help :)
    REGARDS,
    RaHuL

  • Stop and Play All Child MovieClips in Flash with Actionscript 3.0

    I am stuck with the ActionScript here. I have a very complex animated flash movie for eLearning. These contain around 10 to 15 frames. In each frame I am having multiple movie clip symbols. The animation has been created using a blend of scripting and also normal flash animation.
    Now I want to create pause and play functionality for the entire movie. I was able to create the pause function but when i try to play the movie it behaves very strange.
    I was able to develop the pause functionality by refering to the below mentioned links:
    http://www.unfocus.com/2009/12/07/stop-all-child-movieclips-in-flash-with-actionscript-3-0 /
    http://www.curiousfind.com/blog/174
    Any help in this regard is highly appreciated as i am approaching a deadline.
    I am pasting the code below:
    import flash.display.MovieClip;
    import flash.display.DisplayObjectContainer;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    import fl.transitions.*;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    import flash.events.Event;
    import flash.events.MouseEvent;
    stop();
    // function to stop all movieclips
    function stopAll(content:DisplayObjectContainer):void
        if (content is MovieClip)
            (content as MovieClip).stop();
        if (content.numChildren)
            var child:DisplayObjectContainer;
            for (var i:int, n:int = content.numChildren; i < n; ++i)
                if (content.getChildAt(i) is DisplayObjectContainer)
                    child = content.getChildAt(i) as DisplayObjectContainer;
                    if (child.numChildren)
                        stopAll(child);
                    else if (child is MovieClip)
                        (child as MovieClip).stop();
    // function to play all movieclips
    function playAll(content:DisplayObjectContainer):void
        if (content is MovieClip)
            var movieClip:MovieClip = content as MovieClip;
            if (movieClip.currentFrame < movieClip.totalFrames) // if the main timeline has reached the end, don't play it
       movieClip.gotoAndPlay(currentFrame);
        if (content.numChildren)
            var child:DisplayObjectContainer;
            var n:int = content.numChildren;
            for (var i:int = 0; i < n; i++)
                if (content.getChildAt(i) is DisplayObjectContainer)
                    child = content.getChildAt(i) as DisplayObjectContainer;
                    if (child.numChildren)
                        playAll(child);
                    else if (child is MovieClip)
                        var childMovieClip:MovieClip = child as MovieClip;
                        if (childMovieClip.currentFrame < childMovieClip.totalFrames)
          //childMovieClip.play();
          childMovieClip.play();
    function resetMovieClip(movieClip:MovieClip):MovieClip
        var sourceClass:Class = movieClip.constructor;
        var resetMovieClip:MovieClip = new sourceClass();
        return resetMovieClip;
    pauseBtn.addEventListener(MouseEvent.CLICK, onClickStop_1);
    function onClickStop_1(evt:MouseEvent):void
    MovieClip(root).stopAll(this);
    myTimer.stop();
    playBtn.addEventListener(MouseEvent.CLICK, onClickPlay_1);
    function onClickPlay_1(evt:MouseEvent):void
    MovieClip(root).playAll(this);
    myTimer.start();
    Other code which helps in animating the movie and other functionalities are as pasted below:
    stage.addEventListener(Event.RESIZE, mascot);
    function mascot():void {
    // Defining variables
    var mc1:MovieClip = this.mascotAni;
    var sw:Number = stage.stageWidth;
    var sh:Number = stage.stageHeight;
    // resizing movieclip
    mc1.width = sw/3;
    mc1.height = sh/3;
    // positioning mc
    mc1.x = (stage.stageWidth/2)-(mc1.width/2);
    mc1.y = (stage.stageHeight/2)-(mc1.height/2);
    // keeps the mc1 proportional
    mc1.scaleX <= mc1.scaleY ? (mc1.scaleX = mc1.scaleY) : (mc1.scaleY = mc1.scaleX);
    stage.removeEventListener(Event.RESIZE, mascot);
    mascot();
    this.mascotAni.y = 100;
    function mascotReset():void
    // Defining variables
    var mc1:MovieClip = this.mascotAni;
    stage.removeEventListener(Event.RESIZE, mascot);
    mc1.width = 113.45;
    mc1.height = 153.85;
    mc1.x = (stage.stageWidth/2)-(mc1.width/2);
    mc1.y = (stage.stageHeight/2)-(mc1.height/2);
    // keeps the mc1 proportional
    mc1.scaleX <= mc1.scaleY ? (mc1.scaleX = mc1.scaleY) : (mc1.scaleY = mc1.scaleX);
    var interval:int;
    var myTimer:Timer;
    // function to pause timeline
    function pauseClips(secs:int, myClip:MovieClip):void
    interval = secs;
    myTimer = new Timer(interval*1000,0);
    myTimer.addEventListener(TimerEvent.TIMER, goNextFrm);
    myTimer.start();
    function goNextFrm(evt:TimerEvent):void
      myTimer.reset();
      myClip.nextFrame();
      myTimer.removeEventListener(TimerEvent.TIMER, goNextFrm);
    // function to pause timeline on a particular label
    function pauseClipsLabel(secs:int, myClip:MovieClip, myLabel:String):void
    interval = secs;
    myTimer = new Timer(interval*1000,0);
    myTimer.addEventListener(TimerEvent.TIMER, goNextFrm);
    myTimer.start();
    function goNextFrm(evt:TimerEvent):void
      myClip.gotoAndStop(myLabel);
      myTimer.removeEventListener(TimerEvent.TIMER, goNextFrm);
    MovieClip(root).pauseClips(4.5, this);
    // function to fade clips
    function fadeClips(target_mc:MovieClip, next_mc:MovieClip, from:Number, to:Number):void
    var fadeTW:Tween = new Tween(target_mc, "alpha", Strong.easeInOut, from, to, 0.5, true);
    fadeTW.addEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    function fadeFinish(evt:TweenEvent):void
      next_mc.nextFrame();
      fadeTW.removeEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    // function to fade clips with speed
    function fadeClipsSpeed(target_mc:MovieClip, next_mc:MovieClip, from:Number, to:Number, speed:int):void
    var fadeTW:Tween = new Tween(target_mc, "alpha", Strong.easeInOut, from, to, speed, true);
    fadeTW.addEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    function fadeFinish(evt:TweenEvent):void
      next_mc.nextFrame();
      fadeTW.removeEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    // function to show screen transitions
    function screenFx(target_mc:MovieClip, next_mc:MovieClip):void
    //var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Iris, direction:Transition.OUT, duration:1.2, easing:Strong.easeOut, startPoint:5, shape:Iris.CIRCLE});
    tranFx.addEventListener("allTransitionsOutDone",doneTrans);
    function doneTrans(evt:Event):void
      next_mc.nextFrame();
      tranFx.removeEventListener("allTransitionsOutDone",doneTrans);
    // function to show screen transitions inverse
    function screenFxInv(target_mc:MovieClip, next_mc:MovieClip):void
    var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Iris, direction:Transition.IN, duration:2, easing:Strong.easeOut, startPoint:5, shape:Iris.SQUARE});
    tranFx.addEventListener("allTransitionsInDone",doneTrans);
    function doneTrans(evt:Event):void
      next_mc.nextFrame();
      tranFx.removeEventListener("allTransitionsInDone",doneTrans);
    // function to zoom in
    function zoomFx(target_mc:MovieClip):void
    //var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Zoom, direction:Transition.IN, duration:3, easing:Strong.easeOut});
    //tranFx.addEventListener("allTransitionsInDone",doneTrans);
    /*function doneTrans(evt:Event):void
      next_mc.nextFrame();
    // Blinds Fx
    function wipeFx(target_mc:MovieClip):void
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Wipe, direction:Transition.IN, duration:3, easing:Strong.easeOut, startPoint:9});
    // Blinds Fx Center
    function fadePixelFx(target_mc:MovieClip):void
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Fade, direction:Transition.IN, duration:1, easing:Strong.easeOut});
    tranFx.startTransition({type:PixelDissolve, direction:Transition.IN, duration:1, easing:Strong.easeOut, xSections:100, ySections:100});

    This movie is an animated movie from the start to end. I mean to say that though it stops at certain keyframes in the timeline it stops for only a certain time and then moves on to the next animation sequence.
    Its not an application where the user can interact.
    On clicking the play button i want the movie to play normally as it was playing before. If the user has not clicked on the pause button it would anyhow play from start to finish.
    Is there anyway where i could send in the fla file?

  • Order to stop and start Replication

    Hi All,
    We have bi-directional replication using streams.We want to stop and restart it .
    Would you please help me in deciding the order of different queues(Capture/Apply/Propagation)
    Thanks in Advance!!!
    Kind Regards

    First stop propagation. - no more messages sent.
    Then stop capture. - if no messages were sent then there should be none to capture.
    Then stop apply. - and if nothing is captured then there is nothing to apply.
    When restarting reverse the order.

  • Wiki (Web) start issue - have to stop and start to work

    On my server, I reboot servers weekly.  In order to get web services working (to get to wiki pages) I have to stop, then start the services.  If I do not, then when going to any wiki pages i get the message "server is starting".  to be clear, all other colaboration services are working (ie chat, ical, and address book).  After stopping and re-starting the web services, everything is happy untill the next reboot (does seem to be related to rebooting only, not stopping and then starting the services while the machine is running)
    Log: apache2/error_log
    Fri Jan 27 09:05:05 2012] [notice] Graceful restart requested, doing restart
    [Fri Jan 27 09:05:06 2012] [notice] Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8r DAV/2 PHP/5.3.6 configured -- resuming normal operations
    [Fri Jan 27 09:05:06 2012] [warn] long lost child came home! (pid 330)
    [Fri Jan 27 09:05:40 2012] [notice] caught SIGTERM, shutting down
    [Fri Jan 27 09:05:42 2012] [notice] Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8r DAV/2 PHP/5.3.6 configured -- resuming normal operations
    [Fri Feb 03 17:12:31 2012] [notice] caught SIGTERM, shutting down
    [Fri Feb 03 17:13:43 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    [Fri Feb 10 17:30:33 2012] [notice] caught SIGTERM, shutting down
    [Fri Feb 10 17:31:43 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    [Fri Feb 17 17:06:22 2012] [notice] caught SIGTERM, shutting down
    [Fri Feb 17 17:07:14 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    [Fri Mar 09 17:22:36 2012] [notice] caught SIGTERM, shutting down
    [Fri Mar 09 17:23:43 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    [Tue Mar 13 11:28:42 2012] [notice] caught SIGTERM, shutting down
    [Tue Mar 13 11:28:43 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    [Fri Mar 23 17:02:27 2012] [notice] caught SIGTERM, shutting down
    [Fri Mar 23 17:03:39 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    [Fri Mar 30 17:21:34 2012] [notice] caught SIGTERM, shutting down
    [Fri Mar 30 17:22:51 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    [Fri Apr 06 17:15:52 2012] [notice] caught SIGTERM, shutting down
    [Fri Apr 06 17:16:51 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    [Fri Apr 13 17:03:41 2012] [notice] caught SIGTERM, shutting down
    [Fri Apr 13 17:04:39 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    [Tue Apr 24 03:15:09 2012] [notice] SIGHUP received.  Attempting to restart
    [Tue Apr 24 03:15:09 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    [Fri Apr 27 17:09:53 2012] [notice] caught SIGTERM, shutting down
    [Fri Apr 27 17:22:54 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    [Tue May 01 11:54:11 2012] [notice] caught SIGTERM, shutting down
    [Tue May 01 11:54:13 2012] [notice] Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 configured -- resuming normal operations
    Log: /wikid/error.log
    2012-05-01 00:02:52-0400 [-] no groups
    2012-05-01 00:12:52-0400 [-] no groups
    2012-05-01 00:22:52-0400 [-] no groups
    2012-05-01 00:32:52-0400 [-] no groups
    2012-05-01 00:42:52-0400 [-] no groups
    2012-05-01 00:52:52-0400 [-] no groups
    2012-05-01 01:02:52-0400 [-] no groups
    2012-05-01 01:12:52-0400 [-] no groups
    2012-05-01 01:22:52-0400 [-] no groups
    2012-05-01 01:32:52-0400 [-] no groups
    2012-05-01 01:42:52-0400 [-] no groups
    2012-05-01 01:52:52-0400 [-] no groups
    2012-05-01 02:02:52-0400 [-] no groups
    2012-05-01 02:12:52-0400 [-] no groups
    2012-05-01 02:22:52-0400 [-] no groups
    2012-05-01 02:32:52-0400 [-] no groups
    2012-05-01 02:42:52-0400 [-] no groups
    2012-05-01 02:52:52-0400 [-] no groups
    2012-05-01 03:02:52-0400 [-] no groups
    2012-05-01 03:12:52-0400 [-] no groups
    2012-05-01 03:22:52-0400 [-] no groups
    2012-05-01 03:32:52-0400 [-] no groups
    2012-05-01 03:42:52-0400 [-] no groups
    2012-05-01 03:52:52-0400 [-] no groups
    2012-05-01 04:02:52-0400 [-] no groups
    2012-05-01 04:12:52-0400 [-] no groups
    2012-05-01 04:22:52-0400 [-] no groups
    2012-05-01 04:32:52-0400 [-] no groups
    2012-05-01 04:42:52-0400 [-] no groups
    2012-05-01 04:52:52-0400 [-] no groups
    2012-05-01 05:02:52-0400 [-] no groups
    2012-05-01 05:12:52-0400 [-] no groups
    2012-05-01 05:22:52-0400 [-] no groups
    2012-05-01 05:32:52-0400 [-] no groups
    2012-05-01 05:42:52-0400 [-] no groups
    2012-05-01 05:52:52-0400 [-] no groups
    2012-05-01 06:02:52-0400 [-] no groups
    2012-05-01 06:12:52-0400 [-] no groups
    2012-05-01 06:22:52-0400 [-] no groups
    2012-05-01 06:32:52-0400 [-] no groups
    2012-05-01 06:42:52-0400 [-] no groups
    2012-05-01 06:52:52-0400 [-] no groups
    2012-05-01 07:02:52-0400 [-] no groups
    2012-05-01 07:12:52-0400 [-] no groups
    2012-05-01 07:22:52-0400 [-] no groups
    2012-05-01 07:32:52-0400 [-] no groups
    2012-05-01 07:42:52-0400 [-] no groups
    2012-05-01 07:52:52-0400 [-] no groups
    2012-05-01 08:02:52-0400 [-] no groups
    2012-05-01 08:12:52-0400 [-] no groups
    2012-05-01 08:22:52-0400 [-] no groups
    2012-05-01 08:32:52-0400 [-] no groups
    2012-05-01 08:42:52-0400 [-] no groups
    2012-05-01 08:52:52-0400 [-] no groups
    2012-05-01 09:02:52-0400 [-] no groups
    2012-05-01 09:12:52-0400 [-] no groups
    2012-05-01 09:22:52-0400 [-] no groups
    2012-05-01 09:32:52-0400 [-] no groups
    2012-05-01 09:42:52-0400 [-] no groups
    2012-05-01 09:52:52-0400 [-] no groups
    2012-05-01 10:02:52-0400 [-] no groups
    2012-05-01 10:12:52-0400 [-] no groups
    2012-05-01 10:22:52-0400 [-] no groups
    2012-05-01 10:32:52-0400 [-] no groups
    2012-05-01 10:42:52-0400 [-] no groups
    2012-05-01 10:52:52-0400 [-] no groups
    2012-05-01 11:02:52-0400 [-] no groups
    2012-05-01 11:12:52-0400 [-] no groups
    2012-05-01 11:22:52-0400 [-] no groups
    2012-05-01 11:32:52-0400 [-] no groups
    2012-05-01 11:42:52-0400 [-] no groups
    2012-05-01 11:52:52-0400 [-] no groups
    2012-05-01 11:54:11-0400 [-] Received SIGTERM, shutting down.
    2012-05-01 11:54:11-0400 [-] Stopping
    2012-05-01 11:54:11-0400 [-] userPrefsFlushLooper stopped looping, doing final flush
    2012-05-01 11:54:11-0400 [-] mailingListFlushLooper stopped looping, doing final flush
    2012-05-01 11:54:11-0400 [-] no groups
    2012-05-01 11:54:11-0400 [-] Unhandled error in Deferred:
    2012-05-01 11:54:11-0400 [-] Unhandled Error
        Traceback (most recent call last):
          File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/threadi ng.py", line 497, in __bootstrap
          File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/threadi ng.py", line 522, in __bootstrap_inner
          File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/threadi ng.py", line 477, in run
        --- <exception caught here> ---
          File "/usr/share/caldavd/lib/python/twisted/python/threadpool.py", line 210, in _worker
            result = context.call(ctx, function, *args, **kwargs)
          File "/usr/share/caldavd/lib/python/twisted/python/context.py", line 59, in callWithContext
            return self.currentContext().callWithContext(ctx, func, *args, **kw)
          File "/usr/share/caldavd/lib/python/twisted/python/context.py", line 37, in callWithContext
            return func(*args,**kw)
          File "/usr/share/wikid/lib/python/apple_utilities/service.py", line 112, in delayedStart
            RepositoryManager.ensureRepository()
          File "/usr/share/wikid/lib/python/apple_utilities/RepositoryManager.py", line 55, in ensureRepository
            _ensureDirectoryWithReadWriteAccess(path)
          File "/usr/share/wikid/lib/python/apple_utilities/RepositoryManager.py", line 27, in _ensureDirectoryWithReadWriteAccess
            _ensureDirectory(inPath)
          File "/usr/share/wikid/lib/python/apple_utilities/RepositoryManager.py", line 24, in _ensureDirectory
            os.mkdir(inPath)
        exceptions.OSError: [Errno 2] No such file or directory: '/Volumes/Cota_Files/Library/Collaboration'
    2012-05-01 11:54:11-0400 [-] Main loop terminated.
    2012-05-01 11:54:11-0400 [-] Server Shut Down.
    2012-05-01 11:54:15-0400 [-] Log opened.
    2012-05-01 11:54:15-0400 [-] twistd 8.2.0 (/usr/bin/python 2.6.1) starting up.
    2012-05-01 11:54:15-0400 [-] reactor class: twisted.internet.selectreactor.SelectReactor.
    2012-05-01 11:54:15-0400 [-] Current log level is warn
    2012-05-01 11:54:15-0400 [-] twisted.web.server.Site starting on 8086
    2012-05-01 11:54:15-0400 [-] twisted.web2.channel.http.HTTPFactory starting on 8087
    2012-05-01 11:54:15-0400 [-] Starting
    2012-05-01 11:54:16-0400 [-] u"Couldn't load preferences for:traceyfarquharcotaoilcom at /Volumes/Cota_Files/Library/Collaboration/User Preferences/traceyfarquharcotaoilcom.plist"
    2012-05-01 11:54:17-0400 [-] in migration. repo version is: 23
    2012-05-01 11:54:17-0400 [-] Running
    2012-05-01 11:54:28-0400 [-] 127.0.0.1 - - [01/May/2012:15:54:27 +0000] "POST / HTTP/1.1" 200 130 "-" "Twisted/XMLRPClib"
    2012-05-01 11:54:28-0400 [HTTPChannel,1,127.0.0.1] 127.0.0.1 - - [01/May/2012:15:54:27 +0000] "POST / HTTP/1.1" 200 129 "http://aphrodite.cotaoil.net/groups/cotaedu/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:12.0) Gecko/20100101 Firefox/12.0"
    2012-05-01 11:54:28-0400 [-] 127.0.0.1 - - [01/May/2012:15:54:27 +0000] "POST / HTTP/1.1" 200 130 "-" "Twisted/XMLRPClib"
    2012-05-01 11:54:28-0400 [-] 127.0.0.1 - - [01/May/2012:15:54:27 +0000] "POST / HTTP/1.1" 200 57751 "http://aphrodite.cotaoil.net/groups/cotaedu/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:12.0) Gecko/20100101 Firefox/12.0"
    2012-05-01 11:54:29-0400 [HTTPChannel,3,127.0.0.1] 127.0.0.1 - - [01/May/2012:15:54:28 +0000] "POST / HTTP/1.1" 200 138 "http://aphrodite.cotaoil.net/groups/cotaedu/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:12.0) Gecko/20100101 Firefox/12.0"
    2012-05-01 11:54:29-0400 [-] 127.0.0.1 - - [01/May/2012:15:54:28 +0000] "POST / HTTP/1.1" 200 130 "-" "Twisted/XMLRPClib"
    2012-05-01 11:54:29-0400 [-] 127.0.0.1 - - [01/May/2012:15:54:28 +0000] "POST / HTTP/1.1" 200 130 "-" "Twisted/XMLRPClib"
    2012-05-01 12:44:29-0400 [-] 127.0.0.1 - - [01/May/2012:16:44:28 +0000] "POST / HTTP/1.1" 200 57751 "http://aphrodite.cotaoil.net/groups/cotaedu/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:12.0) Gecko/20100101 Firefox/12.0"
    Log: wikid/access.log - this just shows my attemtps to hit a bookmark to /groups/cotaedu/wiki/167af/Adding_a_new_account.html not sure its relevant
    a/5.0 (Macintosh; Intel Mac OS X 10.7; rv:12.0) Gecko/20100101 Firefox/12.0"
    aphrodite.cotaoil.net - unauthenticated [01/May/2012:11:50:10 -0400] "GET /groups/cotaedu/wiki/167af/Adding_a_new_account.html HTTP/1.1" 503 1428 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:12.0) Gecko/20100101 Firefox/12.0"
    aphrodite.cotaoil.net - unauthenticated [01/May/2012:11:50:16 -0400] "GET /groups/cotaedu/wiki/167af/Adding_a_new_account.html HTTP/1.1" 503 1428 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:12.0) Gecko/20100101 Firefox/12.0"
    Thanks for any and all help.

    Apple Mobile Device not Starting
    ·   Windows Vista or Windows 7
    In the Start SearchServices.
    In the Programs
    Select Apple Mobile DeviceStop the service
    After the service has stopped, click Start the service.
    After the Apple Mobile Device service has started again, open iTunes and connect the device.

  • Using a CWM format XML as datastore; COM SDK to read the file and create Universe

    Hello everyone
    We are in the process of migrating from a metadata store to BusinessObjects Universe and the plan is to use Java/COM SDK to accomplish that. We have run into limitations with both the SDKs. Java SDK doesn't provide that facility and using COM SDK we are trying to read from a XML file (metadata in CWM format) and create the universe but so far haven't been successful. If the (Universe)Designer can read a CWM format xml file (say created from BODS) we are wondering why can't a customer made COM program do the same.
    Has anyone attempted this and been successful. Please acknowledge.
    Thanks

    I have written C#.NET code to build universes on the fly using the Designer SDK with no problems.  However, I wasn't using CWM formatted data to do this.
    I have two suggestions for you:
    1.  Since not all of the functionality in the Designer tool seems to be available through the SDK, can you parse the CWM xml file in your code and build the universe based on the data instead of trying have Designer build it?
    2.  Since you're using Java, you may get better answers by posting this question in the Java SDK Application Development space here:  http://scn.sap.com/community/bi-platform/java-sdk
    -Dell

  • Simple Stop and Play

    I have been trying to create a very simple slideshow for a
    friends site I done for him to advertise his
    business. The photos,
    I suggested would be better if they were done as a slideshow and
    the idea was to have each picture fade in, stop, click to play,
    fade out fade in next, stop, etc etc.
    I have tried every tutorial I can find and done most of the
    things in the Visual Quick Start Guide Macromedia Flash 8 and still
    I cannot get it to work. All I really want is to stop, click and
    play at each point along the timeline at regular points.
    Can anyone please help me with this. The .fla I am working on
    can be found
    here
    Any help will be greatly appreciated as I am running out of
    hair left to pull out.
    Nig

    I have made changes to your file. It now works as you want.
    Email me so I can send it to you.
    chosenson Please reference
    this post in the subject line.
    Thanks

  • Video play stops and plays

    when i click on a video such as youtube or news stie . it does not play smoothly , it stops and goes , what would be the problem

    is this a case with video that is streamed over the internet? if so then dont start it straight away ... your internet connection may not be fast enough to load the video and play it straight away

  • Order of focusLost and actionPerformed events in Swing on Red Hat

    Hi!
    I have quite complicated bug, which must be fixed as soon as possible. Currently I am drinking my fifth coffee and I cannot find anything about this bug on the net.
    The bug looks like that:
    I have pane with several JTextField on it and a Save Button.
    Each JTextField has FocusListener with focusLost method. On focusLost event the entered text is validated and moved to the model object.
    After pressing the Save Button model object is saved to DB. This work perfect on Windows but not on Red Hat ( I have not yet check on Solaris).
    I enter the text in text field and press the save button with mouse. Then I receive information that the actionPerformed is called and save model object without entered text. After saving the focusLost is invoked and move the entered text to the previous saved object.
    I have look into several books but I haven't find any information about order of events. Maybe if I took some more time, but project dead line is soon.
    This is not my application, I only maintain it. I cannot read the JTextField on actionPerformed due to validation of data.
    Have someone any experience with such problem?
    I will be very appreciated for any help.

    I haven't receive any reply yet, but maybe my workaround will help someone else.
    I have figured out, that if I implement actionPerformed as InvokeLater it will cause proper order of focusLost and actionPerformed.
    So it looks like:
    actionPerformed() {
      SwingInvoke.invokeLater(new Runnable() {
        createSaveThread()
        startSaveTread()
    }Have a nice day :)

Maybe you are looking for