Capture Deck Not Initialized...EVER!!!

Hey,
Just wondering if anyone else has had the problem lately that your computer has not connected with your camera. Mine will not connect! I have tried 3 firewire cables (including a $40 brand new one) 2 MacBooks one of which I capture video with all the time and two different cameras...The only thing I can think of that could have changed anything are the software updates I got a couple days ago...Has this happend to anyone else?

I had forgotten that I upgraded the OS since my last capture. I followed the instructions in
http://docs.info.apple.com/article.html?artnum=301852
and now all is well.
When all else fails…
Thanks to all.

Similar Messages

  • "Cipher not initialized" when trying to invoke CRM On Demand web service

    Hi,
    I'm try to invoke CRM On Demand web service for which there is a pre-req to get a session ID by making an https request. I've the below java embedded code which does that. It works fine if I run the below code in my desktop as a java program, but when I deploy it on SOA 11g I get "Caused by: java.lang.IllegalStateException: Cipher not initialized" error (find below the stack trace). Please let me know what's going wrong here?
    String sessionString = "FAIL";
    String wsLocation =
    "https://secure-********.crmondemand.com/Services/Integration";
    String headerName;
    try {
    // create an HTTPS connection to the OnDemand webservices
    java.net.URL wsURL =
    new java.net.URL(wsLocation + "?command=login");
    java.net.HttpURLConnection wsConnection =
    (java.net.HttpURLConnection)wsURL.openConnection();
    // disable caching
    wsConnection.setUseCaches(false);
    // set some http headers to indicate the username and password we are using to logon
    wsConnection.setRequestProperty("UserName",
    wsConnection.setRequestProperty("Password", "***********");
    wsConnection.setRequestMethod("GET");
    // see if we got a successful response
    if (wsConnection.getResponseCode() ==
    java.net.HttpURLConnection.HTTP_OK) {
    // get the session id from the cookie setting
    for (int i = 0; ; i++) {
    headerName = wsConnection.getHeaderFieldKey(i);
    if (headerName != null &&
    headerName.equals("Set-Cookie")) {
    // found the Set-Cookie header (code assumes only one cookie is being set)
    sessionString = wsConnection.getHeaderField(i);
    if (sessionString != null ||
    sessionString.startsWith("JSESSIONID")) {
    break;
    String formattedID =
    sessionString.substring(sessionString.indexOf("=") + 1,
    sessionString.indexOf(";"));
    setVariableData("SessionID", formattedID);
    //System.out.println("Session ID: " + sessionString);
    } catch (Exception e) {
    e.printStackTrace();
    setVariableData("SessionID", e.getMessage());
    System.out.println("Logon Exception generated :: " + e);
    throw new RuntimeException(e);
    Caused by: java.lang.IllegalStateException: Cipher not initialized
    at javax.crypto.Cipher.c(DashoA13*..)
    at javax.crypto.Cipher.update(DashoA13*..)
    at com.certicom.tls.provider.Cipher.update(Unknown Source)
    at com.certicom.tls.record.MessageEncryptor.compressEncryptSend(Unknown Source)
    at com.certicom.tls.record.MessageEncryptor.compressEncryptSend(Unknown Source)
    at com.certicom.tls.record.MessageFragmentor.write(Unknown Source)
    at com.certicom.tls.record.WriteHandler.write(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertSent(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessage(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessages(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Source)
    at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readUntilHandshakeComplete(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.completeHandshake(Unknown Source)
    at com.certicom.tls.record.WriteHandler.write(Unknown Source)
    at com.certicom.io.OutputSSLIOStreamWrapper.write(Unknown Source)
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
    at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123)
    at java.io.FilterOutputStream.flush(FilterOutputStream.java:123)
    at weblogic.net.http.HttpURLConnection.writeRequests(HttpURLConnection.java:158)
    at weblogic.net.http.HttpURLConnection.getInputStream(HttpURLConnection.java:363)
    at weblogic.net.http.SOAPHttpsURLConnection.getInputStream(SOAPHttpsURLConnection.java:37)
    at weblogic.net.http.HttpURLConnection.getResponseCode(HttpURLConnection.java:952)
    at orabpel.productquerybpelprocess.ExecLetBxExe0.execute(ExecLetBxExe0.java:93)
    Thanks!

    Same question...did you ever got this resolved...for me, even the simple java program, when run on JDev 11g is ALSO not working. I am getting this.
    Using JDev 10g on the same machine (or for that matter SOA 10g) works perfectly.
    Have posted this thread too - Getting SSLHandshakeException when trying to login to OCOD using Jdev 11g
    Thanks,
    Amit

  • 64-bit compilation problem on Solaris/Intel: 7th argument not initialized

    I have a problem when compiling a program on a 64-bit Solaris Intel server. The problem is that when calling a function, if the 7th or next arguments are long arguments and I pass uncasted small integers values to it, the first 32-bit of my values are uninitialized.
    I have isolated the problem in the following source code.
    #include <stdio.h>
    #include <strings.h>
    void fnc1(a,b,c,d,e,f,g,h)
    long a,b,c,d,e,f,g,h;
    printf("%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld\n", a,b,c,d,e,f,g,h);
    void main()
    fnc1(0x10101010deadbeef,0x20202020deadbeef,
         0x30303030deadbeef,0x40404040deadbeef,
         0x50505050deadbeef,0x60606060deadbeef,
         0x70707070deadbeef,0x80808080deadbeef);
    fnc1(1,2,3,4,5,6,7,8);
    }I compile it using the following command:
    cc src1.c -g $* -m64 -o prog1.exeWhen I run the resulting .exe, I get the following result:
    1157442768875667183,2314885534015405807,3472328299155144431,4629771064294883055,5787213829434621679,6944656594574360303,8102099359714098927,-9187201948855714065
    1,2,3,4,5,6,8102099355978170375,-9187201952591642616The problem is that the first 32 bits of my 7th and 8th arguments are not initialized when the function is called.
    I know that in the following cases, I do not have the problem:
    - if I cast the arguments;
    - on other platforms (AIX, SunOs/Sparc, HPUX) or if I compile in 32-bit;
    - if I use optimization (-xO1 to -xO5) ;
    - if I prototype my function at the beginning of my source (void fnc1(long a,long b,long c,long d,long e,long f,long g,long h););
    I have over 1,000,000 lines of existing code to support. I am afraid using optimization would have other impacts and for now, I cast the arguments as problems are reported. Would there be a better way to handle this? By using a compiler switch?
    Thanks in advance.

    Tom.Truscott wrote:
    clamage45 wrote:
    But if you are passing to an ellipsis, you either cast actual arguments to the type the function expects, or the function extracts the default promoted type. Such code always works ...Yes, and developers should attempt to accomplish just that. Alas this is very difficult to ensure, particularly given the lack of a run-time type checking mechanism.In theory, proper use of the ellipsis function would be documented, and programmers would read and follow the documentation. In practice, some programmers don't read the instructions, or forget them, or someone ill-advisedly changes the way the function works so that existing calls stop working. Variable-argument functions are a fragile mechanism. (I program almost exclusively in C++, which has combinations of features such that variable-argument functions are rarely, if ever, needed.)
    Can one even assume that the value of the NULL macro is correct? Never, because the C standard allows a variety of definitions for NULL, and implementations vary. Passing NULL to an ellipsis is a recipe for failure. Don't do it.
    >
    Suppose you have function FI with an ellipsis that expects to get int arguments, and another FL that expects to get long arguments. When you port the code to a 64-bit environment, function FL fails. If you use the -signext option, function FI will fail.Ah, but for us FL never fails, since the compilers always widen the arguments. I fail to see the circumstance in which widening would cause FI to fail, could you please give a more specific example?
    void FI(int count, ...)
        va_list va;
        va_start(va, count);
        int t;
        while( --count >= 0) {
           t = va_arg(va, int);
           do_something(t);
    }Function FI expects to extract 32-bit int arguments. If compiled with -signext, the calling function will pass 64-bit arguments. Perhaps the -signext option also causes the 32-bit extraction to be changed to a 64-bit extraction. I have no personal experience with the option, and I'm not in a position where I can experiment right now.

  • Image Capture: Scanner not recognized

    Image Capture does not recognize my HP C5180 when it it plugged in. It prints fine and is recognized by the HP utility.
    Since the update to 10.6.7 today, I am also having problems with my other scanning software.
    I uninstalled and reinstalled the most up to date HP drivers after the update to 10.6.7

    piatigorsky wrote:
    ... What's worse, there are no new drivers for my machine in Software Update. Anyone know how to solve this?
    I would say to not rely on the software update app to provide new third party software. brother and hp do a good job working with apple to get their software included, but many (like my canon) do not. also, the software might only be up to date for a certain length of time. I always check the third party peripheral company's support section for my specific product rather than use apple's blanket approach for all drivers for that brand. for example, the last time I had an hp update show up, I think it was around 300+ mb in size, or at least it was that much or more for initial installation. to download just the software for my specific hp model (which is rarely used in favor of my canon), it was <10mb.
    the point is to check with the eom support site instead of waiting for apple to supply it for you. you'll get it faster it you check back often enough, and you'll only get what you need, not everything. go to hp's site, type in "model### driver" and it should get you right to the page to dl that software.
    good luck. I will say that 10.6.7 and the latest safari have both been very disappointing for both functionality and speed. I don't think there is a direct connection though — except for 10.6.7 failing to work with my older scanner driver (the printer part still worked fine).

  • Image Capture does not have a 'Devices' option

    I have a new scanner and I installed the drivers. It's showing fine in Photoshop CS3 but the window for it is awkward and small and barely has any features to it (there is no selection to for Advanced either). I figured I should try to use Image Capture instead, hoping to have better luck and more features. However Image Capture is not allowing me to go to 'Devices > Browse Devices' because there is no 'Devices' menu listed at all. I've restarted, unplugged things, plugged devices back in. It just says 'No Camera or Scanner Selected' ... the Command B is not even working either.
    Has anyone ever had this happen, should I try reinstalling Image Capture?

    As for the scanner - so is this new one wireless? When I hooked up my Epson All-in-One, I had to install it via USB first before I could install the wireless (per their instructions).  With Snow Leopard, I simply installed the driver and it covered and recognized both the print and scan function - not so in Lion; I had to go through hoops with the scanner part and it finally showed up as a separate unit. I thought that is silly, but - as long as it works.....  I'm trying to think of possibilities since I'm about out of ideas, so you might want to consider that (if it applies). The other troubleshooting suggestions usually include redoing the "add" function after a reboot.
    As for Image Capture, I am out of ideas. FWIW, I never use it - in my workflow, there is no need for it. Not sure if this would have an impact, but make sure that you choose Image Capture in the CDs&DVDs Preference Pane (mine is set to ignore or ask purposely):
    If that does not work, I'd suggest reinstalling the OS over the top of what you have.

  • My DVCAM capture deck isn't capturing.

    I have tried everything with my capture deck (Sony DSR-11) and nothing is working. I have tried turning off my computer and then turning my deck on, and then opening final cut, it won't read the deck though. I recently reloaded my FCP6, and I haven't captured anything since I reloaded it, is there something I need to do to set the deck up?
    -Thanks

    No doubt there is something satisfying about tracking down and fixing and issue that is causing problems in a surgical manner. Lately I've come to question that approach. Reading post after post from people who are having problems because - a) they don't comprehend how their computer works as a system - which leads them to ... b) not pay any attention to the upgrade paths of their software which has often dire consequences because ... c) they have done zero maintenance on their machines or junk it up with all sorts of useless gegaws really makes me wonder about the efficacy of this path.
    I'm coming to believe in the modified brute force approach: once you have verified the problem is nothing simple like a permissions/ preference issue, erase the disk and do a clean installation. It will take less real time than futzing around for days trying to get things to 'sort of' work - and you have a pristine installation.
    Not for everyone I agree.
    Cheers,
    x

  • Error: File just captured could not be read and was deleted after capture.

    I was just recording an extremely important interview. I have recorded literally 10.000 recordings before with the same setup, every day, over a period of some three years now. I'm recorging DV PAL through SDI input on a AJA KONA LS card.
    It seemed to be going well last night while recording but as soon as I pressed 'Esc' to end the capture I got an error message saying (not exactly in these words) : Error: The file just captured could not be read.
    The file couldn't be found anywhere on the HD or in the trash. Usually when something goes wrong during capture, you can find the file in the capture folder named 'filename-av'. Not this time, I have never seen this error message before.
    The person being interviewed was absolutely furious and said he would not do the interview again. So I'm up against the wall here, and need to recover the files.
    What's more, the problem still persists. When I try capturing again, as soon as I stop the same error occurs. So now my FCP is not capturing anymore
    I tried running Data Rescue 3.1 and found the recording in deleted files, but:
    1. the recording is in several parts (not sure if it's all there, but probably most of it)
    2. Data Rescue 3 interprets the files as .dv files, as opposed to .mov files as all my other recorded material.
    3. THERE IS NO AUDIO IN THE .DV FILES, which pretty much nullifies the file recovery altogether.
    I tried googling this error, but it did not help much:
    1. None of the people were capturing the same way I do (most were capturing from tape, none straight through KONA SDI input)
    2. There was no solution to prevent the error.
    3. No solution to recover the files either.
    I must say, this experience really taught me the essence of Murphy's law: 'Anything that can go wrong, will go wrong at the worst possible moment'
    Any suggestions as to the reasons for this?
    Any suggestions as to how the files can be recovered?

    Good news!
    I beleive I have found the cause and solution.   At least now I am able to reproduce the problem at will and therefore, hopefully prevent it.
    I discovered that there is nothing wrong with my AJA KONA setup, as I was able to capture with both QuickTime movie capture and Adobe Premier just fine.  But every time I try capturing in FCP I get unreadable capture files (since 2 days ago).
    Trying all possible capture settings, capture presets or easy setups did nothing.  (although capturing thru Firewire still works every time).
    I was about to give up when I noticed that where I usually have my video scopes window running, for convenience sake, under it the Voiceover utility was running.
    So here is the deal:  Usually when you try and capture with the Voiceover utility running, you can't. FCP wont allow you to capture, it will return an error message saying: 'Log and capture can not be opened while Voice Over is running. Please close Voice Over and try again.'  As it turns out, this warning is probably for a good reason.
    BUT...
    If you shut down FCP with Voice Over running and start it up again THEN you CAN run Log and Capture at the same time... everything looks OK, until you stop the recordin, then you get an error message saying your recording is screwed.
    I tried this over and over again,  every time it behaves the same way.  Shutting down with VO util>starting up again>recordings get screwed  .. close VO utility>back to normal operation.
    I'm not sure if it was the VO utility the last time this happened (few weeks back), but it might very well be.  I might not have noticed that the VO utility was running as it was hidden behind the videoscopes and there are no warnings when running Log and Capture if you start up FCP with VO utility still running.
    My educated guess to what is going on is that the VO utility is taking up priority over the sound inputs and by doing so making the audio of the capture unreadable.  This theory is supported by the fact that when my data recovering experts found the recordings on the HD, there was no audio on the files, but the video was intact.
    The only reason setting up the AJA drivers helped in the past was probably because that flushed the FCP settings and in doing so closed the VO utility window. How very ironic
    Hope this helps someone out there. And I hope Apple find a way to prevent this from happening.
    cheers!
    Vidar F.

  • What's the difference between a not-initialed object and a null object

    hi guys, i wanna know the difference between a not-initialed object and a null object.
    for eg.
    Car c1;
    Car c2 = null;after the 2 lines , 2 Car obj-referance have been created, but no Car obj.
    1.so c2 is not refering to any object, so where do we put the null?in the heap?
    2.as no c2 is not refering to any object, what's the difference between c2 and c1?
    3.and where we store the difference-information?in the heap?

    For local variables you can't have "Car c1;" the compiler will complain.That's not true. It will only complain if you try to use it without initializing it.
    You can have (never used, so compiler doesn't care):
    public void doSomething()
       Car c1;
       System.out.println("Hello");
    }or you can have (definitely initialized, so doesn't have to be initialized where declared):
    public void doSomething(boolean goldClubMember)
       Car c1;
       if (goldClubMember)
           c1 = new Car("Lexus");
       else
           c1 = new Car("Kia");
       System.out.println("You can rent a " + c1.getMake());
    }

  • After upgrading to Lion Image Capture does not work, even though it is intel software.  Gives error 9931.  What gives?

    After upgrading to Lion, Image Capture does not work, even though it is intel software.  Gives error 9931.  What gives?

    Ouch, if it is indeed damaged, then sadly you need to restore the whole danged huge OS!
    Didn't used to be this way before Lion/10.7.
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    If that doesn't help Reinstall the OS.

  • Error :Receiver File Channel not Initialized

    Hi all,
    I am using a file adapter at the receiver side with file content conversion option. When i post a message it shows an error in the message monitoring as "Reciever File Channel not initialized : Unable to proceed : null"
    Please Help.....

    Hi,
    Check if the adapter is active or
    check on this thread:
    File Adapter Not Initialized Error
    the error might be due to FCC. Jsut remove that and see ift he adapter works.
    Regards
    vijaya

  • Error in communication channel " not initialized"

    Hi All,
           I'm working in FIle to mail scenario. In this scenario whenever i upload a text file to the R/3 application server. that file should be sent (as a attachment with a mail) to any email id. I did all the required configuration in IR. but i'm verymuch confused in ID configuration. I have created both sender and receiver communication channel in the same business system which refers a sender (R/3) System.sender communication channel is working fine. but when i activate the receiver communication channel it shows an error "not initialized".
    So kindly let me know,
    1. Should i use business system for my receiver end?,If so how do i create it?
    2. is receiver agreement, receiver determination, interface mapping necessary? If so, how do i configure it? because i'm not using any recever service since i'm sending mail to my mail box.
    note:
    It would be very helpful if u refer any link to find out the recever determination and interface determination configuration for this type of scenario.
    Thanks & Regards,
    hari.

    Provide us the XML formed after mapping.
    make sure that the msg type name is Mail and the name space name is http://sap.com/xi/XI/Mail/30.
    regards
    krishna

  • No Aapter registered for the channel and not initialized

    Hi Guys,
      I am working on Mail 2 File scenario. when the scenario is executed i am getting the  below error in sender MAIL adapter communication channel.
    No adapter registerd for the channel & not initialized
    Thnx,
    Siva

    Hi,
    Depending on your XI/PI version, apply one of the notes below to correct import the ESR content:
    PI 7.1X:
    #1152640 - SAP NetWeaver 7.1 including EHP 1: Importing ESR content
    XI 7.0:
    #836200 - SAP NetWeaver 7.0: Importing Process Integration Content
    XI 3.0:
    #705541 - XI 3.0 (SP1 and higher): Importing XI Content
    Also, check if the service for the adapters are running. Restart the J2EE Engine.
    If not solved, you may try redeploying the adapter's driver.
    Regards,
    Caio Cagnani

  • BPM error:Container element in step transformation is not initialized

    Hello Experts,
    I am new to the concept of BPM.
    I'm trying to create an integration process in which I'm taking an Idoc and processing it in many ways. The process contains many transformation steps. There two such transformation steps which have been placed in block step in a fork. And i get this error: Container element XXX in step transformation is not initialized
    What could be the problem?
    Regards,
    Akhil

    Hi
    if u are getting the messaga with red sigh then it means it will craete the error while running the scenario.
    but if it is in blue then i think it will not create any error.
    the meaning of that statement is that the container u have defind is not used anywhere. it is just giving u a warning message.
    Thanks
    Rinku

  • JDBC Adapter configuration not initialized:null

    i
    we have a synchronous scenario with the following adapters , RFC <> XI <> JDBC.
    1.JDBC Driver installation is done
    2.RFC Destination type t is done in sap(sender) system.
    3.checking the jdbc in VA is done
    while running it is giving the following error.
    com.sap.aii.af.ra.ms.api.RecoverableException: JDBC Adapter configuration not initialized: null
    where we have to initialize JDBC Adapter configuration
    Thanks in advance
    Prasad Nemalikanti

    hi prasad
    There are 2 jar files that may be missing from your SQL JDBC driver --> msbase.jar and msutil.jar, I think once you add these to the driver it might work.
    also check  the driver string for the SQL  driver 2 parameters
    i.e 'com.microsoft.jdbc.sqlserver.SQLServerDriver' now becomes
    'com.microsoft.sqlserver.jdbc.SQLServerDriver'
    This will solve your problem
    follow this link
    Re: MS SQL Server jdbc Driver installation on XI .
    XI JDBC Adapter using stored procedures
    thanks
    sandeep
    Reward points if helpful

  • I restored my ipad but i was unable to activate it because it is askimg me for the apple id and password eith which i originally set it up. I know the apple id although i do not remember ever using it but i cannot remember the password.

    I restored my ipad but i was unable to activate it because it is askimg me for the apple id and password eith which i originally set it up. I know the apple id although i do not remember ever using it but i cannot remember the password. I have tried everything from reserting my password to trying different passwords but it asks me for a custom question that i dont remember creating.

    You need to use Apple's iForgot service or contact their Account Security team.
    (123152)

Maybe you are looking for

  • Short dump in OLE_FLUSH_CALL

    Hi all, I am getting a runtime error in 'OLE_FLUSH_CALL'  DESTINATION SAPGUI. The exception is "CALL_METHOD_FAILED" from above FM. Strangely the error comes only in production. I have checked & compared the quality & production systems the settings a

  • Problem in transporting a z table

    i have added new fields to my z table and created a transport request. but when i transport the changes are not reflecting in the target system. how best can i transport a z table

  • R9 270x flicker. Requesting VBIOS if available

    Hello. I have been experiencing this problem since i bought this brand new MSI Radeon R9 270x Gaming 2G BF4 card. S/N: 602-V303-07SB1312026597 and here is the link to the current vbios filedropper.com/pitcairn

  • Help!! ipod itunes disc wont download on my windows vista laptop!!

    I just got a new laptop and it has windows vista with a 64 bit operation and when i try to download the disc to the laptop its give me an error message that says it cannot download onto a 64 bit operation. WHAT DO I DO?? It worked fine on my older wi

  • Error in Your Order The account was registered for a different country. Please sign out and sign in

    Hey, when I try to buy products I'm getting the following error when going to checkout: Error in Your Order The account was registered for a different country. Please sign out and sign in using an existing account for this country. how do fix it?