Moved recording does not appear as content

I recently encountered an issue where, when I attempt to move a recording from under a meeting to a Shared Content folder, either the list of Shared Content folders does not appear or, when the move is "successful", the recording is bot listed in the new content location.  Interestingly, if I change the URL of the destination location from "content" to "meeting"  (http://server/admin/content/sco/... to http://server/admin/meeting/sco/...), the recordng will appear in the list.  Unfortunately, under this "meeting view", there is not any editing or offline functionality.  The link for the recording continues to be functional and playback works normally, but the recording is otherwise treated as a "meeting" rather than content.
Using the API, I used the sco-by-url XML action to compare the values of an affected recording to an unaffected one, but could not find anything that appeared unusual.  Both recordings were identified as the "content" type.
Atempting to edit the video, or make an offline copy, by modifying the usual link produced by clicking those button with the appropriate url-path generates a "Not Found - The selected resource does not exist" error.  The editing and offline copy processes worked normally prior to the move.
We are currently running Adobe Connect version 8.2.0.0:
package=8.2.0.1.156.20110921.963902
installer=8.2.0.0.11.20110728.938680
fmg=8.2.0.0.4.20110906.879854
fms=8.1.1.0.2.20110427.772086
presenter=8.2.0.0.6.20110824.924658
cps=8.2.0.1.3.20110920.973276
mssql=8.1.0.0.10.20110311.8644363
teleintercall=8.1.0.0.2.20110207.776631
telepremierena=8.1.0.0.21.20110412.882778
telepremiereemea=8.1.0.0.21.20110412.882778
cpshelp=8.2.0.0.4.20110908.964981
addins=8.2.0.0.3.20110831.929039
dbscripts=8.2.0.0.23.20110818.956139
teleavaya=8.1.0.0.4.20110412.882778
telecisco=8.1.0.0.17.20110412.882778
telemeetingone=8.1.0.0.2.20110207.776631
telephonyservice=8.1.0.0.8.20110228.847019
tomcat=6.0.29
stunnel=4.28
Is there another mechanism Adobe Connect discerns between the content and meetings so far as under with view/interface it will be displayed?  Is there a way to correct this behavior for existing files?  Thanks for any insight.
Eric

Having support look at this may be the best option. Since you are using your own server, you should call 866-335-2256, wait for the second round of prompts and then option 1. Have your support contract number ready when you call.

Similar Messages

  • Content type problem for 'does not appear to be a proper arcive'

    Hi all,
    The following code will create a ZipOutputStream using ByteArrayOutputStream (not FileOutputStream) and attach the outputstream to a MIME multipart email using ByteArrayDataSource (so the file never exists physically).
    It works and sends the email but the zip 'does not appear to be a valid archive' even though it looks about the right size. If I do the same and use FileOutputStream to create a physical file it works OK. I think it is an issue with the content type, or maybe this just isn't possible!
    I have tried:
    byteArray.toByteArray(),
    byteArray.toString().getBytes() and application/zip & application/unknown.
    Can anyone help or suggest an alternative way to create a 'in-memory' zip file that can then be emailed?
    Many thanks
        // Specify files to be zipped
                                                                 String[] filesToZip = new String[3];
                                                                 filesToZip[0] = "C:\\Program Files\\NetBeans3.6\\firstfile.txt";
                                                                 filesToZip[1] = "C:\\Program Files\\NetBeans3.6\\secondfile.txt";
                                                                 filesToZip[2] = "C:\\Program Files\\NetBeans3.6\\thirdfile.txt";
                                                                 byte[] buffer = new byte[18024];
                                                                 // Specify zip file name
                                                                  String zipFileName= eq_rt.getReportName() + ".zip";
                                                                 try {
                                                                   // Create ZipOutputStream to store the FileOutputStream
                                                                   //ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipFileName));
                                                                   ByteArrayOutputStream byteArray = new ByteArrayOutputStream();                                                             
                                                                   ZipOutputStream out = new ZipOutputStream(byteArray);                                                              
                                                                   // Set the compression ratio
                                                                   out.setLevel(Deflater.DEFAULT_COMPRESSION);
                                                                   // iterate through the array of files, adding each to the zip file
                                                                   for (int a = 0; a < filesToZip.length; a++) {
                                                                     System.out.println(a);
    //                                                                 // Associate a file input stream for the current file
                                                                     FileInputStream in = new FileInputStream(filesToZip[a]);
                                                                     // This ROCKS as it is passing a array into the text file .getBytes() seems
                                                                     // to be the KEY in getting ByteArrayInputStream to WORK
                                                                     String strSocketInput = "TAIWAN";
                                                                     ByteArrayInputStream baIn = new ByteArrayInputStream(strSocketInput.getBytes());
                                                                     //ByteArrayInputStream baIn = new ByteArrayInputStream( getAttachementNoFormat(eq_rt.getStoredProc() ) );                                                               
                                                                     // Add ZIP entry to output stream.
                                                                     out.putNextEntry(new ZipEntry(filesToZip[a]));
                                                                     // Transfer bytes from the current file to the ZIP file
                                                                     int len;
                                                                     while ((len = baIn.read(buffer)) > 0)
                                                                     out.write(buffer, 0, len);
                                                                     // Close the current entry
                                                                     out.closeEntry();
                                                                     // Close the current file input stream
                                                                     baIn.close();                                                   
                                                                  // DataSource sourcezip = new FileDataSource(zipFileName);
                                                                   //DataSource sourcezip = new ByteArrayDataSource(byteArray.toByteArray(), zipFileName, "application/octet-stream");   
                                                                    DataSource sourcezip = new ByteArrayDataSource(byteArray.toByteArray(), zipFileName, "application/octet-stream" );
                                                                   // Create a new MIME bodypart
                                                                   BodyPart attachment = new MimeBodyPart();
                                                                   attachment.setDataHandler(new DataHandler(sourcezip));
                                                                   attachment.setFileName(zipFileName);                       
                                                                   /* attach the attachemnts to the mail */
                                                                   multipart.addBodyPart(attachment);                                                                
                                                                   // Close the ZipOutPutStream
                                                                   out.close(); 

    Many thanks Dr Clap. Moving the Closing the ZipOutputStream before I attached it to the email solved my problem.
                                          /* Close the ZipOutPutStream (very important to close the zip before you attach it to the email) Thanks DrClap */
                                                                    out.close();                                                    
                                                                    /* Create a datasource for email attachment */
                                                                    // DataSource sourcezip = new FileDataSource(zipFileName);
                                                                    DataSource sourcezip = new ByteArrayDataSource(byteArray.toByteArray(), zipFileName, "application/zip" );
                                                                    /* Create a new MIME bodypart */
                                                                    BodyPart attachment = new MimeBodyPart();
                                                                    attachment.setDataHandler(new DataHandler(sourcezip));
                                                                    attachment.setFileName(zipFileName);                       
                                                                    /* attach the attachemnts to the mail */
                                                                    multipart.addBodyPart(attachment);  

  • I've changed my account's country, adress, and phone number because I've moved and my purchased apps (from previous country) does not appear anymore, how do I fix it?

    I've changed my account's country, address, and phone number because I've moved and my purchased apps (from previous country) does not appear anymore, how do I fix it?

    That is the expected behavior. You will also no longer be alerted to any updates for that content.
    If any of the content is sold in the new country's store and you find out through the grapevine about an update, you can update the content for free, but you will have to go through the steps for buying the update as a new purchase. Then the store will notice in the final steps that you own this content and update for free. It is the end of the road for any content from the previous country that is not sold in the current country's store. You will not be able to update the content in the new store.

  • Why is elements better at photomerge than CC- CC does not appear to automatically fill image based on content but elements does when merging a panorama. Also the stitching is visable in CC but almost perfect in elements- why?

    I took 6 panorama shots of a scene and used CC to Photomerge them as one. Couldn't see where to automatic blend the edges and there was 'stitch' lines when the images were merged. So i did the same in Elements 11 and it was perfect. Am i doing something wrong in CC or perhaps not doing something at all?
    Any help, please?
    Dave

    Hi - Thanks for taking the time to reply and i appreciate the remarks- if a little harsh- we all have to start somewhere and i am fully aware of the limitations of Elements which is why i decided to add CC to my software. I can only say that if an inferior quality software from Adobe does the job well then CC must also be suited to doing the same which is why i can only think, from your comments, that i have not done something simple- however- following tutorials to get to the end result should have sufficed- it didn't so perhaps i will consider posting the difference between the two applications- and, perhaps suffer a few more 'harsh' comments. The learning curve is quite steep and i am a visual learner, but i'm also not totally incompetent:)
    Kind Regards
    Dave Munn
    Original message----
    From : [email protected]
    Date : 02/02/2015 - 06:45 (GMTST)
    To : [email protected]
    Subject :  why is elements better at photomerge than CC- CC does not appear to automatically fill image based on content but elements does when merging a panorama. Also the stitching is visable in CC but almost perfect in elements- why?
        why is elements better at photomerge than CC- CC does not appear to automatically fill image based on content but elements does when merging a panorama. Also the stitching is visable in CC but almost perfect in elements- why?
        created by station_two in Photoshop General Discussion - View the full discussion
    First a clarification: you are not addressing Adobe here in these user forums.  You are requesting help from volunteers users just like you who give their time free of charge. No one has any obligation to answer your questions.
    I'll give it my best shot anyway.
    Few folks in this forum are really familiar with Elements, for which there's a dedicated, totally separate forum.
    Different engineering teams, also.
    From this perspective, it will be difficult to give you a direct answer to your "why?" question.
    Personally, I blend very large panorama shots in Photoshop proper since I can't even remember when without any issues whatsoever, up to and including in Photoshop CS6 13.0.6.
    Without being at your computer and without looking at your images, I couldn't even begin to speculate what you are doing wrong in Photoshop, which I suspect you are.  The least you could show is post examples from your panoramas that have gone wrong.
    I can tell you that panorama stitching requires significant overlap between the individual shots, besides common-sdense techniques like a very solid tripod and precision heads.
    The only version of Elements I have ever used for any significant time was Elements 6 for Windows, which I bought in 2008 to use on a PC (I've been an avid Mac user for 30 years).  I found Elements so limited and so bad that I successfully demanded a refund from Adobe.  IU mention this only to emphasize that I can truly only address your question from a Photoshop (proper) and Mac user point of view.  I couldn't care less about Elements, but if you have comparison examples of panoramas processed in both applications, by all means post those two.
    Generally speaking Photoshop is a professional level application that makes no apologies for its very long and steep learning curve, while Photoshop has many hand-holding features for amateurs and beginners.
    Perhaps the bottom line is that you should stick with Elements if you personally manage to get better results there.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7152397#7152397 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7152397#7152397
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Photoshop General Discussion by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • Video will not play on BBC site error message this content does not appear to be working .Help

    I have bbc news as home page after i updated to firefox 10 if i try to play embedded video i get the eror message [this content does not appear to be working] Help

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • I bought a hd movie on my iPad , however when I try to play on Apple TV 1st generation. It does not appear or says content not available. My TV is hd compatible

    I bought a hd movie on my iPad , however when I try to play on Apple TV 1st generation. It does not appear or says content not available. My TV is hd compatible

    AppleTV1 only supports HD upto 720p - chances are the iPad HD vserion is 1080p and beyond ATV1 capability.
    Also do not expect recent iTunes purchases to appear on AppleTV 1 store menus as purchased - ATV1 does not know about 'cloud access'.
    Best option is to download the 720p version (set in iTunes Preferences on computer iTunes) and sync/stream to AppleTV 1 from iTunes.

  • Moved message from trash to inbox, but it does not appear in box ?

    Hello,
    I use gmail account as my default mail account. Accidently, I deleted one my message. To retrieve it, I clicked and open the message in the trash box.Tthere is a "folder" icon on the bottom at second order, I clicked it and I choose inbox folder it seemed as moving inbox but that message does not appear there.

    Hey Moonchild,
    I've just had the exact same problem today.  Lost two emails because of it.  Can't find them on my phone or on Gmail from my laptop.  I accidently moved them to the bin..  Don't even know how I done it!
    But I went into the Bin folder, opened the email, went to the folder icon at the bottom of my iPhone 4S, which says "Move this message to a new mailbox", selected Inbox, it looked like it moved.  When I went to the Inbox, it wasn't there.  I searched for it and its gone.  I tried another and it done the the exact same thing.
    I tried this from Gmail on my laptop and it works fine, you can move them from the bin back to the Inbox without any problem.

  • When I try to use bluetooth speakers, the option to switch to bluetooth speakers does not appear in ipod mode

    when I try to use bluetooth speakers, the option to switch to bluetooth speakers does not appear in ipod mode

    - Make sure the mic hole is clear and unobstructed. It is the little hole on the back by the camera lens(if has back camera). For the 16 GB one without the back camera the mic hole is on the top edge near the center.
    - Open the Voice Memos app and see if you see movement on the VU meter needle or changes in the moving waveform graph with changes in noise level trying to be recorded.
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                              

  • Media Manager does not appear on my second stb

    I downloaded Verizon Media Manager and installed it without problems.  When I checked my HD stb the program is listed and I could use it.  I do not have any kind of recorder on the network.  When I check my non HD stb the VMM does not appear.  This is the unit I want to use as it will allow me to play music through the home theater sound system.
    So, am I limited because I do not have a recorder or does the feature not work on non HD stb?  If this is the case, I might as well delete the program from my PC.
    Solved!
    Go to Solution.

    Hi. I apologize for the inconvenience. Unfortunately at this time, the standard def STBs do not work with Media Manager. It doesn't have to be a DVR, but the stb has to be an HD box. If you do not wish to upgrade the STD box at this time and depending on your setup, you can always swap the STBs and move the media manager functionality to where you want it. 

  • The music search on the I tunes store does not appear after the latest upgrade to my I phone 4

    The music search feature on the I Tunes store does not appear.  Unable to search since the latest upgrade.

    If you're sure where your library is run this script iTunesXMLPath. The library folder is the folder that file is in. Your media folder is recorded under Edit > Preferences > Advanced and is usually a subfolder of the library folder.
    I recommend you backup your library with the method in this user tip.
    tt2

  • I had a new hard drive replaced in my imac. Now my 1st generation apple TV does not appear under devices in itunes. How do I get my apple tv to connect to my computer? My OS is 10.6.8

    I had a new hard drive replaced in my imac. Now my 1st generation apple TV does not appear under devices in itunes. How do I get my apple tv to connect to my computer? My OS is 10.6.8

    Welcome to the Apple Community.
    Navigate to Settings > Computers > Your Library on the Apple TV, you may be told you will lose all synced content, but you can't doing anything abouty this, you won't lose any purchased content that has yet to be transferred. Then select Settings > Computers > Connect To iTunes, note the passcode that appears on screen, click on the device in iTunes and enter the passcode when prompted.

  • Purchase info record does not exists in purchase organization 1000

    Hi experts,
              I have created a new enterprise structure in SAP. when i am creating a PO its picking the correct info record, but when i am doing GR, its giving the error as 'purchase info record does not exists in purchase organization 1000". I have maintained everything perfect. the only thing i have changed is I have moved the open and close period from 11-2002 to 12-2008 in MMPV.
             Please give me some suggestions, where it can go wrong.
    Thanks & Regards,
    Poorna.

    Hi Guys,
              Thanks for all yours responses, Actually what deepak said was right, but in my IDES system i am not able to create new entries in assign plant to std purchase org. I found the database view for that, V_001W_E its for table T001W. So i looked into that table i found that std purchase org was given as 1000. i made direct entries in that table, i thought the reason for this may be due to , that i copied plant from 1000. After making entries , i did not got the error message that was i am previously getting.
    Thanks & Regards,
    Ravi.

  • My ipad does not appear in itunes. I am OS 10.6, itunes is up to date, I have restarted computer and ipad and switched usb sockets. Dont know if its related, but I can no longer see my sony handycam in imovies too.

    My brand new iPad 2 does not appear in iTunes. I am OS 10.6, iTunes is up to date, I have restarted computer and iPad and switched usb sockets. Don't know if its related, but I can no longer see my Sony Handycam in iMovies too.

    What content are you wanting to copy of the iPad ? You should be able to copy off anything that you've purchased from Apple (films, music, ibooks, apps etc) by connecting the iPad to your computer's iTunes and doing File > Transfer Purchases. If you want to copy off music copied from your own CDs or purchased from other sites then you will need to find a program for your computer that can copy them off – iTunes won't copy them off.
    For photos taken with the iPad, copied to it via the camera connection kit or saved from emails/websites then you should be able to copy them off via the Windows camera wizard.
    For photos that were originally synced from a computer you will need a third-party app such as Simple Transfer which can copy them off via your wifi network. But as photos are 'optimised' when they are synced to the iPad, any that you then copy back to a computer may not be exactly the same as they originally were on your computer.
    Content in third-party apps (documents and files etc) then how you copy that content off will depend upon what the apps that they are in support e.g.either via the file sharing section at the bottom of the device's apps tab when connected to iTunes, via wifi, email, dropbox etc.

  • Iphone does not appear in itunes. _ALL_ recommended steps were taken to no avail

    I'm using windows 7 pro 64-bit, itunes 10.3.1.  I have an iphone 3gs running ios v. 4.3.3.  All software and drivers are up-to-date on my computer.
    When I open itunes and plug in my iphone, itunes hangs for roughly two solid minutes.  After which, my iphone does not appear in itunes.  The same thing happens if I reverse the order and plug in my iphone before opening itunes.
    I have read and followed all and I mean all the instructions in multiple articles on the apple support site to try and resolve the issue, and nothing has fixed the problem.  My impression is that this is a bug in the latest itunes release since the problem started after updating to the latest version of itunes and did not occur previously.  Nothing else changed with either my computer or my iphone since then.  In all other ways, my computer, all USB devices connected to it, and all other software installed on it function perfectly.
    Here are the things I have done that DO NOT RESOLVE MY PROBLEM:
    - restart apple mobile device service and verify it is configured correctly
    - restart ipod service and verify it is configured correctly
    - restart my computer
    - reset my iphone
    - verify that my USB drivers are up-to-date and all USB ports are functioning correctly
    - verify that my iphone DOES correctly appear in windows explorer and the device manager
    - verify that my security software (norton 360) is updated to the latest version
    For the record I am not running any third-party phone software.
    Here is the only thing I have found that works, however, it works ONLY for the first time I open itunes afterwards.  After syncing ONE TIME, the next time I open itunes, the problem comes back exactly like before.
    - completely uninstall, and then reinstall all apple software in precise accordance with instructions given on the support page http://support.apple.com/kb/HT1923
    I honestly don't expect anyone to have a solution to this issue, but I will be thrilled if there is one.  I am posting primarily to see if anyone else is experiencing the same problem, and hopefully to gain the attention of a developer who can hopefully institute a fix.

    Sounds like a ruined iTunes install iTunes require a number of services running if an overzealosch firewall or rights settings or "optimisme" program stopped any of those what you exp happens

  • Error in transaction COGI does not appear when using FM BAPI_PROCORDCONF_CR

    Hi,
    I use FM BAPI_PROCORDCONF_CREATE_HDR to confirm the order but the error for goods movement does not appear in COGI but it does appear during manual confirmation in transaction COR6... can anyone help me with this? Thanks a lot!
    Rgds,
    Mark

    Hi,
    maybe QE11 is an option for recording results vai BIM.
    Cheers,
    S>

Maybe you are looking for