Any sample video webinar code?

Hi, I'm trying an experienced java developer but very new to flash. I'm trying to develop a php webapp that live streams a users webcam to hunderds of views, with chat and the ability to kick viewers out of the meeting. I downloaded flash builder 4 and lccs sdk and have gotten a simple webcam app working (not even using publisher/subscriber model yet), but haven't tackled permissions/roles, managing and cleaning up sessions and that sort of thing. Any sample code out there that you could share with me would be greatly appreciated.
ps. I would consider other technologies if you think this one is not right for what I'm trying to do.
Thank you,
Kevin

Hi ,
Download the file at:
http://download.oracle.com/otn/other/general/forms10gdemos9_0_4_2.zip
Regards,
Simon

Similar Messages

  • Sample Video to play with in FCE

    Hello Everyone
    I was wondering if there was any sample videos to play with on either FCE 3.5 or 4.0 Install DVD's. I bought FCE to do photo slide shows, but now I would like to start playing with video. The only problem I am running into is the fact that I do not have a video camera at this point, so I would like to find some sample material to play with until I can buy one.
    Thanks
    Bill

    .. no, no sample videos on installer disks..
    but..
    if you own QuicktimePro, you can download any movie trailer from Apple's Quicktime site..
    http://www.apple.com/quicktime/guide/hd/
    or from the Movie Trailers ...
    http://www.apple.com/trailers/

  • Sample login PEI code

    are there any sample login pei code available for download?

    strLocale can be edited via PEI, but if you're expecting that the user's session will be refreshed to the locale, unfortunately, that is not possible.
    To change the locale of the user, you can do it via PEI, but that change will not reflect for the user until the portal is restarted... you need to initiate a refresh somehow... I think you will need to take a look at what the editor code does when you change your locale in the My Accounts settings and try and duplicate that.

  • Any Sample code for recording+playing streaming live video?

    Hi all,
    I'm new to FMS3,
    I wanna create a page for webcam live recording and playing,
    is there any sample code for reference (i can only found the code
    for live recording but do not have live record+play)?
    Many thanks.
    I have installed FMS3.0 and FME2.0 on my machine, so is it
    capable to do so?
    Many thanks.

    Thanks for your reply, but I have another question:
    My live file (test.flv) is recorded under this path:
    C:\xxxx\FMS3\applications\path\streams\_definst_\
    But seems FMS3 can only play video under this path:
    C:\xxxx\FMS3\applications\vod\media\
    My only success is on this source path rtmp://ip/vod/test in
    the component FLVPlayBack.
    So is it happen to all free version of FMS3 or I have to type
    sth more?
    Many thanks.

  • I have a an iMac 27" and am trying to import some videos of a friends wedding into iMovie however one of the movies won't import. It doesn't say why or give any error message or codes. All of the other movies on the card download with out a problem.

    I have an iMac 27" and am trying to import some videos of a friends wedding into iMovie however one of the movies won't import. It doesn't say why or give any error message or codes.
    All of the other movies on the card download with out a problem. The movie in question is not 'corrupt' as you can watch it in iMovie direct from the SD card but as soon as you try to import it, it  just says 'error'. iIve tried moving the file to an external drive ( and other variations on this theme) then importing but have had no luck.
    Can anyone please help me.

    The mystery remains....
    Thanks for the pointers. The file type is .mts (a proprietry sony one).
    I have now found some video converter software (Wondershare and iSkysoft) at a cost. Either will convert this file for me into .mp4. This I can then import into iMovie without any problems. I've checked this on the trial versions and it worked well but without paying am left with a giant watermark in the video
    The mystery (which I still havent solved) is why did 20 other .mts files import fine and then this one not?
    If you could point me in the direction of some free .mts converter software that would be the cherry on the cake.
    Thanks

  • Any sample code for an Extractor to read in a flat file?

    Hi SAP gurus,
    Are there any sample code for an extractor to read in a flat file?
    Are there any documentation on custom coding an extractor to dump
    information into an info source?
    Are there any documentation on the pit falls and contraints using Solution
    Manager, the BI tools, particularly on the Info Source?
    Thanks,
    Steve

    Thanks Muppet Mark
    I forgot to mention that I had also tried just fileObject.read() as well and it didn't work either.  It was the same run on sentence result I got with the script I showed above.  Seems odd.  However, the \r instead of \n did the trick.  I had some recollection of another line feed character but couldn't remember what it was, so thanks for that.
    Doug

  • Any sample ABAP code to send Lotus Notes email to a list of people?

    Any sample ABAP code to send Lotus Notes email to a list of people?
    We will give you reward points!

    hi..
      This sample code help you to send mail from SAP .
    REPORT  ZSSO_DOCUMENT_SEND_API1.
    DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS  2 WITH HEADER LINE.
    DATA: OBJHEAD LIKE SOLISTI1   OCCURS  1 WITH HEADER LINE.
    DATA: OBJBIN  LIKE SOLISTI1   OCCURS 10 WITH HEADER LINE.
    DATA: OBJTXT  LIKE SOLISTI1   OCCURS 10 WITH HEADER LINE.
    DATA: RECLIST LIKE SOMLRECI1  OCCURS  5 WITH HEADER LINE.
    DATA: DOC_CHNG LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    Creating the document to be sent
    DOC_CHNG-OBJ_NAME = 'OFFER'.
    DOC_CHNG-OBJ_DESCR = 'Auction of a Picasso jr'.
    OBJTXT = 'Reserve price : $250000'.
    APPEND OBJTXT.
    OBJTXT = 'A reproduction of the painting to be auctioned'.
    APPEND OBJTXT.
    OBJTXT = 'is enclosed as an attachment.'.
    APPEND OBJTXT.
    DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    READ TABLE OBJTXT INDEX TAB_LINES.
    DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creating the entry for the compressed document
    CLEAR OBJPACK-TRANSF_BIN.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM   = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM   = TAB_LINES.
    OBJPACK-DOC_TYPE   = 'RAW'.
    APPEND OBJPACK.
    Creating the document attachment
    (Assume the data in OBJBIN are given in BMP format)
    OBJBIN = ' \O/ '. APPEND OBJBIN.
    OBJBIN = '  |  '. APPEND OBJBIN.
    OBJBIN = ' / \ '. APPEND OBJBIN.
    DESCRIBE TABLE OBJBIN LINES TAB_LINES.
    OBJHEAD = 'picasso.bmp'. APPEND OBJHEAD.
    Creating the entry for the compressed attachment
    OBJPACK-TRANSF_BIN = 'X'.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM   = 1.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM   = TAB_LINES.
    OBJPACK-DOC_TYPE   = 'BMP'.
    OBJPACK-OBJ_NAME   = 'ATTACHMENT'.
    OBJPACK-OBJ_DESCR = 'Reproduction object 138'.
    OBJPACK-DOC_SIZE   = TAB_LINES * 255.
    APPEND OBJPACK..
    Entering names in the distribution list
    RECLIST-RECEIVER = '[email protected]'.
    RECLIST-REC_TYPE = 'U'.
    APPEND RECLIST.
    RECLIST-RECEIVER = 'DLI-NEUREICH'.
    RECLIST-REC_TYPE = 'P'.
    APPEND RECLIST.
    Sending the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
         EXPORTING
              DOCUMENT_DATA = DOC_CHNG
              PUT_IN_OUTBOX = 'X'
              COMMIT_WORK   = 'X'
         TABLES
              PACKING_LIST  = OBJPACK
              OBJECT_HEADER = OBJHEAD
              CONTENTS_BIN  = OBJBIN
              CONTENTS_TXT  = OBJTXT
              RECEIVERS     = RECLIST
         EXCEPTIONS
              TOO_MANY_RECEIVERS = 1
              DOCUMENT_NOT_SENT  = 2
              OPERATION_NO_AUTHORIZATION = 4
              OTHERS = 99.
    CASE SY-SUBRC.
      WHEN 0.
        WRITE: / 'Result of the send process:'.
        LOOP AT RECLIST.
          WRITE: / RECLIST-RECEIVER(48), ':'.
          IF RECLIST-RETRN_CODE = 0.
            WRITE 'sent successfully'.
          ELSE.
            WRITE 'not sent'.
          ENDIF.
        ENDLOOP.
      WHEN 1.
        WRITE: / 'no authorization to send to the specified number of'              'recipients!'.
      WHEN 2.
        WRITE: / 'document could not be sent to any of the recipients!'.
      WHEN 4.
        WRITE: / 'no authorization to send !'.
      WHEN OTHERS.
        WRITE: / 'error occurred during sending !'.
    ENDCASE.
    Go for SCOT  transaction to send those mails.
    REGARDS,
    VEERESH

  • Any sample code on XML parsing

    Hi,
    I am writing an application that has to read and to generate XML (using schemas). Unfortuantely, I cannot find any sample code on how to do it using the Oracle supplied libraries (packages oracle.xml.* . Can anyone point me to some sample code, documentation or alternative?
    Thanks a lot!

    Hello Bert,
    I didnt get your question very clearly.
    1) Do you want to generate XML using Java classes based on XSD?
    or
    2) You want to parse XML that has a XSD specified with it?
    For both these thing, we have sample codes. For the first option, there are Class Generators that does this for you. There are some samples provided with the XDK download. Look into the folder <xdk_home>xdk\demo\java\classgen.
    For option 2, there are many samples on OTN itself. To name one.... AQSample downloaded from http://otn.oracle.com/sample_code/tech/dataint/content.html.
    There is a sample with the JDK download also. The folder is <xdk_home>\xdk\demo\java\schema
    Hope this helps.

  • Hi, I am suddenly having trouble with getting sound on any small video clip or webinars..

     I have run the trouble shooter and it can't find any problems..I can use Skype OK and my virus control speaks to me. The sound is up full on the desktop and on any clips or webinars but still no sound. Very frustrating..anybody any idea ?? thanks

     I have run the trouble shooter and it can't find any problems..I can use Skype OK and my virus control speaks to me. The sound is up full on the desktop and on any clips or webinars but still no sound. Very frustrating..anybody any idea ?? thanks

  • Media Engine (Media Foundation) sample WP8 app decodes sample video incorrectly

    The
    Media Engine sample  compiles fine on my machine and I can run it on my phone, but I can't get it to play any video correctly. Specifically, the video that is being drawn every frame is wrong.  I'll try and attach a screenshot to show what it
    looks like, but if you can picture a bunch of blocks that have a distorted piece of the original video, that's it. The sound plays just fine. What in the world could be causing this?  (The video is the sample video that comes with the code... a dog drinking
    from a pool.)
    I've even tried to recreate the sample using the
    walkthrough but I get the same result.  I have taken the sample and removed the MediaEngine and tried just drawing a static texture to see if there was some hidden code screwing up the shaders, but it worked fine... 
    so something is wrong with Media Foundation.  Is it possible I have a library that is not working correctly?  I'm using VS2013 (Pro) with all the latest updates.
    Lee McPherson

    I get the same result (and exceptions running in the debugger) on my HTC 8X.  I will investigate further and update this forum post when I know more!
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • I have inadvertently infringe copyright on facebook and they have subsequently barred me from uploading any more videos. The question I need answered is ( and not able to find the answer on any of you help pages).....  Do the following have free copyright

    I have inadvertently infringe copyright on facebook and they have subsequently barred me from uploading any more videos.
    The question I need answered is ( and not able to find the answer on any of you help pages).....
    Do the following have free copyright to publish on facebook and U Tube?
    1.Garage band sounds?
    2.Slide show...Sample music and Theme music?
    3.iMovie...iMovie sounds and iLife sounds ie.Medal Ceremony and Memorial etc?
    I note one can publish to shared net places directly from iMovie so one assumes these are copyright free for non-profit making and non-comercial use.
    It is impossible to contact apple direct.No email address.We put our selves at risk without this knowledge and like applemac, facebook will not communicate direct.Will applemac please take responsibility for copyright/the above that they are all too willing to sell to us but not support us with that knowledge.
    I have Mac OS X Snow Leopard version 10.6.2 (2009 bought in 2010)

    Thank you Klaus1.The large font, I copied and pasted from my mail box.I'm visually impaired...not to a huge degree but it helps to use the large font.I believe you are right about the copyright on the imac stuff but if facebook decide otherwise, you have to reply electronically to their challenge.If you can't provide a reference directly from the copyright owner then they remove the video.I believe this is a programmed response and no human is involved which now makes it impossible for me to get my video uploading restored.They detect added soundtrack automatically and then challenge.There are many others in the same boat and facebook will not communicate.They have various discussion sites on which I have left messages including Mark Zuckerbergs own facebook but I don't think anyone from facebook ever reads them.I intend to start a second facebook which I can use purely to get my videos uploaded as a lot of my friends enjoy them BUT don't want fall foul of their programming again.If only iMac would put something on the net to this effect.I think it is so unfair that with modern technology it is impossible to contact these large conglomerates personally and receive an email response.I tried emailing [email protected] but I got a failure notice.If you have any ideas on how to get verification from apple direct, I would be very grateful.Thank You.

  • Every time I watch any online video mac mini has kernel panic

    Everytime I have attempted to watch any online video, (World Cup, online seminars, Photoshop tutorials, even a couple of times on youtube) this mac mini just shuts down and forces a restart.
    If anyone has any suggestions, it would be greatly appreciated.
    Thanks,
    Ron
    Model Name:    Mac mini
      Model Identifier:    Macmini6,2
      Processor Name:    Intel Core i7
      Processor Speed:    2.3 GHz
      Number of Processors:    1
      Total Number of Cores:    4
      L2 Cache (per Core):    256 KB
      L3 Cache:    6 MB
      Memory:    10 GB
      Boot ROM Version:    MM61.0106.B03
      SMC Version (system):    2.8f1
      Serial Number (system):    C0*******WYM
      Hardware UUID:    *******
    Here is the info from the latest kernel panic:
    Anonymous UUID: 
    A20F83F0-A8BE-C5DE-E415-A457B9E901D6
    Mon Jun 30 14:21:29 2014
    panic(cpu 0 caller 0xffffff8029adbe7e): Kernel trap at 0xffffff7fab90899f, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000072, CR3: 0x000000002c041000, CR4: 0x00000000001606e0
    RAX: 0x0000000000000072, RBX: 0xffffff8040815500, RCX: 0x0000000000000072, RDX: 0xffffff7fab949090
    RSP: 0xffffff81442a4f60, RBP: 0xffffff8040a7d300, RSI: 0x0000000000000000, RDI: 0x0000000000000072
    R8:  0x0000000000000003, R9:  0x7ffffffffffffffe, R10: 0xffffff81442d0000, R11: 0xffffffffffffff00
    R12: 0xffffff81442dbe50, R13: 0xffffff8029add7be, R14: 0x0000000000000072, R15: 0xffffff81442a5000
    RFL: 0x0000000000010006, RIP: 0xffffff7fab90899f, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000000000072, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81442a4bf0 : 0xffffff8029a22fa9
    0xffffff81442a4c70 : 0xffffff8029adbe7e
    0xffffff81442a4e40 : 0xffffff8029af3376
    0xffffff81442a4e60 : 0xffffff7fab90899f
    0xffffff8040a7d300 : 0x30004
    0xffffff7faa0da4d0 : 0xffffff7faa0d1b5c
    Unaligned frame
    Backtrace terminated-invalid frame pointer 0xffffff7faa0d1b7e
    Kernel Extensions in backtrace:
    com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff7 faa0ba000->0xffffff7faa0e4fff
    com.apple.driver.AppleACPIPlatform(2.0)[5D6DA288-1289-3FD4-BFA5-09C109930AE7]@0x ffffff7fab902000->0xffffff7fab95afff
    dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7faa9fd000
    dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7faa0ba000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13C1021
    Kernel version:
    Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    Kernel UUID: E9CF78E2-1E9F-3B6F-81A4-FEE6C6D0E4D5
    Kernel slide:
    0x0000000029800000
    Kernel text base: 0xffffff8029a00000
    System model name: Macmini6,2 (Mac-F65AE981FFA204ED)
    System uptime in nanoseconds: 18030746804734
    last loaded kext at 1851058517032: com.apple.driver.AppleIntelMCEReporter    104 (addr 0xffffff7fab98f000, size 49152)
    last unloaded kext at 1912842638667: com.apple.driver.AppleIntelMCEReporter    104 (addr 0xffffff7fab98f000, size 32768)
    loaded kexts:
    com.Logitech.Unifying.HID Driver    1.3.1
    com.Logitech.Control Center.HID Driver    3.9.1
    com.apple.filesystems.smbfs    2.0.1
    com.apple.driver.AudioAUUC    1.60
    com.apple.driver.AGPM    100.14.15
    com.apple.driver.ApplePlatformEnabler    2.0.9d1
    com.apple.driver.X86PlatformShim    1.0.0
    com.apple.filesystems.autofs    3.0
    com.apple.iokit.IOBluetoothSerialManager    4.2.3f10
    com.apple.driver.AppleMikeyHIDDriver    124
    com.apple.driver.AppleUpstreamUserClient    3.5.13
    com.apple.driver.AppleMCCSControl    1.1.12
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.driver.AppleHDA    2.6.0f1
    com.apple.driver.AppleMikeyDriver    2.6.0f1
    com.apple.driver.AppleIntelHD4000Graphics    8.2.4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport    4.2.3f10
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleHWAccess    1
    com.apple.driver.AppleSMCPDRC    1.0.0
    com.apple.driver.AppleIntelFramebufferCapri    8.2.4
    com.apple.driver.AppleLPC    1.7.0
    com.apple.driver.AppleThunderboltIP    1.1.2
    com.apple.driver.AppleIRController    325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    35
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.5.1
    com.apple.driver.AppleUSBHub    666.4.0
    com.apple.driver.AppleSDXC    1.5.2
    com.apple.iokit.AppleBCM5701Ethernet    3.8.1b2
    com.apple.driver.AirPort.Brcm4331    700.20.22
    com.apple.driver.AppleFWOHCI    4.9.9
    com.apple.driver.AppleAHCIPort    3.0.0
    com.apple.driver.AppleUSBEHCI    660.4.0
    com.apple.driver.AppleUSBXHCI    670.4.0
    com.apple.driver.AppleACPIButtons    2.0
    com.apple.driver.AppleRTC    2.0
    com.apple.driver.AppleHPET    1.8
    com.apple.driver.AppleSMBIOS    2.1
    com.apple.driver.AppleACPIEC    2.0
    com.apple.driver.AppleAPIC    1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient    216.0.0
    com.apple.nke.applicationfirewall    153
    com.apple.security.quarantine    3
    com.apple.driver.AppleIntelCPUPowerManagement    216.0.0
    com.apple.kext.triggers    1.0
    com.apple.iokit.IOSerialFamily    10.0.7
    com.apple.driver.DspFuncLib    2.6.0f1
    com.apple.vecLib.kext    1.0.0
    com.apple.iokit.IOAudioFamily    1.9.5fc2
    com.apple.kext.OSvKernDSPLib    1.14
    com.apple.driver.AppleSMBusController    1.0.11d1
    com.apple.iokit.IOSurface    91
    com.apple.iokit.IOBluetoothHostControllerUSBTransport    4.2.3f10
    com.apple.iokit.IOFireWireIP    2.2.6
    com.apple.driver.AppleSMBusPCI    1.0.12d1
    com.apple.iokit.IOAcceleratorFamily2    98.14
    com.apple.AppleGraphicsDeviceControl    3.4.35
    com.apple.iokit.IONDRVSupport    2.4.1
    com.apple.driver.X86PlatformPlugin    1.0.0
    com.apple.driver.AppleSMC    3.1.8
    com.apple.driver.IOPlatformPluginFamily    5.7.0d10
    com.apple.driver.AppleHDAController    2.6.0f1
    com.apple.iokit.IOGraphicsFamily    2.4.1
    com.apple.iokit.IOHDAFamily    2.6.0f1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.6.6
    com.apple.driver.AppleUSBMergeNub    650.4.0
    com.apple.driver.AppleThunderboltDPInAdapter    3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily    3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.4.5
    com.apple.driver.IOBluetoothHIDDriver    4.2.3f10
    com.apple.iokit.IOBluetoothFamily    4.2.3f10
    com.apple.iokit.IOUSBHIDDriver    660.4.0
    com.apple.driver.AppleUSBComposite    656.4.1
    com.apple.driver.AppleThunderboltNHI    2.0.1
    com.apple.iokit.IOThunderboltFamily    3.2.7
    com.apple.iokit.IOEthernetAVBController    1.0.3b4
    com.apple.driver.mDNSOffloadUserClient    1.0.1b5
    com.apple.iokit.IOUSBUserClient    660.4.2
    com.apple.iokit.IO80211Family    630.35
    com.apple.iokit.IONetworkingFamily    3.2
    com.apple.iokit.IOFireWireFamily    4.5.5
    com.apple.iokit.IOAHCIFamily    2.6.5
    com.apple.iokit.IOUSBFamily    675.4.0
    com.apple.driver.AppleEFINVRAM    2.0
    com.apple.iokit.IOHIDFamily    2.0.0
    com.apple.driver.AppleEFIRuntime    2.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    278.11
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.AppleKeyStore    2
    com.apple.driver.DiskImages    371.1
    com.apple.iokit.IOStorageFamily    1.9
    com.apple.iokit.IOReportFamily    23
    com.apple.driver.AppleFDEKeyStore    28.30
    com.apple.driver.AppleACPIPlatform    2.0
    com.apple.iokit.IOPCIFamily    2.9
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.pthread    1
    com.apple.kec.corecrypto    1.0
    <Personal Information Edited by Host>

    It just crashed again while streaming video.  here is this crash report:
    Anonymous UUID:  
    A20F83F0-A8BE-C5DE-E415-A457B9E901D6
    Mon Jun 30 15:27:05 2014
    panic(cpu 4 caller 0xffffff800b4dbe7e): Kernel trap at 0xffffff7f8c380ca0, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0xffffff8060cc49af, CR3: 0x00000000216a9046, CR4: 0x00000000001606e0
    RAX: 0x000000002bcf8068, RBX: 0x0000000000000000, RCX: 0x000000002bcf8067, RDX: 0xffffff8134cdbc20
    RSP: 0xffffff8134cdbb60, RBP: 0xffffff8134cdbb90, RSI: 0x0000000000000000, RDI: 0x0000000000000000
    R8:  0xffffff8022c2fa00, R9:  0x0000000000000000, R10: 0x0000000000000000, R11: 0x0000000000000206
    R12: 0x00000000e00002c2, R13: 0xffffff8034fcc948, R14: 0xffffff8022c2fa00, R15: 0xffffff8134cdbc20
    RFL: 0x0000000000010202, RIP: 0xffffff7f8c380ca0, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0xffffff8060cc49af, Error code: 0x0000000000000000, Fault CPU: 0x4
    Backtrace (CPU 4), Frame : Return Address
    0xffffff8134cdb7f0 : 0xffffff800b422fa9
    0xffffff8134cdb870 : 0xffffff800b4dbe7e
    0xffffff8134cdba40 : 0xffffff800b4f3376
    0xffffff8134cdba60 : 0xffffff7f8c380ca0
    0xffffff8134cdbb90 : 0xffffff800b8cdcad
    0xffffff8134cdbbf0 : 0xffffff800b8cb85f
    0xffffff8134cdbd40 : 0xffffff800b4b65a8
    0xffffff8134cdbe50 : 0xffffff800b426bf1
    0xffffff8134cdbe80 : 0xffffff800b4139f5
    0xffffff8134cdbef0 : 0xffffff800b41e043
    0xffffff8134cdbf70 : 0xffffff800b4c97bd
    0xffffff8134cdbfb0 : 0xffffff800b4f3b96
    Kernel Extensions in backtrace:
    com.apple.iokit.IOSurface(91.0)[BC96A900-DD9D-3F36-AFE6-EF88CB4B3607]@0xffffff7f 8c37b000->0xffffff7f8c38cfff
    BSD process name corresponding to current thread: plugin-container
    Mac OS version:
    13C1021
    Kernel version:
    Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    Kernel UUID: E9CF78E2-1E9F-3B6F-81A4-FEE6C6D0E4D5
    Kernel slide:
    0x000000000b200000
    Kernel text base: 0xffffff800b400000
    System model name: Macmini6,2 (Mac-F65AE981FFA204ED)
    System uptime in nanoseconds: 3891593461973
    last loaded kext at 289514618298: com.apple.filesystems.msdosfs    1.9 (addr 0xffffff7f8d397000, size 65536)
    last unloaded kext at 445171551461: com.apple.driver.AppleIntelMCEReporter    104 (addr 0xffffff7f8d38f000, size 32768)
    loaded kexts:
    com.Logitech.Unifying.HID Driver    1.3.1
    com.Logitech.Control Center.HID Driver    3.9.1
    com.apple.filesystems.smbfs    2.0.1
    com.apple.driver.AudioAUUC    1.60
    com.apple.driver.AGPM    100.14.15
    com.apple.driver.ApplePlatformEnabler    2.0.9d1
    com.apple.driver.X86PlatformShim    1.0.0
    com.apple.filesystems.autofs    3.0
    com.apple.iokit.IOBluetoothSerialManager    4.2.3f10
    com.apple.driver.AppleMikeyHIDDriver    124
    com.apple.driver.AppleUpstreamUserClient    3.5.13
    com.apple.driver.AppleMCCSControl    1.1.12
    com.apple.driver.AppleMikeyDriver    2.6.0f1
    com.apple.driver.AppleHDA    2.6.0f1
    com.apple.driver.AppleIntelHD4000Graphics    8.2.4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport    4.2.3f10
    com.apple.driver.AppleLPC    1.7.0
    com.apple.driver.AppleIntelFramebufferCapri    8.2.4
    com.apple.driver.AppleSMCPDRC    1.0.0
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleHWAccess    1
    com.apple.driver.AppleThunderboltIP    1.1.2
    com.apple.driver.AppleIRController    325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    35
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.5.1
    com.apple.driver.AppleUSBHub    666.4.0
    com.apple.driver.AppleSDXC    1.5.2
    com.apple.iokit.AppleBCM5701Ethernet    3.8.1b2
    com.apple.driver.AirPort.Brcm4331    700.20.22
    com.apple.driver.AppleFWOHCI    4.9.9
    com.apple.driver.AppleAHCIPort    3.0.0
    com.apple.driver.AppleUSBEHCI    660.4.0
    com.apple.driver.AppleUSBXHCI    670.4.0
    com.apple.driver.AppleRTC    2.0
    com.apple.driver.AppleACPIButtons    2.0
    com.apple.driver.AppleHPET    1.8
    com.apple.driver.AppleSMBIOS    2.1
    com.apple.driver.AppleACPIEC    2.0
    com.apple.driver.AppleAPIC    1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient    216.0.0
    com.apple.nke.applicationfirewall    153
    com.apple.security.quarantine    3
    com.apple.driver.AppleIntelCPUPowerManagement    216.0.0
    com.apple.kext.triggers    1.0
    com.apple.iokit.IOSerialFamily    10.0.7
    com.apple.driver.DspFuncLib    2.6.0f1
    com.apple.vecLib.kext    1.0.0
    com.apple.iokit.IOAudioFamily    1.9.5fc2
    com.apple.kext.OSvKernDSPLib    1.14
    com.apple.driver.AppleSMBusController    1.0.11d1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport    4.2.3f10
    com.apple.driver.AppleSMBusPCI    1.0.12d1
    com.apple.iokit.IOFireWireIP    2.2.6
    com.apple.iokit.IONDRVSupport    2.4.1
    com.apple.iokit.IOAcceleratorFamily2    98.14
    com.apple.AppleGraphicsDeviceControl    3.4.35
    com.apple.driver.X86PlatformPlugin    1.0.0
    com.apple.driver.IOPlatformPluginFamily    5.7.0d10
    com.apple.iokit.IOSurface    91
    com.apple.driver.AppleSMC    3.1.8
    com.apple.driver.AppleHDAController    2.6.0f1
    com.apple.iokit.IOGraphicsFamily    2.4.1
    com.apple.iokit.IOHDAFamily    2.6.0f1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.6.6
    com.apple.driver.AppleUSBMergeNub    650.4.0
    com.apple.driver.AppleThunderboltDPInAdapter    3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily    3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.4.5
    com.apple.driver.IOBluetoothHIDDriver    4.2.3f10
    com.apple.iokit.IOBluetoothFamily    4.2.3f10
    com.apple.iokit.IOUSBHIDDriver    660.4.0
    com.apple.driver.AppleUSBComposite    656.4.1
    com.apple.driver.AppleThunderboltNHI    2.0.1
    com.apple.iokit.IOThunderboltFamily    3.2.7
    com.apple.iokit.IOEthernetAVBController    1.0.3b4
    com.apple.driver.mDNSOffloadUserClient    1.0.1b5
    com.apple.iokit.IO80211Family    630.35
    com.apple.iokit.IONetworkingFamily    3.2
    com.apple.iokit.IOUSBUserClient    660.4.2
    com.apple.iokit.IOFireWireFamily    4.5.5
    com.apple.iokit.IOAHCIFamily    2.6.5
    com.apple.iokit.IOUSBFamily    675.4.0
    com.apple.driver.AppleEFINVRAM    2.0
    com.apple.driver.AppleEFIRuntime    2.0
    com.apple.iokit.IOHIDFamily    2.0.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    278.11
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.AppleKeyStore    2
    com.apple.driver.DiskImages    371.1
    com.apple.iokit.IOStorageFamily    1.9
    com.apple.iokit.IOReportFamily    23
    com.apple.driver.AppleFDEKeyStore    28.30
    com.apple.driver.AppleACPIPlatform    2.0
    com.apple.iokit.IOPCIFamily    2.9
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.pthread    1
    com.apple.kec.corecrypto    1.0

  • Sample ABAP routine code to load only previous month data in INFOPACKAGE

    Hi all,
    I want to create one ABAP routine in InfoPackage (Variables change to selection values with background processing) for 0CALMONTH ( Calender year month) so that whenever this infopackage is executed it should fetch only previous month data.
    Can anyone please provide any sample code for that.
    Thanks in advance.
    Uday shankar.

    Hi
    Please check with below code, hope this will resolve your issue
    WHEN: 'ZLASTP'.
         CLEAR: h_period, h_gjahr.
         CALL FUNCTION 'DATE_TO_PERIOD_CONVERT'
           EXPORTING
             i_date               = sy-datum
       I_MONMIT             = 00
             i_periv              = 'AF'
          IMPORTING
            e_buper              = h_period
            e_gjahr              = h_gjahr
    EXCEPTIONS
       INPUT_FALSE          = 1
       T009_NOTFOUND        = 2
       T009B_NOTFOUND       = 3
       OTHERS               = 4
         IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
         IF h_period = '001'.
           h_gjahr = h_gjahr - 1.
           h_period = '012'.
         ELSE.
           h_period = h_period - 1.
         ENDIF.
         CLEAR l_s_range.
         CONCATENATE h_gjahr h_period INTO l_s_range-low.
         l_s_range-sign = 'I'.
         l_s_range-opt  = 'EQ'.
         APPEND l_s_range TO e_t_range.

  • PL/SQL website with sample PL/SQL codes from real life examples

    Hi All,
    Can any one guide me and suggest me on the website where they post sample PL/SQL code. Thanks much in advance.
    AL

    Something like this ->
    UPDATE PRODUCT e
    set e.new_id = (
                      SELECT distinct i.id||i.code
                      FROM item i, product pi
                      WHERE i.ccode = '12'
                      AND i.scode = 'ACTIVE'
                      AND i.id IS NOT NULL
                      AND pi.id = i.id
                      AND i.id IN (
                                      SELECT DISTINCT ri.item_id
                                      FROM category ri
                                      WHERE ri.category_code = 'RRR'
                      AND pi.id = e.id
    WHERE e.new_id IS NULL;N.B.: Not tested...
    Please post your table structure. Otherwise it is very difficult to find out the exact reason.
    Regards.
    Satyaki De.

  • Rtmp not connecting, sample video not streaming

    I am developing an application in Flash that runs locally and it uses FMS 4.01, locally. I have been using adobe FMS 4.01 for months with no problem. Today I cannot connect to my server and I cannot even play the sample video on the Flash Media Server Start Screen. The sample video for the http plays after I changed the permissions for flash, but rtmp does not play. I have reinstalled the server; 3.5, 4.0 and 4.01, none of them will connect to rtmp. I receive this error on the flash media server start screen that says "the connection timed out". How do I fix this?please help!

    Can you just check if your firewall is turned on and blocking 1935? Also are you trying to play RTMP using Start Screen from same machine where FMS is installed or from any other machine?

Maybe you are looking for

  • Customer for confirmation of balance

    How to check confirmation of balance for all customer in one time using t-code SAPF130D? Because when we use this code, we only can view confirmation of balance one customer only for one time.

  • OSX Update Failed To Install. Now Mail and App Store won't open

    I'm currently running Mountain Lion on my unibody Macbook Pro. Last night I got a notification that there was an update (10.8.3 I beleive), so I opened up the App store and proceeded with the install process. The update details mentioned that this up

  • Can i have 2 users on one iTunes instillation

    Thank you for reading my question, i would like to explain my situation properly. I have a PC and my father has a MAC at a different address in the UK. We both have iPhones and both struggled with iTunes to the point where we didn't use it. My brothe

  • How to clean the inside of my EarPods?

    Basically, my EarPods were in the same pocket as a packet of coffee and the packet broke and the powder got pushed into the largest sound vent. How should I clean it out?

  • Signature on the Check Priting

    Hello Experts, As we have to support mutliple country's SAP Systems, We have different landscapes. There is a new requirement to add signature on Check Priting Form from country A. As we already have implemented this functionality in other country's