Quicktime Multicast Broadcast locks-up/crashes Airports

We are experimenting with QT Broadcast which works like a charm in unicast mode. However, what we really need to do is generate a couple of streams of h.264 video in multicast. We have managed to get it working fairly easily, however the multicast seems to cause our assorted Airports (all extremes, some of .11n) to lockup. The freeze usually lasts 20 to 30 seconds. The problem will ping pong around the network as long as the multicast is up.
The topology is roughly 25 Airports on a moderately sizable campus network with a dozen or so switches running 10/100 mbps. we are using a 10.x.x.x address space internally with not particular subnetting. I've tried fiddling with things like the packet size (the TTL is set to 1) with no particular improvement. We are using the default multicast address settings provided by QTB.
I would love some suggestions on getting this to work.

And, piggybacking on tjk's queries:
Do you have one AC adapter that stays in the office and another that travels with the Powerbook outside the office?
Does the office have any sort of power-conditioning equipment installed, i.e. to smooth voltage irregularities, filter out noise, etc?
Is your use of the PB at the office subtly different from your use elsewhere, i.e. are there keystroke combinations you use more often elsewhere, and not at the offfice? Particularly ones involving the left Command key? How many other places have you used the Powerbook in, where the problems have occurred? Are we talking about two or three other places, or a dozen?
Unless an odd power-supply issue is in play, it seems exceedingly strange that the office should provide immmunity from whatever affects the PB everywhere else (except at the Apple Store, of course). Are you quite sure these freezes never happen at the office?
I've never heard of any aspect of one's wireless configuration (or malfunction of same) causing a whole computer to freeze, so I strongly doubt that your networking arrangements in any location are implicated here.
If your computer were freezing up unpredictably wherever it goes, tjk and I would both immediately have urged you to look into the Orange Ribbon Cable Issue/Fix, as it has come to be known around here. Unless your PB is the 400MHz or 500MHz model, which don't suffer from that problem, I suggest that you try the free, quick and easy ribbon cable fix just to see whether it makes any difference.
Please keep us posted on your progress.

