FMS NetConnection.call stops responding

I have a FMS 3.5.1 server running an application I developed.  After some time it seems FMS becomes unstable and the flex client can connect (I receive a NetConnection.Connect.Success) but nothing happens after that.  I did some digging, and it turns out that FMS is in a strange state where clients can connect, and FMS can successfully call functions on the flex client, however any NetConnection.call() from Flex to FMS does not work.  I tried changing the flex client to make a function to fms test() that simply traces a test message, but I do not get any errors in Flex making the call, and do not get any errors in any fms log or application log, or the expected trace on FMS.  It's as if the call was never made.  The server however can continue to make function calls to the flex client. Also, after some time, some application instances continue to work while others do not.  Restarting an application that is not responding does not fix the issue.
I made a wireshark capture on the FMS server during this:
frame #47 Server BW, Client BW, Ping, Invoke
frame #48 Server calls onBWCheck on flex client
frame #49 Flex sends Server BW message
frame #51 Flex calls Test() function on FMS
frame #52 Flex calls _result on FMS
frame #53 FMS sends ACK for frame #52
frame #89 Flex sends RST, ACK for frame 53 - RTT for ACK was 16.8 seconds
Earlier in the day I see a bunch of error messages in the logs:
This is from the master.00.log and there are 4971 of these in a row with the exact same timestamp
2010-06-21    04:50:26    10077    (e)2581395    Failed to signal process condition: errno(22).    -
From the edge.00.log, I see a bunch of these about 4-5 per second
2010-06-21    04:48:21    10097    (e)2581394    Failed to wait for process condition: errno(43).    -
core.00.log
2010-06-21    05:57:12    22803    (e)2581279    Assert failed in /FlashPlayer6_02_FlashCom/shared_tcserver/tcparser.cpp line 109    -
2010-06-21    05:57:12    22803    (e)2581279    Assert failed in /FlashPlayer6_02_FlashCom/shared_tcserver/tcparser.cpp line 109    -
2010-06-21    05:57:12    22803    (e)2581279    Assert failed in /FlashPlayer6_02_FlashCom/shared_tcserver/tcparser.cpp line 109    -
2010-06-21    05:57:12    22803    (e)2581279    Assert failed in /FlashPlayer6_02_FlashCom/shared_tcserver/tcparser.cpp line 109    -
2010-06-21    06:05:17    22803    (e)2581279    Assert failed in /FlashPlayer6_02_FlashCom/shared_tcserver/tcparser.cpp line 109    -
2010-06-21    06:11:56    22505    (e)2581279    Assert failed in /FlashPlayer6_02_FlashCom/shared_tcserver/tcparser.cpp line 109    -
2010-06-21    06:51:26    22803    (e)2581279    Assert failed in /FlashPlayer6_02_FlashCom/shared_tcserver/tcparser.cpp line 109    -

Hi ptamilar,
Can you update to the most recent FMS available, FMS 3.5.3 and if you're still seeing this issue email me ([email protected]) directly and we'll work together to get this resolved for you.
http://www.adobe.com/support/flashmediaserver/downloads_updaters.html
Asa

