Update 7.5.2 breaks rtsp

7.5.2 firmware update breaks H.264 streaming video. It's not NAT port forwarding because I can stream using same playlist settings via tethered phone. I'm considering reinstalling previous firmware (I think that is 7.5.1 - comments?)

I can also confirm 7.5.2 breaks RTSP. I am glad I found this post, as I have been resetting my Axis 207 network camera and spending a lot of time trying to figure out what happened. I can no longer view my network camera over the WAN with the MPEG-4 Video Format selected (that allows audio). I have reset the Port Mapping numerous times on the AEBS also. And have re-enabled the QuickTime Steaming Server. I can successfully view MPEG-4 Video over my LAN only. The Moiton JPEG Video Format works (Personal Web Sharing on AEBS) over the WAN, but there is no Audio available. Hopefully Apple can fix this part that they broke with this upgrade.

Similar Messages

  • Update 9.1.2 breaks digital signing documents in Adobe 9 Pro on Windows XP

    I am able to digitally sign documents using an Aladdin eToken Pro 64k with a fresh copy of Adobe 9 Pro for Windows. However when I update to version 9.1.2 digital signing fails with an "error encountered while BER decoding". Signing still works on Vista and Adobe 9.1.2 Pro. I've checked to make sure none of the settings relating to digital signing changed during the update and none have. Anyone have any ideas on how to correct the problem?

    Hi Nick,
    First up, there was a small error in my previous post. I said the version of Acrobat (and whenever I say Acrobat I really mean both Acrobat and Reader, but I'm too lazy to type both) that was modified to fix the bug in SHA-1 fallback was 9.1.3, but I really meant 9.3.  Sorry about that.
    I saw your post from yesterday (http://forums.adobe.com/thread/563601) where you broached the BER decoding error, but in the post above you said signature creation isn't failing any more, so hopefully some update has fixed the problem.
    Here's a little bit about the BER Decoding error. During the signing process Acrobat writes the entire file to disk (which is why you always get the Save As dialog as part of the signing process) in the signed state with everything but the actual signature. However, it does leave a hole in the file where the BER encoded cryptographic data will reside once it's be computed and formatted. One thing that is created before the actual signature is the signature appearance. The signature appearance in the form field isn't really the signature proper, but just a graphic representation of the actual signature. The reason that the signature appearance is written to disk before the signature is created is because it too is part of the signed data and must exist before the actual signature is created.
    In a perfect world, after the file is written to disk, the cryptographic signature is created and written into the hole in the PDF file, and the signing process completes without any problem. However, if we get to the point that the file has been written out, but during the actual signature creation the process fails, that hole I mentioned isn't filled in. It's not really a hole per se, but a block of zeros that act as a placeholder for the BER encoded data.  Because there was some sort of failure and Acrobat didn't get the signed data back from the hardware device what you end up with is a PDF file with a signature appearance, but no real signature in the file. When you click on the signature field Acrobat tries to validate the actual signature, it finds the block of zeros where the signed data was supposed to be, it tries to decode the zeros and gets (as you might well imagine) nothing back and displays the BER Decoding error.
    Let leaves us with why didn't Acrobat get the signed data back. When using hardware devices, such as tokens or smart cards, the actual cryptographic signing (the encryption of of the digest with the users private key) takes place on the device. Acrobat (nor any other application) doesn't have access to the private key, which is what makes hardware devices more secure. It's up to the device to sign the data and send it back. If there is any kind of breakdown in that communication channel (which I mentioned in my previous post) the signature creation doesn't reach fruition and you're left with an unsigned file that looks like it was signed because there is a signature appearance.
    This is a case where we are providing technically correct, and utterly useless information. It's true that we can't decode a bunch of zeros, but what we should be telling the user is there is no signature (it's kind of like the Matrix where there is no spoon ).
    I hope this helps explain what you're seeing. If the the signing process breaks down again please make sure you are using the latest version of Acrobat/Reader and the token software is up-to-date.  If everything is current and the problem returns please let me know.
    Steve

  • HT1222 Does the most recent security update for Snow Leopard break Rosetta or has that been fixed?

    I want to make sure Security Update 2012-001 does not break Rosetta on Snow Leopard.  I heard something about that, and I can't afford to lose my PowerPC applications.  Thanks.

    The original one did have such issues.
    The revised v. 1.1 version got rid of those issues.
    Only the v. 1.1 version is now available for download. It can be installed as the only update, or on top of the original update to correct the problems.

  • Update after 2 months breaks my squirrelmail / imap authentication

    Ok, updated after 2 months, normally expecting some issues, but nothing this bad.
    Squirrelmail is used for remote hosts to access my server mail over internet.
    This update broke authdaemon I think.
    Here's output of authtest:
    [root@cyclops log]# authtest mark pw(redacted)
    ERR: authdaemon: s_connect() failed: No such file or directory
    Authentication FAILED: No such file or directory
    [root@cyclops log]#
    Which is the same output as in my errors.log when a client tries to access imap. 
    How do I turn verbosity up to get more useful output?
    EDIT:  SOLVED
    Forced REINSTALL of courier-authlib fixed it.  WHY WOULD IT DO THAT?
    That was part of the update I believe, but why would it bork the install on a basic update?
    Last edited by 86turbodsl (2010-04-08 10:19:23)

    Same problem here. For whatever reason, courier-impa is starting authdaemond and also stopping authdaemond directly after running the courier-processes in its init-script.
    I hacked the script a bit, now it's working properly:
    At the top, insert a line
    AUTO_AUTHDAEMON="false"
    Change the first if-clause to read:
    if [ $AUTO_AUTHDAEMON == "true" ] ; then
    and do the same for the second if-clause containing $AUTO_AUTHDAEMON.
    That's it.
    My complete init-script:
    CI_DAEMONS=
    AUTO_AUTHDAEMON="false"
    [ -f /etc/conf.d/courier-imap ] && . /etc/conf.d/courier-imap
    [ -z $AUTO_AUTHDAEMON_LAG ] && AUTO_AUTHDAEMON_LAG=2
    . /etc/rc.conf
    . /etc/rc.d/functions
    case "$1" in
    start)
    if [ $AUTO_AUTHDAEMON == "true" ]; then
    /etc/rc.d/authdaemond start
    sleep ${AUTO_AUTHDAEMON_LAG}
    fi
    if [ ! -f /var/run/daemons/authdaemond ]; then
    echo "ERROR: authdaemond is not running"
    stat_fail
    exit 1
    fi
    for daemon in $CI_DAEMONS; do
    stat_busy "Starting Courier ${daemon}"
    /usr/lib/courier-imap/${daemon}.rc start
    if [ $? -gt 0 ]; then
    stat_fail
    else
    add_daemon $daemon
    stat_done
    fi
    done
    if [ $AUTO_AUTHDAEMON == "true" ]; then
    /etc/rc.d/authdaemond stop
    fi
    stop)
    for daemon in $CI_DAEMONS; do
    stat_busy "Stopping Courier ${daemon}"
    /usr/lib/courier-imap/$daemon.rc stop > /dev/null
    if [ $? -gt 0 ]; then
    stat_fail
    else
    rm_daemon $daemon
    stat_done
    fi
    done
    restart)
    $0 stop
    sleep 1
    $0 start
    echo "usage: $0 {start|stop|restart}"
    esac
    exit 0
    Last edited by mauritzius (2010-04-12 14:52:21)

  • IPod Updater 2006-06-28 breaks On-The-Go playlist.

    After updating to version 1.2 and filling my nano full of podcasts I noticed this issue.
    I can add the Podcasts to the On-The-Go playlist but when I play them it will only report "1 of 1" while playing it, and it will stop playing & return to the main screen after playing the first file.
    I tested with regular audio files and it both reports the correct number of files in the playlist ie. "1 of 3" and plays them all.
    I'll be downgrading to version 1.1.1 when I get home, as I don't envision I'll be getting the Nike stuff.

    I know exactly what you mean. I had the exact same problem. When I purchased my ipod it came with an earlier software version 2006-03-whatever. I tied to update the software through the website, but when I did that itunes didn't recognize the ipod, or I could get the Nike+ to work, but then the ipod dumped all of my songs. I worked on this problem for 7 hours, going through each of the ipod support suggested fixes, to no avail. I Restared, Restored, everything. (Incidentally, I hate the fact that Apple doesn't give you the option to simply call a technician for assistance). Finally, I gave up. Luckily, I had just purchased my ipod from Circuit City only 4 days previously, so I had the right to return it to the store. When I did, I got a new Nano, which had the newer software (2006-06-28) included. I simply deleted my old software and installed the new one, and voila, no problems! Everything works perfectly and the Nike+ appears to be working flawlessly.

  • Java Update 5 (1.0) breaks Java for Volano based chats

    I installed the Java Update 5 (1.0) for Leopard on my Intel based Mac mini and then was unable to enter Volano (Java applet) based chat rooms. I was forced to reinstall my system to revert to my prior version of System 10.5.8 in oder to be able to continue use the Java based Volano chats. The update that will NOT work states: "This release updates Java SE 6 to to version 1.6.0_1.5, J2SE 5.0 to version 1.5.0_20, and J2SE 1.4.2 to 1.4.2_22."
    According to Volano developers -
    Note that Apple calls Java 5 (version 1.5) "J2SE 5.0", while it calls Java 6 (version 1.6) "Java SE 6". I think I finally have the following chart correct:
    J2SE 5.0 = Java 5 (version 1.5)
    - Available as 32-bit and 64-bit packages in Leopard
    - Removed in Snow Leopard
    Java SE 6 = Java 6 (version 1.6)
    - Available only as 64-bit packages in Leopard
    - Available as 32-bit & 64-bit packages in Snow Leopard
    In Leopard, the 32-bit Safari can run Java applets only with the 32-bit
    J2SE 5.0 support. To run applets using Java SE 6, you need to bypass
    Safari using the "appletviewer" Terminal command in Leopard, or upgrade
    to Snow Leopard where Safari can run Java SE 6.
    Volano says the possible work arounds for Leopard users (10.5.8( are:
    According to what I've read, if you have a 64-bit capable Intel processor (i.e., an Intel Core 2 Duo), the software update that you removed should have given you 64-bit Java SE 6 even on Mac OS X Leopard (10.5). Java SE 6 works fine with the VOLANO applets, but unfortunately the Safari browser that runs the applets is only 32-bit on Leopard, so applets in Safari still run with the 32-bit Java SE 5 instead of the 64-bit Java SE 6.
    So you have three options to solve the problem -- two free options (one rather easy, one more difficult), and one easy non-free option.
    (1) The Free and Relatively Easy Option
    If you have an Intel Core 2 Duo processor (not a Core Solo or Core Duo), you can install all the software updates from Apple so that you'll have the 64-bit Java SE 6.
    About Java for Mac OS X 10.5 Update 2 http://support.apple.com/kb/HT2733 "Java SE 6 is available on 64-bit, Intel-based Macs only."
    You would then modify your Java Preferences so that Java SE 6 is chosen first for the Java Application Runtime settings. You can verify the modified setting by running the following "java -version" command from the Terminal application (Finder > Applications > Utilities > Terminal):
    $ java -version
    java version "1.6.0_20"
    Java(TM) SE Runtime Environment (build 1.6.0_20-b02-279-10M3065)
    Java HotSpot(TM) 64-Bit Server VM (build 16.3-b01-279, mixed mode)
    There are some more detailed instructions here:
    Install Java 6 on Mac OS X Leopard
    http://gephi.org/users/install-java-6-mac-os-x-leopard/
    Then you can bypass Safari and run the applet directly in the 64-bit Java SE 6 using the "appletviewer" command in Terminal. For example:
    $ appletviewer http://www.actionchat.com/chat/english.shtml
    You just put the URL of the page containing the VOLANO chat applet you want to load. I just tried it on my system, and it works fine. You bypass Java SE 5, which is broken for the VOLANO applets, and you bypass Safari, which cannot run the 64-bit Java SE 6. Instead, you run the VOLANO applet using your Java SE 6 directly!
    (2) The Free and Not-So-Easy Option
    You can download and install SoyLatte as an alternative to the Apple Java VM for your Mac OS X Leopard system.
    SoyLatte: Java 6 Port for Mac OS X 10.4 and 10.5 (Intel)
    http://landonf.bikemonkey.org/static/soylatte/
    I have not tried SoyLatte on my iMac, though.
    (3) The Best but Non-Free Option
    For only $29, you can upgrade your system to the latest Snow Leopard and get both the 32-bit and 64-bit Java SE 6 along with a Safari Web browser that works with Java SE 6 for running applets!
    Mac OS X 10.6 Snow Leopard
    http://store.apple.com/us/product/MACOS_XSNGL
    I hope this information is of help to any Leopard users having trouble with the latest Java update.

    Thanks for the suggestion.
    Please bear in mind that this issue, presumably introduced by Apple's own update, affects not only the command line java interpreter but any other app that depends on Java (including some GUI apps). So it perhaps fits the larger scope of Leopard instead of the Unix area.
    Message was edited by: bhapca

  • Latest Feb 19, 2013 Java update for 10.6 breaks Safari 5.1.7

    Hi people, long time viewer first time poster here. I wasn't sure on how to contact apple in regards to their latest Java update on the 19th February 2013, so I thought I post it here and see if others have the same problem.
    So, I'm running the following:
    Java SE 6 (Java 1.6.0_41-b02-445)
    Safari 5.1.7
    Mac OSX 10.6.8
    When I try to load http://www.uk.msn.com (which is also my homepage) my browser freezes and I can't load any other page. This results in me have to quit Safari and sometimes force quit.
    I know it is the recent Java update because when I disable Javascript the website works fine and I can interact with it. As soon as I turn Javascript back on, the issue occurs again. Obviously turning Javascript off is a work around for now, but I require it for work etc.
    I have done a permissions repair which doesn't fix anything.
    Could others try the link and let me know what happens please? All OSX versions are welcome to see whether it is just the 10.6.8 OSX or spans to 10.7 and later.
    Also, does anybody know where I can report this issue to Apple, or do I just ring them up and tell them?
    Many thanks.

    I also have 10.6.8, Safari 5.1.7, and the most recent Java update. I can access the MSN site through the link you provided but, on returning to Apple Discussions, got a 60-second stall before Safari would work right again. Yes, it very well could be the site.
    The only Safari 5.x crashes I've had came after a Java update 12-18 months ago. I had repaired permission both before and after the update but the crash log showed a number of dlink files with question marks instead of version numbers. Another repair permission restored function and I've had no further crashes. So I always repair permissions before any subsequent Java update that's offered and twice after. For what ever reason, it seems to keep me going.

  • HT201422 Still can't sign in!   lately iOS updates just seem to break things!

    None of the steps have solved the issue of getting an activation error when trying to sign in to FaceTime. Worked fine before latest iOS update. Apple has really started to go downhill since jobs checked out.

    Here are two, long, ongoing discussions about the same problem. Maybe you can find seem help in one of them. I really do understand your frustration and I wish that I had an answer for you. The update to iOS 8.1.3 was supposed to address this issue, but for many it didn't work.
    imessage and Facetime sign in activation error iPad ios8.1.2
    Tried everything, FaceTime has an error occurred during activation on my iPad Air.
    You might want to consider contacting an Apple Store to make a Genius Bar appointment and see if they can help.

  • Security Update 2008-006 STILL breaks my Firewire

    I previously posted this:
    http://discussions.apple.com/thread.jspa?threadID=1713147
    My PowerBook G4, since the latest Tiger update, has Firewire die after one use.
    The solution (reset the Firewire chip set) works; but the Firewire chip has required reset now three times. It works again every time I reset then goes down when I want to use it the next time.
    Please help.

    Hi Eddie,
    Is this still with the iPod? Does it still charge? Does it still do it if it doesn't need a charge?
    Do you have another FW device/Drive to test with to see if it conks out your FW port?
    Wouldn't happen to have a FW Hub laying around would you?
    Another FW Cable to test with?

  • Latest Mozilla update: 3.6.14 breaks my web graphics.

    After applying the 3.6.14 update we have failures navigating the screens on our control systems graphics interface. Viewing the java console gives the following messages:
    java.net.MalformedURLException: no protocol:
    at java.net.URL.<init>(Unknown Source)
    at java.net.URL.<init>(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.setupGrayBoxPainter(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.access$500(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    java.net.MalformedURLException: no protocol: wbapplet.jar
    at java.net.URL.<init>(Unknown Source)
    at java.net.URL.<init>(Unknown Source)
    at sun.plugin.util.GrayBoxPainter.setProgressFilter(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.setupGrayBoxPainter(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.access$500(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    exception: name.
    java.lang.IllegalArgumentException: name
    at sun.plugin2.applet.Applet2ClassLoader.addJar(Unknown Source)
    at sun.plugin2.applet.Applet2Manager.loadJarFiles(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.IllegalArgumentException: name
    I have cleared all history, restarted, refreshed etc. Release 3.6.13 works without issue as do all previous versions.
    Any hints?
    TIA,
    ray L.

    Mozilla are aware of the issue involving Java applets not working in Firefox 3.6.14 and are working on a fix, no timescale but they are planning on a quick release. They are currently creating Firefox 3.6.15 which should fix this and will then be testing it to ensure the fix is working.

  • Latest Leopard update (2012-004) reliably breaks drive (mini 1,1)

    Title says it all.  I've got an older mac mini 1,1 (core duo, circa 2006) running 10.6 and the latest update 2012-004 trashes the HD's node structure to the point repair isn't possible.  And I've been able to reproduce it 3 times now.  DU when booted from the Leopard disk is unable to repair or even format the drive (OCZ SSD).  I am able to format, but not repair from a MBP.  The errors I am seeing are 'Invalid Node Structure' and at least once an 'Invalid B- tree node size' error.
    Once I get the SSD formatted and verified, I've been using SuperDuper to copy back from the older HD.  One thing I haven't done is a complete reinstall.  I'll hold off and see if I get any ideas as to what's causing this or a possible fix.  The SSD is only a few months old, but an older EOL'd model (Vertex Plus 3.0Gbps) and the firmware is current.  Thanks for any help!

    Solved by workaround!  One error, I mistakenenly said it's running Leopard, it's Snow Leopard.  I received a note from OCZ stating the issue is caused by an unacknolwedged Apple bug in the update (2012-004) that effects some SSD's from a handful of manufacturers.  If true, it's a mystery why I can't find anything about it online since SL still has a solid user base.
    Workaroud was to install the update on a spinning drive and then clone the drive back to the SSD.  Working great now!

  • Update to SP2 GW2014 Breaks SMTP Connections

    What is potentially going on here? Updated to Sp2 and now Fax Machine, Voicemail server, etc. Cannot connect and send email any longer? Some new...

    Company merged one of us a 30ish N shop with GW 2012 the other a 27 user MS shop with exchange 2003
    We've (the other IT guy and I) decided to create...

  • Latest FireFox update (v15.0.1) breaks sorting on Google Sites

    When using Google Sites feature in Google Apps, the sort feature in the list template page does not work. If you try to sort a list, you get a "server error" message which displays at the top of the page.
    This problem is new to v15.0.1 of FireFox. Older versions of FireFox, Internet Explorer 8, and Chrome do not currently have this problem.

    I have setup a temporary Google Apps test site where you can see this error for yourself:
    https://sites.google.com/a/cascadeservices.org/intraweb-test/

  • Libgnomeprint and libgnomeprintui update, and abiword printing breaks

    Indeed. So
    [2009-02-16 09:01] upgraded libgnomeprint (2.18.3-4 -> 2.18.5-1)
    [2009-02-16 09:01] upgraded libgnomeprintui (2.18.2-1 -> 2.18.3-1)
    After that point printing in abiword causes the application to crash. I tried recompiling abiword with the new headers in abs hoping maybe that would fix it, but it does not. So I am not sure what to do here.

    I have a good workaround.  The problem is the .abw template.  For some reason, once an .abw file is opened, the program can not print without crashing.  This can be worked around.  I have implemented it using .rtf, but it may work with other formats as well.
    1) change the default template to a safe file.
        1) Open Abiword and save  a blank .rtf file called normal.rtf.
        2) If ~/.AbiSuite/templates/ does not exist, create it and save normal.rtf in that directory.
        3) rename normal.rtf to normal.awt.  SAVE THE .rtf FILE THEN RENAME IT. DON't JUST CREATE THE .awt FILE!!
    This essentially tricks abiword into opening an .rtf file thinking it is a normal abiword template.
    2) To prevent abioword from saving files you will be unable to open and print later, make the default save format be .rtf
        1)Open ~/AbiSuite/AbiWord.Profile
        2)Navigate to the "<scheme" section that only has a few entries like "name=" _custom" and insert a line that says {DefaultSaveFormat=".rtf"} without the curly brackets, of course.
    Now you should be able to open Abiword as usual, save files as usual (only in .rtf instead of .abw) and print as normal.  One caveat: you will still be unable to print pre-existing .abw files, and if you open one you will be unable to print until you shut down the program and restart it.
    Edit: fixed the typo.  Fixed another too.
    Last edited by jimmy the saint (2009-05-28 00:25:04)

  • Updating Price Breaks through API

    Hi,
    We have a requirement to update the existing price break information. We have found an API for inserting a new price break for a given price list. The API name is
    QP_PRICE_LIST_PUB.Process_Price_List.
    Can any one let us know is there a way to update existing pricebreak using a standard API and how.
    Thanks & Regards,
    Parvathi S

    Check the product related documents. They will have a mention of all the public APIs if they exist.
    --Shiv                                                                                                                                                                                                                           

Maybe you are looking for

  • Performance on Select Single&Write  AND Select*(For All Entries)&Read&Write

    Hi Experts, I got a code review problem & we are in a argument. I need the best performance code out of this two codes. I have tested this both on 5 & 1000 & 3000 & 100,000 & 180,000 records. But still, I just need a second opinion of experts. TYPES

  • Error when create connection in Xcelcius 2008 SP3 to BW EHP 1 SPS 6

    Dear All, Last week there is no problem in this connection, buat since today this error happen. We found error when trying to connect Xcelcius and and BW,below the error: com.sap.ip.bi.bics.remote.impl.rmi.ApplicationCreationException: Could not to c

  • Laser jet 6 L toner print very light output

    I changed my toner with genuine HP toner but did not use it for a while. Now that I try to print, I can barely see the letters on the page. I took out the toner, shake it and rotate it several time, the print out get a little darker but still looked

  • Buying TV out Card for nforce

    Hi, I have a K7N20 Pro from MSi (6373). Any one know where I can buy the optional Tv out card in the UK. Have tried http://www.vgicomputer.co.uk but they dont seem to have any. Any ideas? Thanks Mike :D

  • "Hide Links" (non-underlined, black, but clickable

    Hi, I sometimes prepare texts that should look "normal" if printed, but where having active hyperlinks are also practical. So I want to be able to have all hyperlinks appear in the normal text colour and without any underlining and then export then t