Similar Messages

  • When exporting as a quicktime movie, final cut pro crashes!

    When exporting as a quicktime movie, final cut pro crashes about 3/4ths the way through the 12 hour process. I'm saving it to a La Cie 500 GB disc by fire wire. It's worked before but after I converted one SD sequence (that was shot in HD)to a HD sequence, I haven't been able to export it and it won't play straight at anything bigger than 25% size. Please if you have any advice I won't forget it. I'm trying to export as ProHD 1060i.

    I converted one SD sequence (that was shot in HD)to a HD sequence
    How, exactly? And what were the settings of your new HD sequence? DVCPRO HD 1080 60i?

  • Should (must )i give port number  Multicast / broadcast using JMF ?

    hi,
    i transmit jmf webcam usng RTP to unicast and multi-unicast ..
    now i would like to multicast .. and broadcast ..
    do i must give port number while multicast, broadcast ...
    i came to multicast to avoid give port number same in receive and transmit
    is there any way just transmit and receive webcam without giving port number ( multicat or broad cast or any other way)
    plz give exact difference between multicast and broad cast ..
    plzz...

    Broadcast is link level, so LAN level. You transmit to all others host in the subnet using the broadcast addrees of the subnet(lan).
    Multicast is over udp, so over ip. You can transmit over internet, if the router supports multicast. You need to use multicast ip addresses and of course 2 ports(udp) for each session.

  • Itunes 7.0 or Quicktime 7.1.3 update disabled airport connection??

    I just ran the automatic update which installed Itunes 7.0 and Quicktime 7.1.3
    Afterward my airport connection could not get an ip address. (It had the self assigned 169.254.x.x address) The airport was not actually disabled, It was still connected, but could not access the internet via the airport. Ethernet was unaffected. We have another computer which had not been updated and it still connected via airport no problem.
    Then, after about an hour of searching the discussions for an answer, just as I was writing this, the problem resolved itself.
    Very strange.

    I try and download QuickTime stand alone, but it only is a package with Itunes,
    it is available as a standalone. there are two different versions of the installer on the download page. take a closer look at the area of the page immediately below the "Download the Free Player" heading (to the left of the page):
    Quicktime 7.1.3 Installers … get the one that doesn’t mention itunes

  • Sockets, multicast/broadcast, UDP, TCP, SO_REUSEADDR, SO_REUSEPORT and SO_EXCLUSIVEADDRUSE

    EDIT: the topic was moved to https://social.msdn.microsoft.com/Forums/vstudio/en-US/6b0fbcbc-1139-4d7a-a62a-a5b16a6e0229/sockets-multicastbroadcast-udp-tcp-soreuseaddr-soreuseport-and-soexclusiveaddruse?forum=wcf .
    Hello,
    in the project Dao (https://github.com/daokoder/dao) we got stuck upon a problem with a wrapper interface for bind(), which should be multiplatform (work on all Windows versions from XP higher and also on BSDs and also other POSIX systems) and offer the
    following two options:
    1) A safe bind of one socket, one address (specific or wildcard) and one port such that no other process (disregarding the user the process runs under and disregarding user privileges) could be successful with a call to bind() on the same socket with the
    same address and the same port.
    2) A bind with allowing multicast/broadcast, reuse of address, port and all these disregarding the state of the socket (e.g. TIME_WAIT) and disregarding the type of connection (UDP, TCP). In other words, the behavior should be the same a the behavior of
    BSD sockets in all cases and under all conditions.
    The main differences between BSD and Windows are conveniently described on http://stackoverflow.com/questions/14388706/socket-options-so-reuseaddr-and-so-reuseport-how-do-they-differ-do-they-mean-t . According to that, one would say that a solution:
    1) For BSD "0" and for Windows "SO_EXCLUSIVEADDRUSE"
    2) For BSD "SO_REUSEPORT | SO_REUSEADDR" and for Windows "SO_REUSEADDR"
    is enough. But it's not true. For example due to Enhanced Socket Security and their behavior described in the table http://msdn.microsoft.com/en-us/library/windows/desktop/ms740621(v=vs.85).aspx (after first call to bind() with wildcard address and SO_REUSEADDR
    set, a second call to bind() with non-wildcard address and SO_REUSEADDR set will fail with error WSAEACCES).
    A solution might be to gather all the needed information (like user id, if there are any processes using that particular socket and if a call to connect() was already issued in case of TCP) and according to this information use the right mix of options SO_REUSEADDR,
    SO_EXCLUSIVEADDRUSE and others if needed. We didn't find though enough documentation about where to get all the needed information. Note that this solution would need an atomic query on socket (for all the information) in conjunction with a call to bind().
    Another solution could be to call bind() with different flags and decide upon the return error codes. This is though a nasty hack we would like to avoid.
    The question for you is, if you happen to know about any better solution than the ones mentioned above. There is a public discussion about this problem starting with comment https://github.com/daokoder/dao/issues/243#issuecomment-60434078 .
    Thank you in advance!

    Hi dao_lang_rulezz,
    Thanks for posting in the TechNet Forum.
    As my point of viewer, this requirement is related to program developing issue.
    This forum is related to Windows 8.1 Client.
    To receive better support, it is recommend to ask in corresponding developing forum.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • QT Broadcast multicast freezes/crashes Airport hubs

    I originally posted this in Leopard server and didn't get any responses so I'll try this forum instead ...
    We are experimenting with QT Broadcast (running on Leopard Xserve) which works like a charm in unicast mode. However, what we really need to do is generate a couple of streams of h.264 video in multicast. We have managed to get it working fairly easily, however the multicast seems to cause our assorted Airports (all extremes, some of .11n) to lockup. The freeze usually lasts 20 to 30 seconds. The problem will ping pong around the network as long as the multicast is up.
    The topology is roughly 25 Airports on a moderately sizable campus network with a dozen or so switches running 10/100 mbps. we are using a 10.x.x.x address space internally with not particular subnetting. I've tried fiddling with things like the packet size (the TTL is set to 1) with no particular improvement. We are using the default multicast address settings provided by QTB.
    I would love some suggestions on getting this to work.

    Well, thanks for the help, everyone...
    In the hope that this will help others: I was trying to work out what I could do to solve the nosediving QT problem (flushing caches with Onyx or Yasu--look 'em up on Versiontracker--trashing plist files as mentioned before on these very pages, creating new User accounts (QT still crashed), re-running hardware tests, and following the excellent advice at http://forums.osxfaq.com/viewtopic.php?t=7269.
    The crash (Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x0cccb408) seemed to have a common cause in the crashed thread (0 QuickTimeH264.altivec 0x9970b6c8 JVTLibDecoDispose + 168920).
    I don't know if it's just coincidence that the JVTLibDecoDispose problem has disappeared with the latest QT 7.1.3. update, but if it isn't, I'd like to thank the folk at Apple who took the time to research and fix this bug. It is truly appreciated, and I can work overseas now safe in the knowledge that iChat sessions with my family should actually work properly.
    I've been watching Steve Jobs webcasts and movie trailers all evening, and I'm delighted!

  • QuickTime Live Broadcast issues.

    After upgrading to 802.11n, I have had a problem watching Live QuickTime broadcasts in both wired and wireless modes. Video / audio drops out constantly and what video I do get, is severely pixelated and is totaly unusable.
    I have re-installed my 802.11g unit and the problem goes away. I have never had this problem untill I replaced my AirPort Extreme "g".
    I have tried port mapping QuickTime Server with no change.
    I have tried everything I can think of with no luck. Am I the only one with this problem? Did I miss a setting somewhere? How is this problem corrected?
    Thank you all for your assistance.
    MacBook Pro, PowerMac G5   Mac OS X (10.4.9)   3GB / 500k DSL

    i have the same problem ... and earlier posts here haven't yielded any solutions. See:
    http://discussions.apple.com/thread.jspa?messageID=4535843&#4535843
    btw: the same computer works fine at the local Apple Store (which uses the 802.11n Extreme) ... but not with the 802.11n Extreme at my home. The Apple Store folks say that aside from assigning specific channels, they have only "default" settings. I tried changing my channel to something other than Automatic ... but it doesn't help.
    Since the earlier post - I've set-up the older 802.11g unit and got screen captures of all the settings. Then went back to the 802.11n and ensured that the set-up of the two units are identical (to the extent there is 1-to-1 correspondence).
    also: two of my systems also have the latest releases of Quicktime and Flip4Mac. They have problems of their own! (See their discussion forums). But my older iBook has the same software that has been used without issues for the past several months. The only "new" item in the system is the new 802.11n base station.
    iBook G4, MacPro, iMac   Mac OS X (10.4.9)   see message content

  • Imovie locks up/crashes every time I drop a film clip into the project

    Almost every time that I drop in a film clip to my current project, iMovie locks up and crashes producing a long readout for Apple.  I've made plenty of projects, but this one is due by Friday. I have to keep waiting to close it and go back in.  Every so often, a clip will drop in perfectly.  Sometimes, just the audio drops in (no video).  This will take forever at this rate!  Any ideas?

    You could try converting the clips to DV using MPEG Streamclip, then import the resulting QT DV clips into FCE. In MPEG Streamclip, select Export to QuickTime, then select Compression = "Apple DV/DVCPRO NTSC" with a 720x480 frame size. I don't think that selecting "Other" frame size will work, I suspect it would still require rendering once in FCE.
    Alternatives
    You could also try using MPEG Streamclip to convert the video to Apple Intermediate Codec, selecting the 1280x720 (HDTV 720p) frame size .
    You might look into whether your camcorder can downconvert the video to DV during playback, and recapture the video in FCE using the DV-NTSC easy setup.
    Provided one of these 3 techniques works, it will be better & faster than rendering your existing video clips in FCE.

  • IPhone lock-up, crash & rebooting issues?

    Hi, All – I have the original iPhone with 2.0 software. Since the initial install and even after doing a restore on it, the phone has been crashing and rebooting intermittently. I am using AT&T service, and I have never attempted to unlock the phone or run arbitrary code on it, so these issues are baffling to me. Below is a brief list of what I’ve encountered. Again, the iPhone is crashing and rebooting, not the apps:
    Press the “Home” button = intermittent crash, then reboot (might happen back to back, or as infrequently as 6 hours – no rhyme or reason)
    Press the “Power” button = (same result as above)
    Phone locked up when receiving a call, lit up & identified the caller, no ring or vibration then it rebooted. This has happened twice.
    Phone locked up when receiving a text message. Noticed it as I heard an odd tone from my phone for a split second, then it crashed and rebooted and showed a text message on the home screen when it finished rebooting.
    Also, I have had other problems where the phone didn’t crash or reboot – it just didn’t perform properly:
    When receiving a call – display does not light; phone does not ring or buzz. Voicemail received from caller though call not noted in received calls list. Also, I have had a greater number of “Call Failed” problems, even with full cell signal in Denver, CO. This may be AT&T’s fault, but it seems fine after I shut down and restart the phone.
    In general, my iPhone with 2.0 software seems a bit more laggy. Screen rotation from portrait to landscape isn’t as smooth and opening the SMS app seems to have a consistent 2-second delay regardless of if I have cleared out my text message logs or not.
    Also, when I reboot the phone, more often than not it starts off at the “slide to unlock” screen instead of the home screen.
    Regarding location services – My gripe is that it can’t be told to either:
    Stay on all the time
    Shut off all the time
    Activate when needed, then shut off – just like in 1.1.4.
    Now when I use an application that I allow to use location services, I have to manually go and shut location services off again or my battery life will suffer.
    I have now removed all of the new applications from the phone, and am still experiencing crash/reboot problems. My guess is my phone is damaged somehow or the software I downloaded was somehow flawed during downloading or installation.
    Does anyone have any ideas? I really like this phone, but I can't bring myself to buy the new 3G if I can't be certain I wouldn't have the same problems
    Thank you,
    Lynn

    I have experienced this problem as well and it is intermittent to say the least. I have two other friends that have an i-phone as well, and when the phone crashed it stored a picture of the screen in the photo library of the phone. I thought that was a little odd as well. I have another friend that has not updated to 2.0 yet and does not seem to be having any problems at all. I would venture to guess that there is a problem with the update and that an update will be out sometime to correct the problem. If anyone knows of a way to correct the problem please post a fix for us.

  • ITunes 11 Stops Responding to Bonjour Discovery Multicast Broadcasts, Why?  This stops the the Apple TV 3 from being able to start a new stream from the home share and the iPad remote app can no longer see the home share too.

    I'm having an issue where my Apple TV 3 and all our iPads periodically seem to loose connectivity to an iTunes home share on a Windows 7 PC.  Using a network protocol analyser on the PC I have identified that the point of failure corresponds to the ATV3 sending a bonjour discovery request and getting no reply from iTunes.  Why the ATV3 'forgets' where the home share is is possibly another issue but the root cause of the failure is that iTunes, or more specifically the mDNSResponder service, is not responding to the UDP multicast port 5353 broadcast discovery packet sent by the ATV3 or iPad.  The mDNSResponder service does start responding again after iTunes is restarted thus making the home share accessible once more, however, this frequent drop out is unacceptable and often happens after only a single TV show has been watched from the home share making the solution unworkable for a family, we simply cannot be restarting iTunes constantly it ruins the user experience completely!
    The nature of this failure indicates that the ATV3, the iPads, the host PC and network are all working correctly and the point of failure here is the lack of response to the bonjour discovery protocol with the net result of either a spinning 'connecting to home share' message or the home share just disappearing from the computers section.
    If there is a configuration fix for this please let me know as I haven't located a fix!  Otherwise this seems very much to be a code flaw in iTunes 11 or the mDNSResponder and I would appreciate some input from Apple!  Going on other questions in these forums it would seem the problem is not limited to Windows PCs but also Macs too.  NB: This is not a TCP issue, when the ATV3 or iPad knows the IP of the iTunes server all works flawlessly, it just periodically they seem to refresh the list of home shares and at this point they loose the information about the home share they have just been using because of the non-response to the UDP multicast discovery broadcast packet, that is arriving at the host PC and isn't being blocked by the firewall.
    Many Thanks!

    In my case there was no import from a former mac.
    My problem (at least mine) is that no app that offers media sharing works properly. Neither itunes home sharing nor AirVideo nor EyeTV sharing.
    So I'm pretty sure that this is network issue.
    Adding another user on my mac and sharing a new library works not also. But sharing from another laptop in my WiFi works. So this has to be a network issue on my mac, not only my user, but an issue of the whole system.
    But I'm not willing to reinstall MacOS X for that if I don't have to.

  • Quicktime Pro 7.6.9 crashes when I try to import image sequence

    Hi,
    I'm running Quicktime Pro 7.6.9 on a Windows XP machine with service pack 3.
    I shot some timelapses with my Nikon D7000 as jpegs and while trying to import the image sequences into Quicktime so I can export them out as .MOVs, I noticed that Quicktime crashes when ever I try to import a sequence that has 240 or more pictures. Most of my timelapses have 240 or 360 pictures. I was able to import a sequence that had only 180 pictures. Does Quicktime Pro 7.6.9. have an image sequence limit that I don't know about? I don't have any sequences that are anything between 180 and 240, so I can't test out numbers like 190, 200, 210, etc.
    Any ideas on what's happening?

    The files are 4928x3264 JPEGs. I'm trying to make 1920x1080 .MOV files. Quicktime crashes as soon as I select the first pic from the image sequence.
    I tried another sequence that had 600 pics and it worked fine, so it's obviously not some sort of image limit. But I can't figure out why these three sequences that each have 240 images would cause the program to crash everytime.

  • QuickTime SDK for Windows ICMCompressionSessionEncodeFrame crashes for higher resolution cameras  2 MP

    I implemented a while ago a H.264 re-encoding to output H.264 QuickTime .mov file usng QuickTime Window SDK  7.3.0.70. The code uses ICMCompressionSession to compress the frames going into the container. The code works fine with cameras with resolutions up to 2 Megapixels (1600 x 1200). The crash occurs in QuickTime API call. Here is the code to compress the frame:
    CVPixelBufferRef pixel_buffer = nil;
    int nWidth = (**pixMap).bounds.right - (**pixMap).bounds.left;
    int nHeight = (**pixMap).bounds.bottom - (**pixMap).bounds.top;
    CVReturn ret =
    CVPixelBufferCreateWithBytes(kCFAllocatorDefault,
                                 nWidth,
                                 nHeight,
                                 k24RGBPixelFormat,
                                 GetPixBaseAddr(pixMap),
                                 3 * nWidth,
                                 NULL,
                                 NULL,
                                 NULL,
                                 &pixel_buffer);
    //.....code ommitted for clarity
    // set image data into the pixel buffer
    CVPixelBufferLockBaseAddress( pixel_buffer, 0 );
    // Feed the frame to the compression session.
    m_OSerr = ICMCompressionSessionEncodeFrame( compressionSession, pixel_buffer,
            displayTimeMsecs, displayDurationMsecs, validTimeFlags,
            frameOptions, NULL, NULL );
    //unlock the pixels
    CVPixelBufferUnlockBaseAddress( pixel_buffer, 0 );
    CVPixelBufferRelease(pixel_buffer);
    The call to ICMCompressionSessionEncodeFrame fails either  with
    1. Error code -108
    memFullErr = -108, /*Not enough room in heap zone*/
    OR
    2. An access violation QuickTimeH264.qtx!6782522d()
    [Frames below may be incorrect and/or missing, no symbols loaded for QuickTimeH264.qtx]
    QuickTimeH264.qtx!6782529a()
    QuickTimeH264.qtx!676c7a13()
    QuickTimeH264.qtx!6777467b()
    QuickTimeH264.qtx!676ac709()
    QuickTimeH264.qtx!6777abbe()
    QuickTimeH264.qtx!6777ac1a()
    QuickTimeH264.qtx!67698aa1()
    kernel32.dll!@BaseThreadInitThunk@12() + 0x12 bytes
    ntdll.dll!___RtlUserThreadStart@8() + 0x27 bytes
    ntdll.dll!__RtlUserThreadStart@8() + 0x1b bytes
    Has anyone encountered the same problem and if so what was the resolution?

    i suspect its a weak psu ,can you run any thing stresses the vga card under linux

  • Quicktime 7.2 "Unexpectedly Quits" (crashes) - trying to capture

    There is something up with the quicktime software not communicating with the Firewire device. Quicktime 7.2 unexpectedly quits after I try to either: make a new recording, or goto preferences/recording
    Suggestions? Help! -Much appreciated.
    JSAP

    Quicktime 7.2 unexpectedly quits after I try to either: make a new recording, or goto preferences/recording
    What QT Pro Player is active? Have noted on my system that Player v7.03 sometimes opens for unknown reasons (which is no longer even installed on my "start-up" drive). This QT Pro Player is not compatible with the QT 7.2 "structure" and will crash when attempting to record audio, video, open the "Movie Info" (now "Inspector") window, etc. Appears calls to "structure" routines are different causing unpredictable "crashes." May or may not be the problem in your case. (For me, the work around is to open QT Pro Player manually to ensure the correct player, 7.2, is active.)

  • Weird colours with QuickTime sources, broken preview renders & crash at exit (CS4)

    Hi erveryone,
    I have a strange problem in Premiere Pro CS4: Allmost all QuickTime MOV that I put in the timeline show weird, broken colours. At first I thought this was a problem with a specific codec, but I have now tried several codecs and pretty much every one shows up equally broken. The only codec that seems to work fine is the one that my Canon EOS 550D produces (1080p, H.264 I believe), but that one does not play smoothly (not that I would expect it to do on my machine). Strangely, H.264 in lower resolutions fails again. Other containers seem to be unaffected. Here is a screenshot of the effect:
    Also, my preview renders (when rendering the effecs on the timeline) are similarly broken. They behave a bit erratically. Sometimes they are just black, showing nothing and sometimes they show a still frame of one of the previously viewed videos. Colours are messed up in a similar way, so I suspect a connection. Here is the same clip from the screenshow above, preview-rendered:
    Also, upon exiting Premiere, it usually crashes. This is less of a problem, but still very weird behaviour.
    Any ideas how I could solve this?
    Infos about my system which might be of relevance:
    Adobe Premiere Pro CS4 (education version)
    Windows Vista 32bit (SP2, all current updates installed)
    4GB RAM
    Intel Core2 Duo
    ATI X1300 Pro  256MB (with newest available driver)
    QuickTime 7.6.6
    The system has been freshly installed (from factory image - hence the older OS) so no malware or anything similar should mess anything up. Only software installed except the Creative Suite is Google Chrome.
    On my laptop (Win7 64bit, Intel i5, no separate graphics card, same QT version) none of these problems appear.
    Greetings,
       Florian

    I think I found the solution. Some further digging revealed that I did not have as previously assumed the latest driver for my graphics card installed. I was mislead because the manufacturer (Dell) did provide some updates, but not all of them (none in the past two years to be exact). I grabbed the newest driver kit from the ATI website and installed it. Strangely, the installer produced several errors and I get another error message at startup, but I think only the control software was affected and not the driver itself.
    After some first tests, QuickTime movies behave as expected, the preview renders are working again and the crashes on exit are also gone. Yay!
    Strange how much trouble a driver which is otherwise working perfectly can cause.

  • Quicktime QTSS broadcast-how do I add it to my website

    I am broadcasting a QTSS stream from my server that apparently can only be viewed by going into quicktime player and the using the Open URL window and entering the link rtsp://mywebpage.org/Link4.sdp.
    Unfortunately I have not been able to figure out a way to enable people to listen to the broadcast from my iweb page.
    Has anyone figured out how to either change the broadcast to something more iweb friendly or have a way for people to open it by clicking in a link? as right now I cannot get it to work.
    Any help is greatly appreciated.
    AJ

    My effort was to point out that it's not an iWeb issue and that you should focus on how to embed the stream in a webpage.
    ANY webpage made with ANY application.
    You also posted in the QuickTime forum. Which is more logical.
    So focus on the real issue : how to embed a QT stream in a webpage.
    Don't mention the name of the applacation. It's irrelevant.
    BTW, [here's the manual|http://images.apple.com/server/macosx/docs/QTSSand_Broadcasting_Adminv10.5.pdf]
    On page 68 is the explanation what code to use.
    No mention is made of iWeb.

Maybe you are looking for

  • How to add spaces at the end of record

    Hi Friends, i am creating a file which contains more than 100 records. In ABAP i have internal table with on field(135) type c. some time record have length 120, somtime 130 its vary on each record. but i would like to add space at the end of each re

  • Itunes wont consolidate becuase "copying files failed...."

    itunes wont consolidate because "copying files failed. The file name was invalid or too long." why to i get this error message and how do i fix it? I am using itunes 9 on a dell windows xp laptop. i am trying to consolidate the library but it does no

  • New computer has a Soundblaster 24bit Live card and I am seriously disapointed? Anyo

    Hi- I just bought a new Dell Dimension 3000 desktop. I replaced my old HP 520N but am disapointed with this sound card... I game alot like Counter Strike and listen to alot of music. I mostly use winamp and windows media player.. Well today when I go

  • CUP-5.3-Delete WF elements when several request are pending

    Hi all, Whenever I want to modify the WF elements, I have to archive all the request pending and then delete them for ensuring the modifying action. As long as I can download the audit trail for everyone, I wonder if is there any other way to proceed

  • Delete cascade not working?

    Hi, I am using Eclipse Link and I was surprised to know that Delete Cascade does not seem to work. Basically, I have an entity which is a composite of another entity and has a OneToMany relationship. I have used Cascade.all. When I remove the seconda