Projects now demand debugger, other issues

I installed beta 2 this morning and now my projects are
giving me the "Where is the debugger or host application running?"
dialog, even when not running in debug mode. I can hit cancel and
the app seems to function as before.
The install also wiped out my license key information and
after re-entering my flex 2 license, my graphs still say "Flex
Charting Trial" across them.

Please see my explanation here:
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=651&threadid =1303610&highlight_key=y&keyword1=debug

Similar Messages

  • 4.4.2 Note 3 Update... Now Email and other Issues

    Since I updated to 4.4.2 this morning, the basic email app shuts down every time you tap on a notification. You then have to go to the app itself and reopen it. Since it's the stock app, you can't uninstall it. Not that I'd want to since I took the time to setup 3 different email accounts.
    I also been having issues with the split screen not going away when you swipe it down to the bottom of the screen. The only way to close it is by backing out, which causes the first app you had open to close. Which is frustrating. My Note 3 worked just fine before the update. Any suggestions?

    Craziness... Now when I use the split screen function, the windows are locked and are NOT adjustable. And to top things off, the email app now fails to send emails!

  • I recently got new mac air and transferred my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record, shows its receiving sound from software inst. but no sound. I checked audio preferences and

    i recently got new mac air and transferred my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record, shows its receiving sound from software inst. but no sound. I checked audio preferences and they are set as they should be. I tried it in all the other older projects and same issue anyone have any experience like this very frustrating.  Can one download old version still ? or can you run both versions on OS10.9.5 ?

    Ok, either my question was too long or nobody seems to have an answer. Sad, either way
    Here's something I found out in the meantime, maybe this is interesting for somebody or maybe - problem's not totally solved - enough info for any of you to give me further advice.
    When I start Logic Core Audio driver de-activated, I can open old songs. Then I save them in a new folder with all audio files and a new name. And I remove all EXS24 instruments as well as the Space Designer. I quit Logic, re-open with Core Audio activated and I can open the song.
    Problem no.1: EXS24 instruments don't find the appropriate samples, but EXSMananger Pro did help me with this. Same problem with Space Designer, which doesn't find the impulse responses, connected to a certain preset.
    Two questions, every idea would be great!
    - Is there any way to teach Space Designer Presets where to look for impulse respones. I can load IR samples directly and create a new preset, but I can't use my old ones.
    - Is it possible to install Logic from scratch over an existing version? Or how should I de-install everything connected with Logic and then install a fresh version from CD?
    Thank you again,
    Joern

  • I recently got new mac air and transfered my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record shows its recieving sound from software inst. but no sound. I checked audio preferences OK

    i recently got new mac air and transferred my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record, shows its receiving sound from software inst. but no sound. I checked audio preferences and they are set as they should be. I tried it in all the other older projects and same issue anyone have any experience like this very frustrating.  Can one download old version still ?
    thanks,

    Ok, either my question was too long or nobody seems to have an answer. Sad, either way
    Here's something I found out in the meantime, maybe this is interesting for somebody or maybe - problem's not totally solved - enough info for any of you to give me further advice.
    When I start Logic Core Audio driver de-activated, I can open old songs. Then I save them in a new folder with all audio files and a new name. And I remove all EXS24 instruments as well as the Space Designer. I quit Logic, re-open with Core Audio activated and I can open the song.
    Problem no.1: EXS24 instruments don't find the appropriate samples, but EXSMananger Pro did help me with this. Same problem with Space Designer, which doesn't find the impulse responses, connected to a certain preset.
    Two questions, every idea would be great!
    - Is there any way to teach Space Designer Presets where to look for impulse respones. I can load IR samples directly and create a new preset, but I can't use my old ones.
    - Is it possible to install Logic from scratch over an existing version? Or how should I de-install everything connected with Logic and then install a fresh version from CD?
    Thank you again,
    Joern

  • Question about debugger is issuing classesForSignature

    Hello everybody.
    I'm working on a project to implement a dynamically typed language on the JVM using the JSR-292 invokeDynamic infrastructure. Some other members of the team have complained about long pauses during startup when running with the Eclipse Juno debugger, and I've been able to reproduce these in both Juno and Luna.
    The problem seems to be that the debugger is making a jdwp classesForSignature request for each class that has been unloaded, and each request requires the jdwp library to iterate over every single loaded class.
    Since the Java 8 implementation of invokeDynamic & method handles generates a large number of small anonymous classes (which can be GCed if no longer referenced), and we are also quite careful to ensure our own temporary class files can also be GCed away this produces a lot (several thousand) classesForSignature calls, each of which has to iterate over tens of thousands of classes.
    Does anybody know why the debugger is issuing classesForSignature requests for unloaded classes, and if there is some way to stop it?
    Thank's a lot!

    It is possible in the debugger tool
    Once you get the debugger tool, chose from menu:
    Breakpoints->Breakpoint at->Method
    Regards,
    Ravi

  • Select or Select....for update nowait (data write concurrency issue)

    Hello everyone,
    I am working on a jsp/servlet project now, and got questions about which is the better way to deal with concurrent writing issues.
    The whole senario is described as following:
    First each user is viewing his own list of several records, and each record has a hyperlink through which user can modify it. After user clicks that link, there will be a popup window pre-populated with the values of that record, then user can do the modifications. After he is done, he can either click "Save " to save the change or "Cancel" to cancel it.
    Method1---This is the method I am using right now.
    I did not do any special synchronization measures, so if user 1 and user2 click the link of same record, they will modify the record
    at the same time, then whose updates will take effect depends on who submits the request later. If user1 submitted first, then user 2, user1
    will not see his updates. I know with this method, we will have the problem of "Lost Updates", but this is the simplest and efficient way to handle this issue.
    Method2--This is the method I am hesitating.
    I am considering to use "Select....for update nowait " to lock a record when user1 has selected one record and intended to modify it. If user2 wanted to modify the same record, he is not allowed. ( by catching the sql exception.)But the issue I am concerned about is because the "select .. For update" action and "Update action" are not so consecutive as many transaction examples described. There could be a
    big interval between " select " and "update" actions. You could not predict user's behavior, maybe after he open the popup window, it took him a while to make up his decision, or even worse, he was interrupted by other things and went away for the whole morning?.Then the lock is just held until he releases it.
    And another issue is if he clicks "cancel" to cancel his work, if I use method1, I don't need to interact with server-side at all, but if user method2, I still need to interact with the server to release the lock.
    Can someone give me some advice ? What do you do to deal with similar situation? If I did not make clear of the question, please let me know.
    Thanks in advance !
    Rachel

    Hi Rachel,
    Congratulation, you have found a way to overcome your programming business logic.
    Have you ever consider that the solution of using CachedRowset concept yet to be included in j2se 1.5 tiger next year too prove workable under the scenario , whereby you can disconnect from the database after you have execute your query and reconnect again if you have to do transactional activity later, so that the loading overhead as well as the data pooling activity could be well balanced off.
    Although rowset is still not an official API now, but its potential to me is worth consideration.
    I have written a simple but crude cut JSP programme posted on this forum under the heading "Interesting CachedRowset JSP code to share " to demonstrate the concept of CachedRowset and hoping that the Java guru or the developer could provide feedback on how to imporve on the programming logic or methodology.
    Thanks!!

  • I just tried to open an indesign project and was told my trial has expired. why is this i need to open this project NOW !!!! also i noticed you're offering creative cloud for 29.99 us, i'm paying 45.00 canadian, why is this?

    i just tried to open an indesign project and was told my trial has expired. why is this i need to open this project NOW !!!! also i noticed you're offering creative cloud for 29.99 us, i'm paying 45.00 canadian, why is this?

    Heathervillistus if your membership is not able to be validated then it is due to a connection error between the computer and our activation servers.  Please see Sign in, activation, or connection errors | CC, CS6, CS5.5 - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html for information on how to solve the connection error.
    If you have questions regarding the pricing of your plan then please contact our support team directly at Contact Customer Care.

  • I upgraded my 3rd generation ipad to ios 6.0.1 and now am experiencing various issues.  Neither Pages or Numbers will open.  I just see a gray screen that says Pages or Numbers at the top and all of my documents are gone.

    I upgraded my "new ipad" (the 3rd generation I think) to ios 6.0.1 and now am experiencing various issues. 
    1- Neither Pages or Numbers will open.  I just see a gray screen that says Pages or Numbers at the top and all of my documents are gone. The icon that allows me to create a new document also does not appear.  I went to icloud.com to see whether my documents still existed, which brings me to the 2nd problem.
    2- It appears that all of my Pages documents are still on icloud, but all of my Numbers documents are gone.  There were only about 10, but I access 2 of them nearly every day, so this is a big issue for me.
    I went into Settings and all of the icloud information is correct and it "Documents & Data" is on.  When I look at the storage, I see the Pages documents but not the Numbers ones.  The next thing I did was turn my ipad off and back on, but this didn't fix anything.  Since my Pages documents are still on icloud, I then tried to delete the Pages app from the ipad so that I could reinstall it, which resulted in the 3rd problem.
    3- I cannot delete any apps.  I can get all of the icons to shake and the small x IS available, but everything freezes when I click it.  I can't do anything at that point except reset the ipad or wait until it eventually restarts itself.  I've tried this with Pages as well as multiple other apps, all with the same result.  I've also tried downloading a new app (which worked fine) and then deleting that one, but I got the same result.
    3a- A small related issue to this that I am far less concerned about is that when the ipad restarts itself, it comes back on and the screen is really dark and I can barely make out what appears on the screen.  If I enter my password right away, it stays that way until I go into Settings - Brightness & Wallpaper and touch the brightness setting (although I'm not actually changing the setting because it already shows that the brightness is turned up a little over halfway).  If I don't enter my password right away and let it go completely dark, then click the home button, the brightness is fine.
    So now I'm stuck.  My guess is that I will need to restore it, but wanted to check before I take that step.  Unfortunately, my laptop is on its deathbed so I haven't been synching my ipad to it and I fear my Numbers documents are gone forever.  I'd like to try everything I can to fix these issues before doing the restore in hopes that I can get the Numbers documents back.
    Any suggestions for any or all of these problems?

    Purplehiddledog wrote:
    I do backup with iCloud.  I can't wait until the new iMac is available so that I can once again have my files in more than 1 location without needing to rely solely on the cloud. 
    I also rely on iTunes and my MacBook and Time Machine as well as backing up to iCloud. I know many users know have gone totally PC free, but I chose to use iCloud merely as my third backup.
    I assume that the restore would result in my ability to open Pages and Numbers and fix the problem with deleting apps, but this would also mean that if my Numbers documents still exist solely within the app and are just not on iCloud for some reason that they would be gone forever.  Is that right?
    In a word, yes. In a little more detail.... When you restore from an iCloud backup, you must erase the device and start all over again. There is no other way to access the backup in iCloud without erasing the device. Consequently, you are starting all over again. Therefore, it would also be my assumption that Pages and Numbers will work again and that the deleting apps issues would be fixed as well.
    If the documents are not in the backup, and you do not have a backup elsewhere, the documents could be gone forever.

  • Experiencing 'lag' & other issues with FCP 7.0.3 on MacBook Pro...please help!

    Hi all
    Man, I've been having SUCH frustrations with my MBP running FCP lately - and it used to be 100% no more than 6 months ago?
    Basically what happens is that the Canvas window starts lagging after a while - it sometimes looks as if the external HDD can't keep up with FCP anymore, regardless of whether I use my Mac HD as scratch drive, or my external. And I've tried it across numerous externals... I'm beginning to wonder if it's my logic board or GPU, or perhaps even my FW800 port?
    Also, when I'm editing on my timeline and add new clips to the edit, this behaviour picks up. Sometimes, when I'm scrubbing or skipping through clips on the timeline, the Canvas displays funky green frames, starts laggin, or the worst: the frames between one cut and another jump around like crazy, even if I just play back at normal speed.
    I've done everything I could - cleared space on my Mac HD (it's now got more than 50% free), repaired and verified disk permissions, run AppleJack, etc. etc.
    Does anyone know what it could be? I'm seriously considering a fresh install of Mac OS X 10.6 and FCS2, as well as upgrading from 4Gb to 8Gb RAM, but what bothers me most is how this used to never happen, and it's not like the work I'm doing is more intense or heavier than anything I've done before.
    Any advice would be appreciated. Thanks
    Here's my exact specs:
      Model Name:          MacBook Pro
      Model Identifier:          MacBookPro5,3
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2,8 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          6 MB
      Memory:          4 GB
      Bus Speed:          1,07 GHz
      Boot ROM Version:          MBP53.00AC.B03
      SMC Version (system):          1.48f2
      Sudden Motion Sensor:
      State:          Enabled

    Andy
    Thanks... But again, why would I have to do this now when it was never a problem before?
    In any case, all the footage I'm using in this project is XDCAM EX, the only difference being that some footage is 720, while other footage is 1080, and then there's also a variation in terms of interlaced and progressive footage accross the board (it's a rock band documentary, don't ask! )... Could this have something to do with it?
    I kinda doubt it, cos one of the TV shows I work on has the same codec, resolution and other settings accorss the board, and I experience the same stutter on these projects...

  • HP Spectre x360 13-4002dx active pen and other issues

    Hi, I'm havng issues with my active pen, but wasn't sure if it's an issue with my laptop or stylus (or if it's a software/driver issue). Is there an easy way to tell?Also, I've been using my laptop for a month now, and recently have had other issues, listed below. I wrote them down below in case that could provide some information, and/or if those issues are something I should be concerned about and should try to fix. To begin with, after doing some research, I bought a Synaptic active stylus (the Dell one), which worked very well for the first two weeks until last week. All of a sudden, it started to respond very awkward and randomly, sometimes it's too sensitive and draw lines even when the pen was off the screen, and sometimes it didn't draw anything at all even though I see the small circle following my pen tip. I initially thought it was due to low battery, but it's the same issue after I replaced the battery. Right now, the laptop doesn't respond to pen touching the screen (no clicks, no writings), although the pointer follows the pen. Any ideas on how to resolve this issue? How do I know if it's the pen that is faulty or if it's the laptop? Other issues I had or am having:1. Today, I had a BAD_POOL_HEADER error and blue screen of death. After reboot, everything seems to still work, but the login is now much slower. It's very fast to reach to the login screen, but it takes 2-3 minutes to bring up the desktop and other startup applications after I enter my password (I think it used to take less than 10 seconds). I tried rebooting 2-3 times, and it was always the same. 2. The laptop seems to gain heat very easily. With moderate workload (example, some websites with flash advertisements or videos), it can easily go above 70 degrees Celsius on either core (according to CPUID HWMonitor). One time, the system actually failed and forced hibernated due to overheating. (To me, the screen went blank all of a sudden. I turn the laptop back on, and the screen printed a message for a while saying it forced shutdown due to overheating. I realized it was hibernation after I logged in since I see all my windows) 3. On the second day of use of this laptop, the laptop just shutdown for no good reason, and then couldn't boot, saying it cannot find boot image or something like that. I looked up the web and found that it could be a BIOS issue. It said to try reseting the BIOS setting, and then it worked. I also upgraded the BIOS image to the latest after this incident. 4. This is probably more a router issue, but I initially had problems connecting wireless to my router. It was solved after changing my router. For those who are interested, the details is as the following: my old router supported up to 802.11n , but not 802.11ac, That shouldn't matter, but all wireless connections get disconnected once in every several hours if my HP Spectre x360 is trying to use the wireless. However the wired connections stayed ok when this happens, so the router is only "partially" killed. The fact that all wireless connections are getting killed seemed to me that the router didn't like something from my HP laptop. To be fair, I didn't try not using my HP laptop to see if the issue goes away, so it could be  a coincidence that the router started to go faulty at the same time I bought and used my HP laptop. Anyways, it seemed it's a router issue, so after replacing the router. the issue went away. Thanks. 

    Will investigate and let you know what I can find out.
    Although I am an HP employee, I am speaking for myself and not for HP.
    Please click the little thumbs-up dealybopper to the lower right if my reply was helpful to you. Please mark Accept As Solution if it solves your problem. This will help others, too!

  • RV042G Log Email and other issues

    The RV042G manual said to use this site for support so here goes.  After owning and operating the RV082 for many years, I recently upgraded to the RV042G V01.  Overall the RV042G hardware appears to function pretty good.  The RV042G has faster throughput, but it is slightly slower in command/control response and boot than the RV082.  I have now owned the RV042G about two days and have found a number of issues.  Specifically, emailing logs doesn't work. 
    - Emailing logs does not work.  RV042G does not appear to handle any type of connection authentication, it does not have a place for the senders user name or password.  I have tried SMTP servers that require no authentication and ones that do, none of them work.  RV082 worked fine with the Time Warner Cable (TWC) SMTP server, RV042G does not.  Additionally, there is NO output in the logs to show a failure.  So TWO bugs here.  I have checked settings to ensure no blocking rules, have rebooted, and even did a factory default with no luck and absolutely no mention in the logs anywhere of failure to send.
    Email is my primary issue, any suggestions on getting this working would be appreciated.  I've also identified a number of other issues as well and included them here to avoid multiple posts.  These are:
    - Port 0 apparently responds to interrogation and shows CLOSED (not STEALTH per grc.com).  This was NOT the case for the RV082 and is a potential security vulnerability as it cannot be redirected.
    - Port 1 is CLOSED and apparently responds to interrogation.  This was NOT the case for the RV082.  Normally I would be good on the RV082.  I could redirect any OPEN or CLOSED ports to the bit bucket (192.168.1.254 for instance).  BUT, the RV042G Port Forwarding is NOT sending things to the bit bucket and instead decides to OVERRIDE the forwarding and respond to queries.  So there are TWO bugs here.  This is a potential security vulnerability.
    - The ALL Logs tab shows nothing, but sub tabs do until AFTER you hit the clear button, then it works as expected. This happens every time you open the logs.  Another poster identified this problem so this is confirmation of that issue.  Also, once the dialog box for the log has closed, it will not open again until leaving the page and returning. 
    - Authentication failures will show up in the System Log but not in the Access Log?
    - HTTPS html interface works fine in Firefox.  However, turn it off and use just HTTP and there is a problem.  Can't see the forms and buttons, can only see the background image.  This isn't as much of a problem as I can just use HTTPS, however, with the RV082 when HTTPS was activated it would open the remote management portal regardless of whether the button was clicked or not. So really a non-issue but a bug none the less.
    - RV082 could send 500 log events, RV042 can only send 100. Again, not a bug but a reduction in capability over the older RV082.
    One last thing, your hardware version control numbers and firmware download page are confusing for the RV042G V01.  Found this when I checked if there was a newer version of the firmware than what the RV042G shipped with.  Here is what the firmware update page shows:
      "Cisco RV042G Dual Gigabit WAN VPN Router"
         "Firmware Release 4.2.1.02 - RV042, RV082, RV016 firmware 4.2.1.02-tm (V3 hardware required)". 
    The problem is that you reset the hardware version in the RV042G (V01).  Just seems probable that someone will download the firmware for the RV042 V01 and try to put it on the RV042G V01. 
    I like the RV042G overall and will wait for updates for these issues (email logs would be nice sooner rather than later as this is an advertised feature).  The RV082 was a great router for a long time ONCE most of the bugs were fixed, hoping the RV042G will be the same.

    Guess I spoke too soon.  If Remote Management = Disable and HTTPS = Enable, it will OPEN external access to port 443.  So have to use an access rule to kill it off.  Can STEALTH Port 1 as well with an access rule but have to block all traffic there.  Cannot block Port 0 (make it STEALTH) with an access rule and this needs to be fixed in firmware.
    So port forwarding does work but not when sent to the bit bucket, have to use an Access Rule instead.  (You can see this by doing the following: turn off HTTPS and remote management and look at port 443 from the outside of the firewall.  No response at all.  Now enable HTTPS and keep Remote Management disabled and forward port 443 to an unused internal IP address.  The port still shows up as OPEN but won't connect.  Again, the RV082 did not exhibit this behavoir and would simply not provide any response to an external query if forwarded to an unused internal IP address.)
    For clarity, I have the RV042G V01 with Firmware Version :   v4.2.1.02 (Jan 18 2012 14:10:55). 

  • I had to do a complete system restore on my computer and now I am having issues getting all my music back. It's telling me that my account is in use with a different user but I'm the only user on my computer. When I go to sync it, it wants to delete all.

    I had to do a complete system restore on my computer and now I am having issues getting all my music back. It's telling me that my account is in use with a different user but I'm the only user on my computer. When I go to sync it, it wants to delete all my music and ringtones. What should I do? I don't want to loose all my items.

    When in recovery mode you can't backup the iPod.
    You will have to restore via iTunes. See:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I just finish a subtitling on a 60 min project now I want to make a dvd

    I just finish a subtitling on a 60 min project now I want to make a dvd out of it , first I compressed it using compressor with 90 min best dvd preset , Now I don`t know what tod od , any help ?

    Now you get to read the DVD Studio Pro Users Manual and do the tutorials included on the DVD SP disc.
    Sorry, but by the time someone has written a walk through for you here, you could have probably read the manual twice.
    If you have a problem understanding a particular aspect -sure, ask away.

  • HT203163 All of a sudden I'm getting  a message Itunes has stopped working Data Execution prevention has closed Itunes what is causing this now, never had an issue until yesterday

    All of a sudden I'm getting a message Itunes has stopped working Data Execution Prevention has closed Itunes. What is causing this now, never had an issue until yesterday

    please sombody help me, apple support are no help, the shop are no help, the only thing i havent tried is delete everything on my laptop and put it back to factory, which is my very last resort

  • Can anybody explain what is support for ADF Project and to solve the Issues

    Hi,
    I am new to ADF and i am currently associated to ADF Support Project.
    Can anybody explain what is support for ADF Project and to solve the Issues when the ADF Project is in Live.
    we are getting the Tickets for the Issues.
    Thanks in advance.

    I agree with Timo.
    It depends on the size of the project, user base, technologies, etc. We use lot of technologies in fusion middleware stack. We get tickets in many areas.
    In your case, it could be anything like user training issues (user may not know how to use the some system features), browser issues like blank screen, bugs in code like JBO errors (failed to validate, another user has changed row, failed to lock the record, NullPointerException, IllegalArgumentException etc), business logic issues, page may not render properly, performance issues, partial commit issues, application server issues, authentication issues. If you use web services you might get web services related problems.

Maybe you are looking for