Similar Messages

  • FMS netconnection to HTTPS

    Hello friends,
    I am currently stumped on how to make an FMS netconnection call to an AMF gateway using HTTPS.
    It is my understanding that Flash in the browser will utilize whatever HTTPS cert the browser has available for the HTTPS path you are trying to connect.
    Is there some sort of config or cert trick I need to apply for FMS to make HTTPS connections? I was considering it might be one of the following, but could not find any information on the subject:
    -HTTPS cert saved to FMS directory?
    -FMS config value for specific HTTPS paths?
    -Allow the FMS host/ip to bypass HTTPS on server side?
    Any thoughts on this would be very helpful!
    Thank you
    -Lucas

    Hi Lucas,
    I am not very clear about your problem, but here are my thoughts based on my assumption that you want to establish a secure connection with FMS.
    In that case, you need to make rtmps connection with FMS and steps for same are as follows:
    1. Create your certificate key file and cert file
    2. Go to conf/_defaultRoot_/adaptor.xml and go to following section:
                <SSLCertificateFile></SSLCertificateFile>
                <!-- Specifies location of private key file for the certificate. If   -->
                <!-- an absolute path is not specified, the key file is assumed to be -->
                <!-- relative to the adaptor directory. If the key file is encrypted, -->
                <!-- the pass phrase must be specified in the SSLPassPhrase tag.      -->
                <!-- The type attribute specifies the type of encoding used for the   -->
                <!-- certificate key file. This can be either "PEM" or "ASN1". By     -->
                <!-- default, this is "PEM".                                          -->
                <SSLCertificateKeyFile type="PEM"></SSLCertificateKeyFile>
                <!-- Specifies the passphrase to use for decrypting the private key   -->
                <!-- file. If the private key file is not encrypted, leave this tag   -->
                <!-- empty.                                                           -->
                <SSLPassPhrase></SSLPassPhrase>
    put appropriate values to these tags such as sslcertificatefile, sslcertificatekeyfile, sslpassphrase and restart the server.
    3. From the client connect using rtmps://serverip/app/streamname and play your content.
    4. For the first time, if certificate is not installed in browser (or if trust chain is missing) it will prompt you for trusting and installing the certificate in your browser and then you would be able to play your content.
    5. Also, make sure that in your comf/fms.ini file, [ADAPTOR.HOSTPORT = :1935,80,-443] is set. rtmps uses 443 port.
    Please revert back to me in case of further query.

  • NetConnection.Call Parameter question

    passingArray=("a","b","c");
    NetConnection.Call (somephpfunction, responder,
    passingArray);
    Will I call method pass the array to the php function or will
    it pass the contents of the array as parameters to the php
    function?
    Meaning, am I to define the function as:
    function somephpfunction ($passingArray) {}
    or as:
    function somephpfunction ($a,$b) {}
    Thanks

    I'm using AS3 to connect to a mySql database using Zend Amf. I was wondering how to send (post) variables to the database.
    I found on www.gotoandlearn.com had us using the .call() to connect from AS3 to a php bootstrap that allowed us access to our db.
    Sooo, in a long winded way I was trying to collect AS3 variables to be able to post to the db through Zend Amf.
    I'd found some posts about using the extra parameters I just was getting errors in my php when I used them. So I thought I might be on the wrong path.

  • Pass Class Object To FMS Using NetConnection.call Method

    Hello All,
    I have a custom class that defines several methods on itself
    to retrieve its data. This class object is then sent to FMS via the
    NetConnection.call method. Once received by FMS, FMS calls the
    remote method to dispaly the class object on connected clients
    (minus the originator).
    Now, standard properties are displayed correctly, but when I
    call the class method to retrieve the class data, no data is
    retrieved.
    My question is, can FMS handle class objects as parameters in
    a NetConnection call. If not, is there a better practice of
    applying methods to retrieve the class data? Example below...
    class com.QuizItem
    var numOfAnswers;
    var getAnswer;
    function QuizItem(question)
    this.numOfAnswers = 0;//<-- Returns correct number of
    answers
    this.getAnswer = function(answerNumberToGet)//<-- Does
    not return any data when called by client side script
    return this.answers[answerNumberToGet];//Already populated
    array
    Regards,
    Shack

    First, I know JAVA does not working "pass by
    reference". It's only working pass by value. (or call
    by value)But obviously you don't fully understand what it means.
    Isn't main_a and method_a alias?
    if there is not alias, why? please explain to me.No. They're two independent references coincidentally pointing to the same object. In your swap method, you move method_a to point to something else. This does not affect main_a.
    and why main_a.hashcode() is main_a's value?why not? What else should it be?
    I think It's mean copy object. but main_a and
    method_a, they have same object id! @_@;;;It means "copy reference", same object.

  • Lync 2013 stops responding when making audio calls

    Lync 2013 desktop client in Windows 8.1 connected to Lync Server 2010
    From my office workstation (Windows 7, Lync 2010 client, completely different hardware), from inside the firewall, I don't have any problems (IM, audio, conference, video, desktop sharing all work 100%).  At home, I haven't been able to make PC calls. 
    I can see the status of my contacts in Lync, and contact them through IM, but as soon as I try to make an audio call, Lync stops responding.  I can, on occasion, connect and can receive audio, but I cannot be heard on the other end.
    To place audio calls, I connect to my office workstation through remote desktop - the audio quality is terrible but it works.
    I'm testing various configurations using the "Check Call Quality" function under Tools > Audio Device Settings.  I can hear a couple of beeps, or even a ring tone, once, but then it crashes again.  Waiting 10 to 15 minutes, it still
    does not respond.
    I am using Lync 2013 because 2010 wasn't available through MS Office HUP.  I checked the compatibility list, and I didn't think there would be a conflict between the two versions.
    Would downgrading Lync to 2010 help?
    I am not exactly a Lync expert, so I may have some of the setup wrong.  I'm hoping it's as simple as a server/connection setting that I've missed.  I'm using Automatic Configuration under Advanced Connection Settings.
    Hardware specs:
    DELL XPS 8500
    Windows 8.1 64-bit
    Realtek High-Definition ALC887 Audio
    Creative Labs Sound Blaster Recon3D PCIe Audio Card
    NVidia GeForce GTX 660 Graphics Card
    According to Windows, all drivers are up to date.
    I had a Logitech webcam installed.  I disconnected it and restarted the computer, to make sure it wasn't affecting Lync.

    Hi,
    Did the issue happen only for you or for multiple users?
    Did the issue happen when one endpoint is internal and the other is remote or also happen when two endpoint external the company?
    If it possible, please try to use another computer login on Lync client 2013 at home.
    Please double check if you have configured DNS entry for Lync server Edge A/V service.
    Here is a similar case may help you:
    http://social.technet.microsoft.com/Forums/lync/en-US/522e7f53-d0d4-4b08-9917-45b80a292963/lync-2010-external-voice-calls-do-not-complete-call-failed-to-establish-due-to-a-media?forum=ocsedge
    Please also double check the Edge external A/V port UDP 3478, TCP 50,000-59,999 and UDP 50,000-59,999 and make sure they are opened.
    What’s more, you can troubleshooting Edge server with the help of the link below:
    http://blogs.technet.com/b/nexthop/archive/2011/12/07/useful-tips-for-testing-your-lync-edge-server.aspx
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Windows stops responding and closes when I try to print

    I have IE 9 on a vista 64 bit.  Recently I had some problems with print jobs staying in the que.  I resolved that and reinstalled the printer and drivers.  I have a photosmart 5514.  Ever since that day I can't print off a webpage.  Coupons, bank statements etc.  It says windows stopped responding and closes the webpage.  I have been unable to fix this.  Also since that day my microsoft works wont' work.  It says I have corrupted fonts!

    It is a wireless connection.  What happened first after a year of flawless performance was I was asked to print a statement from my banks website.  I tried several times and it kept shutting down with the windows error above.  I was unable to print anything from that moment on.  I spent half the day finding the problem and discovered my WP network key was changed.  I have no idea how trying to print from the banks site did that.  I called them to report the situation since it was so strange.  Even asked them if they knew what that number even was.  I still had issued so I just uninstalled the printer and used my installation disc to set it up again.  Now I can print off my documents, PDF or Word but my Works files come up with the message that the font cache is missing or renamed.  When I searched that I found it isn't uncommon and that it is usually a corrupted printer driver.  I loaded it off my CD from HP.  Not sure what to do now other than try to uninstall and reinstall.  Just haven't had a time with work to do that yet.  Also when I try to print off an email, webpage or even a coupon it does the windows has to shut down message.  This will be my last HP printer.  I have problems all the time with them and have owned nothing but HP for over 20 years.  Four computers and printers in the house right now.  I just can't deal with que issues and buying new printers every two years because I have a home office and must have it working.

  • Using the internet on my iphone 4s is sooo slow it takes ages to load, sometimes it doesnt load at all and says connection has stopped responding...confused??

    Just upgraded to the new iphone 4s about a week ago, to be honest ive never had sooo many problems with a phone before.
    Wen trying to use the safari browser it takes aages to load and i mean ages! sometimes it doesnt even load at all it says connection timed out? or connect has stopped responding? can anyone tell me why? all connections are on. i have reset it but still have the same problem. also my app store doesnt work and apps that i have downloaded for iphone e.g facebook and gmail they dont work either. im paying alot a month for this phone to just call and text people!! im on vodafone b ut signal is full where i live. can any one help meee please
    Thank yoou
    Vicky x

    Check Settings > General > Cellular > Cellular Data and make sure it's "On".

  • "Display ATI Radeon Family driver stopped responding and has recovered"

    For the past few days my laptop Model HP G61-409CA has been displaying broken black and white horizontal lines and black, white, and coloured random squares on my screen. When it freezes the screen and mouse stops moving and the screen goes blank for about 5 seconds then comes back with the error (Display ATI Radeon Family driver stopped responding and has recovered) appears with a yellow triangle. Unfortunetly when i click on the triangle nothing opens up.
    Ive tried to download Catalyst Control Centre because when I researched many people spoke about not being able to find their control centre and that it had something to do with the displaying error on the screen. I cant seem to find the folder or the program on my computer, but when i tried to install something similar from http://support.amd.com/en-us/download/mobile?os=Windows%207%20-%2064#amd-catalyst-packages less than half way through the computer displayed a Blue screen and had to shut down. Also when i recovered my laptop the problem did not go away.
    My product number : WA964UA#ABC
    OS: Windows 7 for x64 based systems
    Please let me know what needs to be done ive tried updating all my drivers aswell!

    Hi Quesspee,
    Thank you for your query, I am happy to assist you!
    I grasp that a few days ago your  display started  showing broken black and white horizontal lines and black, white, and coloured random squares on your screen . When it freezes the screen and mouse stops moving and the screen goes blank for about 5 seconds then comes back with the error (Display ATI Radeon Family driver stopped responding and has recovered) appears with a yellow triangle. When you clicked on the triangle, nothing happened.
    You tried installing the Catalyst Control Center and approximately 1/2 through, you received a blue screen and your system  shut down.
    You tried doing a recovery but the issue remained.
    I suggest you test for hardware failures.  Testing for Hardware Failures (Windows 7)
    If this did not help to locate the issue, I suggest contacting HP support for further assistance.  They have the ability to remotely log onto your system, to  help locate and resolve issues.
    Please call HP technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region HP Technical Support Sitemap.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • How to fix Premiere Pro CC 7.2.1 when it stops responding?

    I have a project with 3 sequences. I am having trouble with the 2nd sequence which is mixed AVCHD and QT. I edited several clip assets extensively, enduring some rather long save times but I did edit. I went to the next clip in the timeline and it is QT. In order to make warp stablizer happy, the sequence is in animorphic format (non-square pixels) per the native AVCHD. The QT clip is in 16:9 1920x1080. When I selected the QT clip, Premier Pro stopped responding and I get the blue donut of death for the past hour.
    My system:
    *All CS apps installed are current. I have everything installed except scout and the various Flash programs.
    *I have McAfee Total Protection running but although it can slow disk access down by not giving the file to an applicaiton until it inspects it with real-time scanning, that's not an issue at this time.
    *Windows 8.1 Pro with the latest updates, 64-bit
    *Processor Intel Core i7-4930K 3.40GHz running 3.40GHz
    *16 GB of RAM
    *ASUS  SABERTOOTH X79 motherboard
    * Nvidia GeForce GTX 780 by EVGA, 3 GB VRAM version 334.89 driver
    *I have recently installed Apple QuickTime. My understanding is that PPro CC 7.2.1 doesn't use the 32-bit Apple QT but rather has it's own 64-bit QT plugin.
    *This morning I gave up on PPro ever completing whatever it was doing and terminated it. In AppData\Adobe I found these for PPro:
    Trace Database
    [Please don't post bug reports to the user forum.]
    Message was edited by: Jim Simon

    DHudes wrote:
    In Twitter, you supplied a link to http://www.adobe.com/support/download-install/supportinfo/ where it says
    Live chat agents can assist you with the following issues:
    Problems downloading and installing your software.
    Trouble activating or deactivating your product.
    Problems with your serial number.
    Problems with your Adobe ID or password.
    That is not helpful on several levels: 1) It directs me to installation support when I have already long since installed; 2) It links to a useless, for individauls, page in support that talks about developer, workgroup and enterprise support.
    3) Your response, despite my providing extensive detailed information, makes no attempt whatsoever to answer my question.  I expect real support people to monitor the forum, not mere 'customer service', since Adobe pushes individual customers to the forums for support. I'll gladly use a e-mail or web based ticket system to provide a detailed individual service request. I moved to PPro from Corel Video Studio, a product whose full license cost the same as 1 month of Creative Suite (I have the entire CS, I'm paying you $54/month with tax). With Corel, I got per-incident support for bugs for free. They required me to have 1 paid incident available. I would call in, they would determine that indeed this was -their- problem and credit me back my support incident to use for a how-to question. I'm not asking for help to do some particular task. I hit a fatal bug which causes the product to fail., a bug which software QA should have caught and did not. I do not expect to have to spend an hour hunting around for how to contact support only to effectively be steered to the forums where my question can remain ignored by anyone from tech support until I give up.
    Hi,
    Sorry, I didn't see your reply until now. I know the support page says it is only for download and installation problems, and that's a little misleading, but our support agents will assist you if you have serious problems with other items, like crashing or errors like you are experiencing.
    I'm not sure you attempted to contact them, but they would have guided you to our digital video agents and gotten you the web based ticket you wanted. If you are still experiencing issues, feel free to contact our agents.
    If you experience any other problems, feel free to send me a PM.
    Thanks,
    Kevin

  • I have an HP Pavilion All-in-One PC with windows 7 and it has stopped responding​.

    Last Thursday my computer worked fine and Friday it stopped responding. It will open a webpage in about 20 minutes even with roadrunner turbo.  Nothing works at all.   I did a virus scan but I dont know what else to try. Please help me.  Thanx, Shelly
    This question was solved.
    View Solution.

    shane and shelly
    This is tough to guess because there isn't a lot of information to work with.  I'll provide some basic steps you can take to see if it helps. Try clearing the temporary internet files, cache, and other non-essential stuff from your system.    You can do this in tools menu, then internet options.  There is a good cleaning freeware program called CCleaner. I use that and it finds a lot of junk and discards it.  It also cleans up the registry for you as well. If your hard drive is very full this could slow it down as well. see if there are files you can backup off the drive or delete to free up space.  It's also possible that your system is dusty and dirty and it's slowing down the processor. Maybe it's time to clean the vents and see if the heatsink in the PC is clogged with dust.  Heat can also slow a PC down especially if it's left on a lot so make sure it's cleaned as well.
    Hope  these tips help you.
    I work for HP. When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!

  • Adobe Acrobat Pro 9 Stops Responding

    I work in IT as desktop support for a city. We have a user that is always calling and saying that she cannot open PDF files. What happens is that Adobe Acrobat Pro 9 stops responding and you must go into Task Manager and kill Acrobat.exe. We've taught the user how to do this, because she's been having the issue for apparently 2-3 years.
    Here's the thing...
    She is the ONLY user in the city (of about 1000 users) that has this issue. She first had Adobe Acrobat Pro 8, so we upgraded her to 9, we have created a new profile on her machine, we have uninstalled and reinstalled, we've wiped her hard drive and started over, and we've given her 2 new computers. Nothing has worked! We just gave her a brand new computer with everything up to date yesterday. This morning she called after about 3 hours of using it saying she's having the same issue.
    Considering everything we've done, and that nobody else has this issue, we believe she is causing this issue. But we don't know how. We have never been able to replicate the problem ourselves. This afternoon we are sending a tech to sit with her to watch her and hopefully see if she is doing something that could cause this.
    Anyone have any ideas?
    Thanks in advance!
    -Logan T.

    She's a buyer for the city and recieves a lot of PDFs through e-mail. I think that's where most of her PDFs are opened from (Outlook 2007). I'm not sure how many she creates herself. I'm honestly wondering if she even needs Adobe Acrobat or if Adobe Reader would just be fine (she claims she needs it). That will be something the tech can look at today while he is there.
    -Logan

  • Bridge stops responding to Wacom pen clicks in Windows 8

    When I use Adobe Bridge with the Wacom pen (Intuos 5) the first one or two clicks work but then the program stops responding to any pen clicks until I move the mouse or touch the touchpad, and then all the unresponsive clicks are played back at once. This problem first appeared with Bridge in CS5. I then upgraded to CS6 hoping it would go away, but it didn't. And now I've downloaded the new CC version of Bridge and it does the same thing. The pen works erratically in other Adobe programs as well but the malfunction is most obvious and happens consistently in Bridge. All Microsoft programs (Office 2010, Outlook, Internet Explorer, and Windows 8 itself) work fine with the Wacom pen.
    I've searched the Adobe and Wacom support forums and this problem does not appear to be affecting anyone else; although, I did find these two posts by people with similar problems:
    http://forums.adobe.com/message/5359741
    http://forums.adobe.com/message/5262754
    I've talked to Wacom tech support and tried all of the troubleshooting steps they could think of, including going back to earlier versions of the Intuos driver. They released a new Windows 8 driver yesterday (6.36) but it did not solve my problem.
    Since I use a Logitech mouse, I've tried updating, going back to earlier versions, and completely uninstalling the Logitech drivers but the problem did not go away. I've also uninstalled, cleaned settings, and reinstalled the Adobe apps several times with no change.
    This morning I tried disabling all non-Microsoft services and all non-essential startup programs on reboot but it made no difference.
    One clue I've noticed that might help Adobe engineers figure this mystery out is that when I click on the little triangles to expand the metadata in the panel (with my first pen click as that's the only one which registers) they will highlight but not rotate and the panel never expands (see pictures below). This is a unique behavior which I can not replicate with my mouse. If someone can identify what would make the triangles respond in this way we might be onto what message the program is getting when I click with the pen.
    After pen click on Camera Raw metadata triangle
    After mouse click on Camera Raw metadata triangle

    Curt Y wrote:
    Shut down all unnecessary programs running in the background.  Does Win 8 still use the ctrl alt delete for the Task Manager?
    I did as you suggested and tried shutting down other running programs with Task Manager (Ctrl-Shift-Tab in Windows 8) but nothing changed in Bridge's response to pen clicks.
    Then I used msconfig to turn off all non-essential system services and programs by doing what it calls a "Diagnostic Startup". Upon reboot only the minumal Windows drivers and services were running. Not even the Wacom driver was loaded, although the pen still worked using the Microsoft pen driver. I oppened Bridge, and guess what, exact same problem. One click and then the program locks up. And this is with absolutely nothing else running, no sound, no network, no other programs, and only the minimal set of Microsoft drivers.
    So I figure that the only thing that's left for me to investigate is the Microsoft "Pen and Touch" settings in Control Panel. I open that and see three pen actions: Single-tap, Double-tap and a thing called "Press and hold" which is turned off. I turn it on and test Bridge. Bingo! it works. Pen clicks now register normally.
    If I hold the pen down for a second, however, a right click is triggered. This is what "Press and hold" is supposed to do. But if I go back to Control Panel and turn "Press and hold" off, then Bridge locks up on normal pen clicks. It's like Bridge is interpreting every click as a click-and-hold but is unable to follow thorugh if the setting is turned off in the "Pen and Touch" control panel.
    I've found no other program on my computer that does this but Bridge, and all version of Bridge from CS5 through CC do the exact same thing. A very strange bug indeed! But now I have a solution: turn on "Press and hold" in the "Pen and Touch" applet in Windows 8 Control Panel.

  • IPhoto 6.0.3 Stops Responding When I Try to Edit, Except . . .

    . . . when I set it to edit in Full Screen or via an outside like like PS.
    By going in to Preferences I can set it to edit when I double-click an image with different actions via:
    In Main Window: Stops Responding
    In Separate Window: Stops Responding
    Using Full Screen: Works
    In (other app): Works
    The same applies when right-clicking and image and selecting Editing methods from the menu.
    I have rebooted, used "Rebuild Photo Library" dialog to rebuild the thumbs and images in iPhoto's library. I have repaired disk permissions, run MacJanitor and rebooted again.
    I have not reinstalled iPhoto 6.0.3.
    I have seen numerous references to identical issues here and elsewhere on the 'net on OS X troubleshooting boards.
    I have about 9500 images in my library. There was a difference this time in how I acquired the new images I'm working with. Normally I import images into my Picture folder using Image Capture from my Nikon D70. The files are all JPEGs about 2-3.5MB each. This time I imported them into my wife's Dell laptop using the Windows Image Capture import (not sure what they call it) and then when home, I connected the Dell up to my network and dragged the folder into my Mac's Picture folder, then imported the images into iPhoto by dragging them.
    Otherwise they appear to be identical in permission, file type and metadata. And the freezes occur when trying to edit the new Dell-drags or old, directly-imported D70 files.
    JoeL

    Hi Dave,
    And thanks for taking the time to respond.
    This is what Console is telling me when I first open iPhoto:
    ===== Monday, June 5, 2006 4:32:31 PM US/Eastern =====
    2006-06-05 16:32:37.114 iPhoto[230] loaded /Applications/iPhoto.app/Contents/NetServices/Bundles/KeywordAssistant.NetServi ce
    2006-06-05 16:32:39.326 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/SimpleCanvas-FoldedCard-V.IP BookTheme has no category.
    2006-06-05 16:32:39.331 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/SimpleCanvas-FoldedCard.IPBo okTheme has no category.
    2006-06-05 16:32:39.340 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/SimpleLinen-FoldedCard-V.IPB ookTheme has no category.
    2006-06-05 16:32:39.345 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/SimpleLinen-FoldedCard.IPBoo kTheme has no category.
    2006-06-05 16:32:39.355 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/SimpleParchment-FoldedCard-V .IPBookTheme has no category.
    2006-06-05 16:32:39.359 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/SimpleParchment-FoldedCard.I PBookTheme has no category.
    2006-06-05 16:32:39.365 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/SimpleParchment-Postcard-V.I PBookTheme has no category.
    2006-06-05 16:32:39.371 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/SimpleParchment-Postcard.IPB ookTheme has no category.
    2006-06-05 16:32:39.378 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/TallFlowers-FoldedCard-V.IPB ookTheme has no category.
    2006-06-05 16:32:39.383 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/TallFlowers-FoldedCard.IPBoo kTheme has no category.
    2006-06-05 16:32:39.388 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/TallFlowers-Postcard-V.IPBoo kTheme has no category.
    2006-06-05 16:32:39.392 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/TallFlowers-Postcard.IPBookT heme has no category.
    2006-06-05 16:32:39.396 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/Travel-Hardcover.IPBookTheme has no category.
    2006-06-05 16:32:39.399 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/Travel-Large.IPBookTheme has no category.
    2006-06-05 16:32:39.403 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/Travel-Medium.IPBookTheme has no category.
    2006-06-05 16:32:39.407 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/TropicalLeaf-FoldedCard-V.IP BookTheme has no category.
    2006-06-05 16:32:39.413 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/TropicalLeaf-FoldedCard.IPBo okTheme has no category.
    2006-06-05 16:32:39.418 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/TropicalLeaf-Postcard-V.IPBo okTheme has no category.
    2006-06-05 16:32:39.422 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/TropicalLeaf-Postcard.IPBook Theme has no category.
    2006-06-05 16:32:39.425 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/Watercolor-Hardcover.IPBookT heme has no category.
    2006-06-05 16:32:39.429 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/Watercolor-Large.IPBookTheme has no category.
    2006-06-05 16:32:39.432 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/Watercolor-Medium.IPBookThem e has no category.
    2006-06-05 16:32:39.560 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/StoryBook-Hardcover.IPBookTh eme has no category.
    2006-06-05 16:32:39.569 iPhoto[230] IPTemplate: /Applications/iPhoto.app/Contents/Resources/Themes/YearBook-Hardcover.IPBookThe me has no category.
    Then I clear the above and try to "Edit" a photo:
    Zero, zip, nada, iPhoto just stops responding. OK, so I restart iPhoto and try "Edit in Separate Window and Console says:
    ===== Monday, June 5, 2006 4:43:02 PM US/Eastern =====
    2006-06-05 16:43:09.755 iPhoto[241] Could not find image named 'zoom-downN'.
    2006-06-05 16:43:09.778 iPhoto[241] Could not find image named 'zoom-downH'.
    2006-06-05 16:43:09.801 iPhoto[241] Could not find image named 'zoom-upN'.
    2006-06-05 16:43:09.824 iPhoto[241] Could not find image named 'zoom-upH'.
    (and of course, it iPhoto stops responding.
    "Edit in Full Screen" and "Edit in External Editor" both work fine and result in no Console responses.
    So now let's try "Slideshow" and this is the Console response when I select two images and click "Slideshow":
    ===== Monday, June 5, 2006 4:50:07 PM US/Eastern =====
    2006-06-05 16:50:10.545 iPhoto[251] Could not find image named 'tools-switchLeft-N'.
    2006-06-05 16:50:10.569 iPhoto[251] Could not find image named 'tools-switchLeft-P'.
    2006-06-05 16:50:10.593 iPhoto[251] Could not find image named 'tools-checkboxOff-N'.
    2006-06-05 16:50:10.616 iPhoto[251] Could not find image named 'tools-checkboxOff-P'.
    (and of course iPhoto freezes)
    So the main culprits are "Edit", "Edit in Separate Window" and "Slideshow" while "Edit in Full Screen" and "Edit in External Editor" both work fine as do the other controls such as "Rotate", "Edit" (the "edit" button at the bottom of the viewer window which opens the "Edit in Full Screen" function), "Card", "Calendar", "Book", "Email", "Order Prints", "iWeb", "Photocast" and "Play" which all work every time.
    I have since reinstalled the combined OS X 10.4.6 updater, the iPhoto 6.0.3 updater, booted into Safe Mode and tried all of the above (identical results) and unmounted all volumes except the OS volume and tried everything (same result). I also deleted all of the images that I imported from my wife's Dell machine and emptied the trash and then restarted.
    I tried the suggestion of checking permissions of image files, but permissions are all correct.
    I have no idea where to head next with this.
    JoeL

  • Sun Java System Application Server Standard stops responding for no reason

    Dear Sun Users and Support.
    We ran into an issue that we can't find any cause for. For some reason our Sun Java System Application Server 8.2 Standard stops responding to HTTP calls. Even Admin console can't be invoked. The server by itself appears to be running according to the Windows Services window.
    It happens very rarely but once it happens the server needs to be restarted.
    There are no logs in the log files.
    This happens to multiple Sun Servers at the same time (As if some kind of timer shuts them off).
    The servers run on Windows Server 2003.
    Any help would be greatly appreciated.
    These servers are in the production environment and have expected uptime of 99.9%.
    Thank you.

    This has happened to us a couple of times and it was caused by Windows running out of TCP/IP connections. Next time it happens do a "netstat -an" to see if you have an extremely large amount of connections in time-wait state.
    If you do this is probably the culprit and I'm sorry to say that I don't know of a cure. From what I've heard (objection your honour, hearsay!) this is caused by bugs in Windows TCP/IP stack.
    If you require a 99.9% uptime you should perhaps consider switching to Linux or Unix. I know, easier said than done!
    Hope this helps,
    Gunnar

  • NetConnection.Call.BadVersion amfsecure timeout??

    Hi.<br /><br />We are using a secure channel like this:<br /><br />    <channels><br />        <channel-definition id="my-secure-amf" class="mx.messaging.channels.SecureAMFChannel"><br />            <endpoint url="https://{server.name}:{server.port}/{context.root}/messagebroker/amfsecure" class="flex.messaging.endpoints.SecureAMFEndpoint"/><br />            <properties><br />                <add-no-cache-headers>false</add-no-cache-headers><br />            </properties><br />        </channel-definition><br />    </channels><br /><br />And we expose a remote service like this:<br /><br /><?xml version="1.0" encoding="UTF-8"?><br /><service id="remoting-service" class="flex.messaging.services.RemotingService"><br />    <adapters><br />        <adapter-definition id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" default="true"/><br />    </adapters><br />     <br />    <default-channels><br />        <channel ref="my-secure-amf"/><br />    </default-channels><br /><br />    <destination id="WebFlow"><br />        <properties><br />            <source>xxxxxxxxxxx.flex.FlexAdapter</source><br />        </properties><br />    </destination><br /></service><br /><br />Then, we create a RemoteObject like this:<br /><br />flowController = new RemoteObject("WebFlow");<br /><br />var channelSet: ChannelSet = new ChannelSet();<br />var channel: Channel = new AMFChannel("my-secure-amf", "https://localhost:443/example/messagebroker/amfsecure");<br />               <br />channelSet.addChannel(channel);<br />flowController.channelSet = channelSet;<br /><br />flowController.showBusyCursor = true;<br /><br />flowController.launch.addEventListener('result', onLaunch);<br /><br />It works well, but if we wait one minute (idle), when we try to invoke the method launch again it appears the following error:<br /><br />[RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.BadVersion: : url: 'http://localhost:443/example/messagebroker/amfsecure'"]<br />     at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()[E:\dev \3.0.x\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:216]<br />     at mx.rpc::Responder/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:49 ]<br />     at mx.rpc::AsyncRequest/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest .as:103]<br />     at mx.messaging::ChannelSet/faultPendingSends()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\ messaging\ChannelSet.as:1399]<br />     at mx.messaging::ChannelSet/channelFaultHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\m x\messaging\ChannelSet.as:935]<br />     at flash.events::EventDispatcher/dispatchEventFunction()<br />     at flash.events::EventDispatcher/dispatchEvent()<br />     at mx.messaging::Channel/connectFailed()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\messagi ng\Channel.as:997]<br />     at mx.messaging.channels::PollingChannel/connectFailed()[E:\dev\3.0.x\frameworks\projects\rp c\src\mx\messaging\channels\PollingChannel.as:354]<br />     at mx.messaging.channels::AMFChannel/statusHandler()[E:\dev\3.0.x\frameworks\projects\rpc\sr c\mx\messaging\channels\AMFChannel.as:369]<br /><br />Is there any one minute idle timeout?<br /><br />We have tried:<br /><br />     <flex-client><br />          <timeout-minutes>0</timeout-minutes><br />     </flex-client><br /><br />But it doesn't fix the problem.<br /><br />Any help would be appreciated.<br /><br />Thanks a lot.

    <DIV dir=ltr align=left><SPAN class=437043212-01042008><FONT face=Arial <br />color=#0000ff size=2>Hi Paco, </FONT></SPAN></DIV><br /><DIV dir=ltr align=left><SPAN class=437043212-01042008><FONT face=Arial <br />color=#0000ff size=2></FONT></SPAN> </DIV><br /><DIV dir=ltr align=left><SPAN class=437043212-01042008><FONT face=Arial <br />color=#0000ff size=2>In the error message, it says </FONT></SPAN></DIV><br /><DIV dir=ltr align=left><SPAN class=437043212-01042008><FONT face=Arial <br />color=#0000ff size=2></FONT></SPAN> </DIV><br /><DIV dir=ltr align=left><SPAN class=437043212-01042008><FONT face=Arial <br />color=#0000ff size=2><FONT face="Times New Roman" color=#000000 size=3>[RPC <br />Fault faultString="Send failed" faultCode="Client.Error.MessageSend" <br />faultDetail="Channel.Connect.Failed error NetConnection.Call.BadVersion: : url: <br />'http://localhost:443/example/messagebroker/amfsecure'"] <br /></FONT><BR></FONT></SPAN></DIV><br /><DIV dir=ltr align=left><SPAN class=437043212-01042008><FONT face=Arial <br />color=#0000ff size=2>You are connecting to http destination instead of <br />https.   Could this be a configuration error?</FONT></SPAN></DIV><br /><DIV dir=ltr align=left><SPAN class=437043212-01042008><FONT face=Arial <br />color=#0000ff size=2></FONT></SPAN> </DIV><br /><DIV dir=ltr align=left><SPAN class=437043212-01042008><FONT face=Arial <br />color=#0000ff size=2>-John</DIV></FONT></SPAN><BR><br /><DIV class=OutlookMessageHeader lang=en-us dir=ltr align=left><br /><HR tabIndex=-1><br /><FONT face=Tahoma size=2><B>From:</B> paco [mailto:[email protected]] <br /><BR><B>Sent:</B> Tuesday, April 01, 2008 4:27 AM<BR><B>To:</B> <br />[email protected]<BR><B>Subject:</B> NetConnection.Call.BadVersion <br />amfsecure timeout??<BR></FONT><BR></DIV><br /><DIV></DIV>A new discussion was started by paco in <BR><BR><B>General <br />Discussion</B> --<BR>  NetConnection.Call.BadVersion amfsecure <br />timeout??<BR><BR>Hi. <BR><BR>We are using a secure channel like this: <br /><BR><BR>&lt;channels&gt; <br /><BR>        &lt;channel-definition <br />id="my-secure-amf" class="mx.messaging.channels.SecureAMFChannel"&gt; <br /><BR>            &lt;endpoint <br />url="https://{server.name}:{server.port}/{context.root}/messagebroker/amfsecure" <br />class="flex.messaging.endpoints.SecureAMFEndpoint"/&gt; <br /><BR>            &lt;properties&gt; <br /><BR>                &lt;add-no-cache-headers&gt;false&lt;/add-no-cache-headers&gt; <br /><BR>            &lt;/properties&gt; <br /><BR>        &lt;/channel-definition&gt; <br /><BR>    &lt;/channels&gt; <BR><BR>And we expose a remote <br />service like this: <BR><BR>&lt;?xml version="1.0" encoding="UTF-8"?&gt; <br /><BR>&lt;service id="remoting-service" <br />class="flex.messaging.services.RemotingService"&gt; <br /><BR>    &lt;adapters&gt; <br /><BR>        &lt;adapter-definition <br />id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" <br />default="true"/&gt; <BR>    &lt;/adapters&gt; <br /><BR><BR>&lt;default-channels&gt; <br /><BR>        &lt;channel <br />ref="my-secure-amf"/&gt; <BR>    &lt;/default-channels&gt; <br /><BR><BR>&lt;destination id="WebFlow"&gt; <br /><BR>        &lt;properties&gt; <br /><BR>            &lt;source&gt;xxxxxxxxxxx.flex.FlexAdapter&lt;/source&gt; <br /><BR>        &lt;/properties&gt; <br /><BR>    &lt;/destination&gt; <BR>&lt;/service&gt; <br /><BR><BR>Then, we create a RemoteObject like this: <BR><BR>flowController = new <br />RemoteObject("WebFlow"); <BR><BR>var channelSet: ChannelSet = new ChannelSet(); <br /><BR>var channel: Channel = new AMFChannel("my-secure-amf", <br />"https://localhost:443/example/messagebroker/amfsecure"); <br /><BR><BR>channelSet.addChannel(channel); <BR>flowController.channelSet = <br />channelSet; <BR><BR>flowController.showBusyCursor = true; <br /><BR><BR>flowController.launch.addEventListener('result', onLaunch); <BR><BR>It <br />works well, but if we wait one minute (idle), when we try to invoke the method <br />launch again it appears the following error: <BR><BR>[RPC Fault <br />faultString="Send failed" faultCode="Client.Error.MessageSend" <br />faultDetail="Channel.Connect.Failed error NetConnection.Call.BadVersion: : url: <br />'http://localhost:443/example/messagebroker/amfsecure'"] <BR>at <br />mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()[E:\d ev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:216] <br /><BR>at <br />mx.rpc::Responder/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as: 49] <br /><BR>at <br />mx.rpc::AsyncRequest/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncReque st.as:103] <br /><BR>at <br />mx.messaging::ChannelSet/faultPendingSends()[E:\dev\3.0.x\frameworks\projects\rpc\src\m x\messaging\ChannelSet.as:1399] <br /><BR>at <br />mx.messaging::ChannelSet/channelFaultHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src \mx\messaging\ChannelSet.as:935] <br /><BR>at flash.events::EventDispatcher/dispatchEventFunction() <BR>at <br />flash.events::EventDispatcher/dispatchEvent() <BR>at <br />mx.messaging::Channel/connectFailed()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\messa ging\Channel.as:997] <br /><BR>at <br />mx.messaging.channels::PollingChannel/connectFailed()[E:\dev\3.0.x\frameworks\projects\ rpc\src\mx\messaging\channels\PollingChannel.as:354] <br /><BR>at <br />mx.messaging.channels::AMFChannel/statusHandler()[E:\dev\3.0.x\frameworks\projects\rpc\ src\mx\messaging\channels\AMFChannel.as:369] <br /><BR><BR>Is there any one minute idle timeout? <BR><BR>We have tried: <br /><BR><BR>&lt;flex-client&gt; <BR>&lt;timeout-minutes&gt;0&lt;/timeout-minutes&gt; <br /><BR>&lt;/flex-client&gt; <BR><BR>But it doesn't fix the problem. <BR><BR>Any <br />help would be appreciated. <BR><BR>Thanks a lot. <BR><BR><br /><HR align=left width=200><br />View/reply at <A <br />href="http://www.adobeforums.com/webx?13@@.59b4dc44">NetConnection.Call.BadVersion <br />amfsecure timeout??</A><BR>Replies by email are OK.<BR>Use the <A <br />href="http://www.adobeforums.com/webx?280@@.59b4dc44!folder=.3c061a83">unsubscribe</A> <br />form to cancel your email subscription.<BR><BR>

Maybe you are looking for

  • Desktop doesn't retain pic selected in iphoto

    Hey all, searched for this but didn't find anything. When I select a pic in iphoto for my desktop image, it shows up for a second then reverts back to the previous image. Doesn't matter if I select the pic in iphoto or from the preferences pane, it o

  • What is new in Nokia 6500s update firmware ver. 6....

    What is new in Nokia 6500s update firmware ver. 6.6? Nokia N73. V 4.0812.4.0.1 Code: 0529786 Nokia 6500 Slide V6.6 code: 0556234

  • *SOLUTION* to (at least some) "HP Scanjet Pro" problems in 10.6

    Good day to everyone! I have found a workaround for the problems experienced by people attempting to use HP Scanjet scanners (at least the 4850, which is what I use, I suspect greatly this will work for others as well). Basically it is to install the

  • Why does FF18 (and not older releases) have new, severe font display issues in some contexts?

    When I upgraded to FF18 in Windows XP, all the sample pages (more than 200) in my portfolio site were effectively rendered unreadable in FF18 in XP. I also noticed the darker themes in Gmail had some of the same issues, though much less severe. I see

  • Problem with my Apps.

    Hi, i hav a iPhone4 and it was working fine until 2 days ago. Now when i try download an app, the app will appear on my home screen with the word "Waiting" and then after 10-20 seconds just disapear, no matter how many times i try to download the sam