Workshop 5.0 debugger hanging XSun setting breakpoints

I am running Solaris 2.6 and Workshop 5.0.
When I load a program and set a break-point, XSun goes loopie! It's process consumes > 98% CPU time. I have to kill it in order to get my system back.
I have installed the Solaris 2.6 recommended patch cluster, to no avail.
Any ideas?
-- jrj

I am running Solaris 2.6 and Workshop 5.0.
When I load a program and set a break-point, XSun goes loopie! It's process consumes > 98% CPU time. I have to kill it in order to get my system back.
I have installed the Solaris 2.6 recommended patch cluster, to no avail.
Any ideas?
-- jrj

Similar Messages

  • ABAP Debugger, Cannot set breakpoints.

    I write a simple program in ABAP like this below.
    I want to set a break point on the Line WRITE 'HELLO'.
    REPORT  Y_TABLES.
    WRITE 'HELLO'.
    WRITE 'WORLD'.
    When I do that, it  says "you can only set breakpoints in active unchanges source.".
    When I go to active the program, the system asks me to save the program and comes up with just the 
    REPORT  Y_TABLES.
    and the following lines are lost.
    WRITE 'HELLO'.
    WRITE 'WORLD'.
    Can any one please let me know what I am doing wrong.. ?
    Thx..

    break-point can not set write statement.
    wrong logic.
    REPORT Y_TABLES.
    WRITE 'HELLO'.
    WRITE 'WORLD'.
    another way.
    internal break-point.
    external break-point.
    example.
    REPORT Y_TABLES.
    WRITE 'HELLO'.
    break-point.
    WRITE 'WORLD'.
    active and run.
    now break point set.
    try it.

  • [4.0 EA2] Debugger not stopping at breakpoints/not working at all

    When running the debugger in SQL Developer either the debugger immediately connects then disconnects after executing the code WITHOUT stopping at breakpoints or the debugger hangs and the only actions I can choose is to terminate or to pause.
    The first issue happens a lot more frequently. I am attempting to debug a procedure in a package where the there are several breakpoints throughout the code including at the very start. After checking my tables in which the procedure acts upon before and after running the debugger I can see that the data has been altered so the debugger has ran through the procedure and executed the code without stopping. I have checked this on very simple code where the breakpoint code has been called and have experienced the same result.
    Im using 64bit Win7 -
    JDK - 1.7.0 update 40
    Output:
    LOAD TIME : 329UsersCache.fillIn() time = 4  ret==null?: true
    UsersCache.fillIn() time = 3  ret==null?: true
    tableAlias.cardinality()==0
    UsersCache.fillIn() time = 4  ret==null?: true
    UsersCache.fillIn() time = 3  ret==null?: true
    tableAlias.cardinality()==0
    UsersCache.fillIn() time = 4  ret==null?: true
    tableAlias.cardinality()==0
    tableAlias.cardinality()==0
    tableAlias.cardinality()==0
    Debugger Output:
    Connecting to the database Layout Pro.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '*****', '*****' )
    Debugger accepted connection from database on port *****.
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.DISCONNECT()
    Process exited.
    Disconnecting from the database Layout Pro.
    Debugger disconnected from database.
    Thanks in advance,
    James

    Hi
    Have you compiled for debug? - Yes
    Are the breakpoints definitely on code lines?- There are several lines of code which have up to 5 consecutive breakpoints
    You can also set the preference Tools|  Preferences|Debugger|Start Debugging Option to 'Step Into'.  That should stop at the first executable line. - This worked thank you, I can now access the debugger and test my work.
    On swapping the preferences back to 'Run Until a Breakpoint Occurs' (which it was originally set as) the debugger now correctly stops a the breakpoints. I didn't make any changes to the code/debugger parameters or anything so I'm rather confused to why its suddenly started working .
    But anyway thank you for the help,
    James

  • Can U set breakpoint within a batch job and look at variables?

    Hello friends,
    I am trying to solve a problem that occurs within a program / transaction which can only be executed in background. The transaction in question is FPCOPARA and apparently this program cannot be executed in foreground.
    If I understand well, we cannot set breakpoints within a background job and as a result we cannot inspect variable etc. during job execution. So the question is how to achieve the same goal within a batch job? How did you do it? As this is a standard SAP transacrtion, no program modification can be applied.
    Your help is greatly appreciated.

    Hi......
    After u have executed ur batch job..
    go to sm37 >>select ur job using checkbox>>enter 'JDBG' in transaction box and press enter
    now debugger will start ..initial it will go through system code..after after a while the debugger will reach to your code and den you can debug the remaining report....
    all the best
    regards
    vivek

  • Setting breakpoint on any method call of a class

    Using the new (or old) debugger, is it possible to set a breakpoint that will stop on any method invocation of a class?
    I am debugging the processing of a purchase order and want the debugger to stop on any method call to CL_PO_HEADER_HANDLE_MM, which has 113 methods, so setting a breakpoint in each method is way too tedious.
    Do you know of a way to do this in one go?

    Activate Layer-Aware Debugging for class CL_PO_HEADER_HANDLE_MM, and then set breakpoint on statement CALL METHOD.
    I tried for CL_GUI_ALV_GRID, and it worked. I am on 702 release.

  • Setting breakpoints for unloaded classes.

    How do I set a breakpoint for a particular line in a class that has not been loaded?
    how do I get the Location to use createBreakpointRequest with out having the class loaded?

    Hey Jason,
    After spending over a year developing a java debugger using the JPDA, it's my opinion that the best way to build a debugger using the JPDA is by creating Manager classes.
    Being able to let the user set breakpoints before a reference type is prepared (notified by a ClassPrepareEvent), or even before the target VM is started (notified by a VMStartEvent) involves having to maintain a list of all the breakpoints the user would like.
    In my debugger, the user can click on any line of source code, and in the mouseClicked event handler code, I record the line number and file of the line of source code that was clicked on.
    I have something like ..
    public void mouseClicked(MouseEvent mouseEvent)
         int row = this.sourceCodeTable.getSelectedRow();
         int lineNumber = row + 1;
         if (BreakpointManager.hasBreakpointRequest(file, lineNumber))
              UnpreparedBreakpointRequest ubr = BreakpointManager.getBreakpointRequest(file, lineNumber);
              if (ubr.isEnabled()) ubr.disable();
              else ubr.enable();
         else BreakpointManager.createBreakpointRequest(file, lineNumber);
         ...Whenever you make a graphical debugger, expect a lot of GUI programming. Getting breakpoint glyphs to change involves a bit of work.
    Whenever a ClassPrepareEvent is served from the EventQueue, I pass the ClassPrepareEvent to the BreakpointManager. The BreakpointManager gets the ReferenceType from the ClassPrepareEvent, and from the ReferenceType, the source file is retreived (through the use of referenceType.sourceName(), and VirtualMachine.classPath()). With the source file, I retrieve the list of user-defined breakpoints from a HashMap looked after by the BreakpointManager and iteratively, retrieve the locations using the lineNumber stored in each of the user-defined breakpoints, accessing the location from referenceType.locationsOfLine().get(0), and then creating a "real" BreakpointRequest using the EventManager.
    It took me a lot of work to just handle being able to create, disable, enable, and delete breakpoint requests both online and offline. But again, the real lesson learnt is that without using the Manager software pattern for all types of events (BreakpointManager, WatchpointManager, et cetera), expect to get a lot of design problems later on.

  • Debug and set breakpoints when hosted on Azure?

    This is one of those questions where I think I've seen it demonstrated in various articles, possibly with other MSFT technologies, but am not sure how to actually do it myself.  Is it possible to set breakpoints in my Entity or other C# code and hit
    them when running a LS 2013 HTML app in Azure?

    Yes see:
    Azure Web Site Enhancements
    Debug a running Azure Web site
    So this is all fine, but now we get to the real gem. If you right-click on your web site in Server Explorer, you can select “Attach Debugger”:
    You can debug your running Azure web site! To demonstrate, I created an Inserting handler for my LightSwitch app, deployed and performed Attach Debugger and put a breakpoint in my handler method. When I insert a record, I hit my breakpoint:
    Unleash the Power - Get the LightSwitch 2013 HTML Client / SharePoint 2013 book
    http://LightSwitchHelpWebsite.com

  • The option to Set Breakpoints does not show up when I right-click any step

    Hi All,
    I am working with a SSIS package and trying to set breakpoints to view the contents of package scoped variables. I am running SQL Server 2008 R2 on Windows Server 2008 R2 and developing in Visual Studio 2008.
    When I right-click on an Execute SQL Task (or ANY step in the package) I see no menu pick to "Edit Breakpoints" or "Set Breakpoint". Can someone tell me why that option is missing?
    TIA

    Arthur,
    Thank you so much.
    Your answer might seem obvious to most everyone but me. The SSIS package was part of a larger ASP.NET Web Site project. As a result whenever I opened the Web Site Project the package showed up in the Solution Explorer and of course I just opened it. Nowhere
    have I read that if the package is opened in that manner so many development features would be missing.
    How foolish of me to also assume that if I started "SQL Server Business Intelligence Development Studio" and simply opened a package...that those critical features would not appear. Live and learn. LOL
    Have a great day!

  • Unable to set breakpoint in UIX file

    I am trying to set a breakpoint in a uix file (within the xml itself ) and I receive an error. The breakpoint looks like it gets set in jDeveloper but the error displayed is:
    Unable to set breakpoint ( searchRequest.uix ), unable to resolve Jave Package.
    Can you not set breakpoints in the uix file itself? If not where should I look to set the breakpoint?
    Thanks

    More information: I have debug turned on in the uix_config.xml. I can see where it gets to the eventhandler named "goQuery"
    <handlers>
    <event name="goQuery">
    <go name="query"/>
    </event>
    </handlers>
    but the go is never executed.
    04/11/18 15:03:35 Rendering page = Page[name=searchRequest]
    04/11/18 15:09:28 Requested page = Page[name=searchRequest]
    04/11/18 15:09:28 Event = goQuery
    04/11/18 15:09:28 Parameter settlementRefId=
    04/11/18 15:09:28 Parameter companyId=6999
    04/11/18 15:09:28 Rendering page = Page[name=searchRequest]
    It looks like the forward "query" is never executed and when executing the submit, it resets the page. I would like to step through this to see what is occurring so that I can correct whatever is happenning. But not know where to set break points in the uix page is frustrating.
    Thanks

  • Setting breakpoints/debug using the HTTP Analyzer web development

    I wonder if there is any way of setting breakpoints in a Web service class. For instance the method in the class shown in the tutorial "Building a POJO Annotation-Driven Service":
    package annotation;
    import javax.jws.WebMethod;
    import javax.jws.WebService;
    @WebService(serviceName = "HelloService")
    public class HelloService{
    public HelloService() {
    @WebMethod
    public String sayHello (String s) {
    return "Hello " + s;
    That is, while you run the HTTP Analyzerl, the code can be debugged by setting breakpoints etc.

    Hi, I'm just using the default setup for HTTP Analyzer and having no problem using it.
    Just make sure to run the HTTP Analyzer first before running or starting your app server (Integrated weblogic Server).

  • BUG:  Unable to set breakpoint

    Hi,
    I'm currently unable to set breakpoints in Flash Builder 4.01.  When I try to set one, I get a Null Pointer Exception with the following stack trace:
    java.lang.NullPointerException
    at com.adobe.flexbuilder.debug.breakpoints.FlexLineBreakpoint.findSourceFiles(FlexLineBreakp oint.java:412)
    at com.adobe.flexbuilder.debug.breakpoints.FlexLineBreakpoint.instantiate(FlexLineBreakpoint .java:465)
    at com.adobe.flexbuilder.debug.model.FlexDebugTarget.instantiateBreakpoint(FlexDebugTarget.j ava:1012)
    at com.adobe.flexbuilder.debug.model.FlexDebugTarget.access$4(FlexDebugTarget.java:1006)
    at com.adobe.flexbuilder.debug.model.FlexDebugTarget$1.run(FlexDebugTarget.java:1054)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
    Has anyone seen an error like this?

    Is there a release SWF being loaded at any point?
    Ensure:
    1. Your SWF is a debug version.
    2. Any SWF it loads via a SWFLoader, ModuleLoader or Loader is a debug one.
    3. If using RSLs, make sure "Use Local Debug RSLs" are checked in Project Properties -> Flex Build path

  • Can not set breakpoints due to missing line number attributes

    Hi,
    I am using Eclipse 3.0, Jboss to run my Java applications. Till yesterday I could set breakpoints and everything was working fine.
    I didn't change any settings but it is not allowing me to set breakpoints anymore.
    Error is:
    Unable to install breakpoints due to missing line number attributes
    I double checked the settings in window->preferences->compiler->classfiles
    Add line number to class files is checked.
    Is there anything else I can do?
    Any help on this would be greatly appreciated.
    Thanks
    nmadhava

    I'm facing the same problem (no line number information) on the following configuration:
    Eclipse 3.1.1 SDK with WTP 1.0 feature, Weblogic 7.1, running on weblogic provided JVM: JDK 1.3.1_08
    I have already done the following:
    1/ Re-checking debug preferences in Eclipse and rebuild all projects in the workspace then redeploy via ANT.
    2/ Building via ANT1.6.2 with all javac tasks set to debug="on" and redeploy
    Breakpoint is located in code section residing in one of the workspace's projects. But I don't know weather 3rd-party jar resources have been compiled with debug enabled or not; I suppose however it does not matter as I do not try to debug 3rd-party code but ours.
    Any suggestion appreciated.
    Regards

  • How to set breakpointer at any source code?

    i want to set break point any one line of source code.
    i saw the object file of this source code is loaded already
    even i use command to load it again by
    loadobjects xxx.so
    but when i set breakpoint at line of source code
    it said. couldnot find object files.
    but it is under LD_LIBRARY_PATH . and i load share libaray which contains
    this object file already.
    what should i do?

    Well, these 2 are different. If you want dbx to find shared libraries, executables ended with .so, you use LD_LIBRARY_PATH which is by the way the run-time linker would use. But for dbx to find object files in an executable, which are located in other directories, you need to use the dbx command "pathmap". Please type "help pathmap" in dbx for more details.
    - Rose

  • Debugger hanging !!!

    Hi all,
    unfortunately, I am the chosen for developing under Solaris, using Forte Develop 6.0.
    When debugging my application, workshop becomes instable regularly; especially when using the 'Step Over (F7)' command. Workshop is hanging and will never return, so the only solution left is to exit workshop and start all over. I tried updating to 6.0 update 1, but then my class constructors are not handled correctly !!
    And something else: the debugger always launches my 'main.cc' source file when started; what the fuck is that good for ???
    I am really wondering whether this software is tested before it is released...
    By the way: does anyone know how to switch off the fucking 'Re-usable' option in NEdit for ever ?
    Yes, as you already may have concluded, I am NOT pleased with working under Forte Develop (and even the entire Solaris environment)...

    Nope. I developed the whole core in debug mode of Flex Builder 3, so I know it works there.
    Mike

  • Starting abap debugger without an external breakpoint

    Can anyone let me know if i can start an new debugger session on any  action in the browser without setting an external breakpoint in the code (something similar to /h  ).
    Thanks ,
    Kiran

    Not currently in 7.0 or 7.01.  However in 7.02 such a feature was added as a URL parameter. The url parameter is /H=X as a tribute to long time ABAP developers 
    You can then activate debugger via the context menu:
    http://www.flickr.com/photos/tjung/4563357958/
    http://help.sap.com/saphelp_nw70ehp2/helpdata/en/0d/5c8fd973154cc7b5772c01eea9a164/frameset.htm

Maybe you are looking for

  • Smart View 11.1.1.3.500 Install on Windows 2008 R2 64 Bit SP1

    Wanted to check if any one form user community was able to install Samrtview 11.1.1.3.5 on Windows 2008 R2 64 bit SP1 Think support matrix says its compatible with windows 2008 64 bit but not R2 - Any round about solutions to get his installed on R2

  • Spry menubar submenu horizontal instead of vertical

    I have spent two days trying to figure out why the submenu on my spry menubar goes horizontal instead of vertical.  I have watched youtube videos and all the tutorials automatically have them going vertical under each other.  My submenu bar goes left

  • Satellite L505-12Q...having a problem with Face Recognition

    Hello! I have a strange problem with my Face Recognition. Yesterday it worked perfectly, but today it doesn't. Note that I've cleaned registry with CCleaner, but didn't backup before that (stupid..). I've downloaded the installation of Face Recogniti

  • How do I fix "about:blank" virus or does firefox have to fix something???

    in firefox I open web site at USAA or Schwab and click on a link to open another window and it opens as "about:blank" and there is no information. This does not happen on all links and does not occur if I am in Internet Explorer. I use Micro Trend 20

  • Nokia N95-3 Screen Problem!!

    I recently bought a Nokia N95-3 from Amazon and this is the 6 day that I have it. Last night it was almost fully charged. I left it atop one of my drawers and haven't touch it until about 10 minutes ago. I tried to unlock it and notice that it was tu