Unable to enable debugging

Every once in a while I get a message 'Unable to enable debugging. Please verify
that your webapp is deployed correctly. I can't seem to figure out why?

Tito,
If you are working with multiple servers on the same machine, and have not
shutdown the debugger which was started for a different server, then you
could end up with this error message.
Please make sure that you use the stopweblogic script to shut down servers
in development mode. This script will make sure that both the server and the
debugger process are shutdown.
Regards,
Raj Alagumalai
Backline Workshop Support
"Tito Kumar" <[email protected]> wrote in message
news:4076dad5$[email protected]..
>
Every once in a while I get a message 'Unable to enable debugging. Pleaseverify
that your webapp is deployed correctly. I can't seem to figure out why?

Similar Messages

  • "Unable to enable debugging" within Workshop 8.1

    I'm testing a portal application with workshop 8.1. When I started the .portal, I got this error "Unable to enable debugging. Verify that you webapp deployed correctly". If I choose to start without debugging it's OK.
    The deployment was successfully done without error. Is there anything else I can check?
    Thanks

    Thanks.
    One of my concerns is that this change will update the .work file with some local values such as host name and port number, etc. For some reason we could not use a generic name such as "localhost" in our development. This causes a little problem since the .work file contains some hard coded parameters can not be shared amoung other developers.
    Hopefully there is another better solution.
    Thanks again for the help!

  • Error: "Unable to enable Debugging"

    I have installed weblogic 8.1 and when trying to run a sample application of portal been provided with it, it is giving error "Unable to enale debugging. Verify that your webapp deployed correctly"....
    Can any one pls suggest a cure .....
    Thanks,
    Rahul.

    Thanks.
    One of my concerns is that this change will update the .work file with some local values such as host name and port number, etc. For some reason we could not use a generic name such as "localhost" in our development. This causes a little problem since the .work file contains some hard coded parameters can not be shared amoung other developers.
    Hopefully there is another better solution.
    Thanks again for the help!

  • Unable to enable in web services using direct cable from my router

    LaserJet Pro printer is working.  Unable to enable in web tab error message: Connection error. Check Internet connection.
    I have internet connection and don't  use proxy server.  I have powered off both printer and router.  Thank you.

    Hello! Could you please provide more information regarding the issue, such as which laserjet you are using? Any additional information will be helpful in resolving your issue. Thanks!
    Help the community by marking this post as a solution if it solved your issue!.
    If my post helped you in any way, please click the blue KUDOS star under my name! It would mean a great deal.

  • [SOLVED] Enabling debug for ath9k in compat-drivers-patched from AUR

    Wireless card: TP-LINK TL-WN951N. lspci says that it is an Atheros AR5416 adapter [AR5008].
    Some background: I'm having the same issues as the OP in this thread, which references this bug report. The problem is that I get a 2000 ms ping every 30 seconds. So 2 seconds of inactivity every 30 seconds. I have the same wireless PCI card, as well. I need to fix this, because it's making online gaming impossible. I should also note that the card is working just fine in Windows 8, however. I am using net-auto-wireless. I have tried using wicd, enabling ath9k's nohwcrypt option, toggling the card's power save, installing the latest compat-drivers-patched from the AUR, toggling different settings in my motherboard's BIOS, and removing the antennae from the card. But nothing has made a significant difference.
    I think I'm really close now. I just have to disable ANI. But in order to do that, it seems that I need to enable debugging for ath9k. But this means that I need to either recompile a custom kernel, or somehow enable debug for ath9k in compat-drivers-patched from the AUR. I'd prefer the latter, as that means that I will have a more bleeding-edge driver. That, and I won't have to touch the kernel as much. What I want is described on this page. But it seems too complicated to me. Please let me explain.
    I've installed things from the AUR before, as mentioned above, and have properly configured my makepkg.conf for my system. So I'd like to use the CFLAGS and such that I've set. I don't understand how everything works in the PKGBUILD; I don't have much experience with sed and awk and regular expressions, and haven't done much shell scripting at all. It seems that at some point in the PKGBUILD, I need to enable debugging for ath9k before it is compiled. Apparently on the last page I linked to, I need to add:
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    to some config.mk file. I can only get access to the config.mk file after I install the package with pacman. I've tried adding those lines to my /etc/profile file, and checked, after a reboot, with "set", that those variables are indeed set. But the thing is, with these variables set in /etc/profile, when I run makepkg, makepkg fails with an error 2. I tried again and got the same error. I removed those lines from my /etc/profile, rebooted, tried makepkg again, and everything worked. So putting those lines in my /etc/profile is not the solution, and I feel like I'm doing something very stupid. What am I doing wrong?
    I should also note that I've tried to read the wiki page on compiling a custom kernel using ABS, but it seems to just say "get your custom configuration files" and then just continue (so it assumes that I should already be familiar with the configuration part). The PKGBUILD and Creating Packages wiki pages also seem to be a little... too advanced for me at this point in time.
    So how do I enable debugging for ath9k in compat-drivers-patched from the AUR? I'd prefer to stick with only editing the PKGBUILD and using makepkg, if possible.
    I've really tried to search the web and the arch forums on how to fix this problem myself, but alas, it seems that I need help this time. I greatly appreciate your time for reading my long post.
    UPDATE:
    I've made a lot of progress. I ended up removing the AUR package with pacman by invoking "pacman -Rsn compat-drivers-patched".
    Instructions for [almost] success: First, download compat-drivers-patched from AUR. Then move it to the "builds" directory (or "local", if using ABS). Extract the tarball. After the new directory is created, cd into it. Now here's the important part: run
    $ makepkg -so
    Then cd into src, cd into the directory inside src, then edit the config.mk file. Make sure these lines are uncommented (or created, if not already there):
    export CONFIG_CFG80211_DEBUGFS=y
    export CONFIG_MAC80211_DEBUGFS=y
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    (source)
    Now run "cd ../.." to go back up two directories. Now run:
    $ makepkg -e
    # pacman -U <file that was produced>
    And I ran "mkinitcpio -p linux" just in case, but I'm not sure if that is necessary at all. I'm... not touching the kernel, right?
    Now I ran:
    echo 1 > /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani
    But bash would say that the file or directory doesn't exist. Even if I prepend it with "sudo", I get the same results. I was only able to get the command to work if I logged in as root. I even put the line in my /etc/profile. The 2000 ms ping every 30 seconds is now GONE. HOWEVER! If I reboot and log in as a normal user, the problem is there again. If I reboot and log in as root, the problem is gone. If I then log out and then log back in as a normal user, the problem does not come back.
    So really, I can avoid the problem if I first log in as root, log out, and then log back in as a normal user. But this is a great inconvenience. I would much prefer if I could just log in as a normal user right after boot, and have everything working.
    Now, how do I get the command to automatically run at boot as root (without me having to log in as root), and work?
    UPDATE 2:
    I got it working. Putting the line in /etc/profile is not the solution. I created a custom systemd .service file.
    Put this into /etc/systemd/service (name it "disable_ani.service"):
    EDIT: Wow. I made a glaring typo here. It should be /etc/systemd/system/disable_ani.service
    [Unit]
    Description=disable_ani
    [Service]
    Type=oneshot
    ExecStart=/bin/sh -c "echo 1 > /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani"
    [Install]
    WantedBy=multi-user.target
    Then make sure to "sudo chmod 755 /etc/systemd/service/disable_ani.service", since root owns this file.
    Then run "sudo systemctl enable disable_ani.service".
    EDIT: It has been brought to my attention that there is a much simpler way than creating a custom service.
    Using a tmpfile:
    /etc/tmpfiles.d/disable_ani.conf
    w /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani - - - - 1
    Done.
    Now ANI is persistently disabled between boots, even if I log in as a normal user right after boot.
    Thanks for reading.
    Last edited by vyu223 (2013-03-12 10:20:19)

    So zsh is telling you that the command didn't work, since it claims that there is no such file or directory. I had a lot of trouble with getting the echo command to work, as well. I found that if out of these lines:
    export CONFIG_CFG80211_DEBUGFS=y
    export CONFIG_MAC80211_DEBUGFS=y
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    If the first and second line above were not uncommented in the config.mk file, I couldn't leave the last line above uncommented as well, or else makepkg would fail and give me an error. So originally I had only the 3rd and 4th lines above uncommented/inserted in my config.mk. With that configuration, I could not get the echo command to work, no matter what. Have you uncommented or inserted all of the above 5 lines into your config.mk?
    After making sure all of the above 5 lines were in my config.mk, the echo command still didn't work, even if I preceded the command with sudo, or entered a su session. Bash would tell me that there was no such file or directory. I found that if I actually logged out of my normal user, and then logged back into the computer as root, the command would work. If your shell does not give you any feedback (particularly, "no such file or directory"), then the command worked. In order to get the command to run every time the computer boots, I used a systemd service, so that the command is issued as root. For some reason, it doesn't work if you put the command into /etc/profile.
    Oh, and it would probably be helpful to mention that for the compat-drivers-patched package from the AUR, the PKGBUILD checks to see what your _selected_drivers variable is before compilation. If you set _selected_drivers=ath9k, your compile times will be much shorter.

  • Unable to enable SPDIF??? X-Fi XtremeGamer (non-PRO) w/ Digital I/O Module

    JUnable to enable SPDIF? X-Fi XtremeGamer (non-PRO) w/ Digital I/O Module? I recently purchased the Digital I/O module in order to use SPDIF Out on my X-Fi XtremeGamer in order to send audio to my 5. receiver via digital coax.
    However after hooking up my Digital I/O module to the flexijack (the one with the red light) I am unable to enable SPDIF.
    I read and followed the directions listed here:
    <a rel="nofollow" href="http://support.creative.com/kb/ShowArticle.aspx?sid=64440"]http://support.creative.com/kb/ShowArticle.aspx?sid=64440[/url]
    The options that they tell you to set are simply are not there on my system.
    I am running the most current drivers and console launcher that Creative has on their website.
    I have been trying to get it to work both under Windows XP and Windows 7.
    I have spent the last 3 hours beating my head on a wall, I hope someone can help me with this...
    Thanks in advance for any suggestions!

    Ah that's what I am afraid of.
    Quoted from the article in your message: "For SB073X series : Supports Microphone-in, Line-in and Optical out connections. On a SB073X series card, this jack does not have the Digital-in function to support the Digital I/O Module. It does however connects to external digital audio devices that accept stereo PCM or compressed Dolby Digital/DTS Bitstream from the Optical output. This will require using a "Toslink to Mini Toslink" cable for connection only."

  • Error-Unable to start debugging.

    Visual Studio 2013 showing an error while trying to Run.
    ' Unable to start debugging.
    0x80040154
    How to solve this issue?
    Thanks,
    Arjun

    Hi Arjun,
    Based on the error message, it is hard for us to find the real reason for this issue directly.
    Could you get any other error messages if you build your project? Please check the detailed error or warning messages in Error list window or the output window.
    The reason why I suggest you run it with "start without debugging" is that if it still has certain issues without debugging, it means that it is not the debugging issue.
    Maybe you could view the Event log to get more information.
    Could you share us the detailed steps about how you debug your project?
    >> Unable to start debugging.0x80040154
    A report about the simliar error message:
    https://connect.microsoft.com/VisualStudio/feedback/details/786897/update-2-unable-to-debug-0x80040154
    I got the issue with the error "Unable to Start Debugging on the Web Server" before.
    Reference:
    https://msdn.microsoft.com/en-us/library/vstudio/dwesw3ee(v=vs.120).aspx
    https://technet.microsoft.com/zh-cn/subscriptions/dwesw3ee(v=vs.71).aspx
    If still no help, maybe you could share us a simple sample, so we could debug it in our side.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • It there a way to enable debugging to view SQL details for database adapter

    The adapter guide seems to allude to the possibility with the following statement:
    "To monitor performance, you can enable debug logging and then watch the SQL for various inputs."
    There is no information, however, to indicate how to enable this feature. It would be nice to be able to view details in domain.log.
    Thanks,
    RM

    The switch to tab feature is only available when you are typing in the Location (a.k.a. Awesome) bar. Clicking on a bookmark will always open the bookmarked page in either the current tab or a new tab.

  • How do I enable debugging in beans.ocx

    I am successfully running a Java Web enabled Application in Windows 2000 IIS Server.
    The application is accesses via Active Server Page (ASP) COM object interface enabled by Sun �JavaPlugin-ActiveX Bridge�. The application works great, it is using Java version is 1.3.1.
    I need to enable debug in the �JavaPlugin-ActiveX Bridge� How do I turn �DEBUG ON�
    I want to pass the following parameters to �JavaPlugin-ActiveX Bridge� ;
    -Xnoagent -Xdebug -Xrunjdwp:transport=dt_shmem,address=jdbconn,server=y,suspend=n -Djavaplugin.trace=true

    Hi,
    In order to debug, first you need to compile your .java files with -g option in javac.
    1)For debugging, start the Java PLug-in Control Panel.On the Basic tab,specify the following parameters in the Java Runtime Parameters:
    -Djavaplugin.trace=true
    -Xnoagent
    -Xdebug
    -Xrunjdwp:transport=dt_shmem-,address=jdbconn,server=y,suspend=n
    Check the address once again .
    2)On the Advanced tab in the Java Plug-in Control Panel, select "JDK <version> in <jdk-path>" for the Java Runtime, where <version> is the Java Plug-in version and <jdk-path> is the path to the Java 2 SDK installation. For example, "JDK1..3.1 in C:\jdk1.3.1" . Do not select the Debug Options under the Advanced tab.
    3)Start Internet Explorer or Netscape Navigator and load the page which contains the applet to be debugged. Make sure the applet code has been compiled with -g option in javac.
    4)Run the command jdb -attach <connection address> in a DOS command prompt. <connection address> is the name mentioned in the step 1. For example, if <connection address> is 2502, you will run the command as
              jdb -attach 2502
    5)Once the jdb has attached to the VM, you can set up breakpoints in the applet.
    6)When the applet in the browser reaches the breakpoint, it will stop executing, and you will see the debugger waiting for your input to continue debugging.
    Hope this will help you.
    Anil.
    Developer Technical Support
    Sun Microsystems Inc,
    http://www.sun.com/developers/support

  • How to enable "Debug Option" in submit request

    how to enable "Debug Option" in submit request

    Hi,
    Please see these docs.
    (Pics) How Can Trace and Debug Be Turned On For A Concurrent Request? [ID 759389.1]
    How To Trace a Concurrent Request And Generate TKPROF File [ID 453527.1]
    FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12 [ID 296559.1]
    Thanks,
    Hussein

  • Get a popup an exception runtime error has occurred in script unable to jit debug

    i get a pop up window, just-in-time debugging
    An exception 'runtime error' has occurred in script.
    However, no debuggers are registered that can debug this exception. Unable to JIT debug.

    '''I think I solved it myself yesterday, indirectly''' by deleting a Googleupdater.exe file dated 042511. It has been over 24 hours now and no sign of the 'Just-In-Time Debugger' pop-up. Whew...it was incessant.
    Not sure how I got the Googleupdater.exe file on my computer. I did download Microsoft Security Essentials to help find the JIT problem, but it failed to install properly and run. The next day I remembered it probably only runs on Internet Explorer (which we deleted in 2009) after testing out Firefox. I then also deleted Security Essentials.
    I also downloaded on April 25th the free version of MS Visual Basics because I read on eHow that you can adjust settings in the 'TOOL' menu to stop JIT Debugging pop-ups. However, the free version was 'MS Visual Studio Basic 2008 Express Edition - SP1' which did NOT provide access to JIT Debugging settings (so it was not a solution).
    I must say I switched Internet Security programs to AVAST! on TU | Apr26th and love it so far. Highly recommend looking into AVAST! ver 6.0 at CNET downloads - free. The anti-virus program is free, but everything else costs about $30US for a year. WORTH IT Love the options | settings | flexibility|user friendly windows.
    Trend Micro was then deleted. It had always blocked usage of our internal CD|DVD drive. To use the CD|DVD drive we had to shut off Trend Micro and then turn it back on again after we finished using the CD|DVD drive. NOT a preference - for sure. Jaykay

  • Unable to start debugging on local(development) machine

    Hi,
    I have visual studio 2013 installed in my machine. From Yesterday, I keep getting unable to start debugging whenever I hit start button (F5) in visual studio.
    Any help will be appreciated.

    Thanks for Pavel A's help.
    Hi Kevinpiper,
    >> I keep getting unable to start debugging whenever I hit start button (F5) in visual studio.
    Could you share us the detailed error message in your side? Which kind of app did you create/debug?
    Whether all projects have the same issue? Maybe you could run your VS as the admin, test the result.
    I suggest you share us the detailed error message, maybe we could get more helpful informaiton from it.
    To make sure that whether it is the debugger issue, one idea is that you could run your app with "start without debugging(Ctrl+ F5)".
    I met an issue before which looks like that "unable to start debugging, it couldn't run/find the .exe file in your project folder", generally we would think about the Output Path under Project properties->Build options and make
    sure that it really had the .exe file there.  
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to activate debugging on the server

    Hello,
    At the Developer Studio at the J2EE Engine tab view there is an option to Enable debugging on the portal server (By right-clicking on server0).
    The problem is that all this menue is shaded and unavailable to me. What should I do in order to be able to use the features ?

    Sorry I said VA before - I meant go into the configtool.
    In there click on your instance and the on the right pane click on the tab Servers Debug.  The top option Debuggable has to be checked.
    Hope this elps

  • Admin applet issue (unable to enable java plugins)

    i installed orlc UCM on linux 64 and the (unable to enable java plugins) so i cant access admin applet..
    i did this
    http://www.java.com/en/download/help/linux_x64_install.xml
    http://www.oracle.com/technetwork/java/javase/manual-plugin-install-linux-136395.html
    but still nothing,,
    Edited by: mahmoud abukhaled on Sep 17, 2012 2:06 AM
    Edited by: mahmoud abukhaled on Sep 17, 2012 2:08 AM
    Edited by: mahmoud abukhaled on Sep 17, 2012 2:16 AM
    Edited by: mahmoud abukhaled on Sep 17, 2012 2:16 AM

    You need to add security policy file
    Check this out
    http://stackoverflow.com/questions/2612895/where-to-place-java-applet-policy-file
    http://geosim.cs.vt.edu/Java/MigModel/help/Policies.html
    Regards,
    Vikrant Korde

  • Netweaver Administrator - Enable Debugging

    In the Netweaver Administrator web console, we want to enable debugging (System Mgmt > Administration > Systems.  For some reason, the 'Enable Debugging' button is greyed out for the J2EE server process.  Have you seen this before?

    Sorry BOB..I didnt see this message.
    You can enable debugging from visual admin:
    Logon with Visual Administrator ->Server->Services ->u2022     Go to Configuration Adapter:->u2022     On Display Configuration go to: cluster_data -> Propertysheet instance
    ->Switch between Display Mode or change ->->Double-click on u201CProperty sheet instanceu201D opens:
    Make sure the DebugMode is set to u201Cyesu201D to debug the portal.
    You can specify the port here....and siable debugging on some nodes (as per need)
    regards,
    hemanth

Maybe you are looking for

  • Inconsistent behavior for DB- put

    Hi, I am writing real-time tick data to a Berkeley DB database. my keys are symbolid and field name, for ex. 399432107170_last_trade 399432506589_last_trade 399435809008_last_trade there are about 3000 symbols (keys) like that. Problem is that while

  • Hyperlink not working properly in FlashPayer

    1. Does anyone know how to keep the hyperlink in FlashPayer? 2. How to select the target windows? New Windows (_blank), current frame, parent frame?

  • Open with the same dialog boxes

    We would like to maintain our CS3 window "setup" when we reboot our PC. We use only a few preferences :: actions /history/layers ,,,but upon reopening CS >> there are nearly 10 windows that open on the right, with icons > probably just factory settin

  • EXC_BAD_ACCES when init NSDictionary

    I try to initialize a dictionary that I declared in the header file, and I want to use the alloc] initWithObjectsAndKeys ... in the applicationDidFinishLaunching: method. Then when I run it, it immediately shows the EXC_BAD_ACCES error. I don't know

  • Create new Library on internal Hard Drive.

    My A3 was extremely sluggish. All functions work, but they are all sloooooowwww. Created an Aperture Library in my internal HD instead of External HD. Seems to have picked up some speed. Was wondering if any of you guys have noticed a performance dif