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.

Similar Messages

  • Setting Breakpoint for WF-BATCH

    Hi All,
    I am working on BBP_DOC_CHANGE_BADI and need to set up a breakpoint in this BADI while Shopping cart gets converted to Purchase order. Previously the break point was working fine and suddenly, i coudlnt stop at this BADI ( while S/C gets to PO ). I checked user setting of WF_BATCH and couldnt find any change. Can anyone tel me how to set break point here and
    what is the issue in WF-BATCH ?
    Thanks in Advance.

    Hello Siva,
    It is not possible to debug with break-point for WF-BATCH user as WF-BATCH user is not a dialog user: he is a system one.
    If previously, you were able to debug with WF-BATCH, this means his type was switched from system to dialog user.
    Regards.
    Laurent.

  • 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.

  • How to set classpath for classes in war files

    Hi All,
    After deploying the WAR file I could access the JSP files but gives classnotfound exception when the information is expected from the java servlet.DO I need to set the classpath if yes how to do for the war file.
    thanks

    The web.xml,file structure and error is below let me know if more information is required.
    As you said weblogic is looking for the classes in lib directory inspite of having the classes in web-inf/classes directory.
    web-app>
    <servlet>
    <servlet-name>ControllerServlet</servlet-name>
    <servlet-class>com.test.site.pds.Controller</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>ControllerServlet</servlet-name>
    <url-pattern>/controller</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    </web-app>
    File Structure:
    C:\test\PDSWebApp\WEB-INF\classes\com\test\site\pds\*.class
    PDSWebApp
         css
         html
         images
         javascript
         jsp
         WEB-INF
         classes
         com/test/site/pds/*.java
         lib
         servlets
    The error:
    javax.servlet.ServletException: [HTTP:101249][ServletContext(id=18129862,name=PdsApp,context-path=/PdsApp)]: Servlet class com.test.site.pds.Controller for servlet ControllerServlet could not be loaded because the requested class was not found in the classpath C:\bea\user_projects\domains\mydomain\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\PdsApp.war;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\classes12.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\commons-beanutils.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\commons-collections-2.1.1.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\commons-lang-2.0.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\displaytag-1.0.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\jstl.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\standard.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\_wl_cls_gen.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp.
    java.lang.ClassNotFoundException: com.test.site.pds.Controller.

  • [svn] 3921: Fix for - @inheritDoc tag not working for get/ set overrides when you only override the setter of a base class

    Revision: 3921
    Author: [email protected]
    Date: 2008-10-28 06:23:00 -0700 (Tue, 28 Oct 2008)
    Log Message:
    Fix for - @inheritDoc tag not working for get/set overrides when you only override the setter of a base class
    QE Notes: Baselines for framework test will need to be updated.
    Doc Notes: None
    Reviewer: Paul
    Bugs: SDK-17304
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17304
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ASDocExtension.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java

    Revision: 3921
    Author: [email protected]
    Date: 2008-10-28 06:23:00 -0700 (Tue, 28 Oct 2008)
    Log Message:
    Fix for - @inheritDoc tag not working for get/set overrides when you only override the setter of a base class
    QE Notes: Baselines for framework test will need to be updated.
    Doc Notes: None
    Reviewer: Paul
    Bugs: SDK-17304
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17304
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ASDocExtension.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java

  • Basic Setting required for running simple JMS class

    please tell me all setting required for running JMS class.
    I have installed IBM MQSeries.
    Especially about how to lookup for Topic and TopicConnectionFactory and where should i specify.
    it is very urgent please help me fast. Also send any files for doing setting to me at [email protected]

    Context ctx = null;
    Hashtable ht = new Hashtable();
    ht.put(Context.INITIAL_CONTEXT_FACTORY," "); //put yor init. context
    ht.put(Context.PROVIDER_URL, " "); //put your server url
    ctx = new InitialContext(ht);
    TopicConnectionFactory topicConnectionFactory = (TopicConnectionFactory) ctx.lookup(" "); // your connection factory
    TopicConnection tcon = topicConnectionFactory.createTopicConnection();
    TopicSession tsession = tcon.createTopicSession(false,Session.AUTO_ACKNOWLEDGE);
    Topic topic = (Topic) ctx.lookup(" "); // This is your topic
    TopicSender tsender = tsession.createSender(topic);
    TextMessage message = tsession.createTextMessage();
    message.setText("Topic Message");

  • Setting path for third party class files

    I am using some third party classfiles in my JSPs for JDBC. When I use these files, in normal Java Programs everything is working fine ( I am setting the path by using the CLASSPATH environment variable).
    I did not understandt how to set classpath for these files (com.informix.jdbc.*) for use in iplanet 6.0.
    I have tried to keep this "com" folder in /usr/java/j2sdk1.4.3_01/lib folder, but, it is not still working. I tried to change the start-jvm file, but, I am still having problems.
    Can someone help me !!!
    --Murthy.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    I changed the jvm12.conf file, but, it did not work. I changed the JDK Runtime Classpath in the Global Settings tab of the Administration Server and restarted both the webserver and the administration server and it worked.
    Thanks for your response.
    --Murthy.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to set the scope for Mxml classes?

    Hi,
    i want to create the mxml class but with internal (package)
    scope (for example).
    Is it possible? (for AS classes yes)

    Don't think you can control scope like this in MXML.

  • Breakpoints in nested classes don't work

    I've noticed that when I set a breakpoint in a nested class, it doesn't work to stop the code, unless I set the breakpoint after I've created an instance of the class.
    In the code example below, if I set breakpoints A, B, C and D, only breakpoints A and C will be hit when MainClass.main runs.
    However, if I set breakpoint D once breakpoint C is hit, then breakpoint D works.
    I've noticed this behavior in both JBuilder 4 and Eclipse, which are both using the Sun 1.3.1 JRE/JDK.
    Does anyone know if there is a way to get breakpoints in nested classes to work as expected (they stop the thread whenever that point in the code is executed, and setting them before the class is loaded/instantiated doesn't change that behavior).
    BTW, in my research on this topic, I found a mention of "class preparation", a step that the JVM goes through when loading a class. I wonder if the class has to go through this step before the breakpoint can be enabled.
    --James
    public class MainClass {
        public static void main(String[] args) {
            Object o = OtherClass.Test(3); // Breakpoint A
            System.out.println(o);
    class OtherClass {
        static Object Test(int v) {
            Object o = new NestedClass(v);
            return o;                      // Breakpoint C
        static class NestedClass {
            int x;
            NestedClass(int v) {
                x = v;                     // Breakpoint B
            public String toString() {
                return "NestedClass(x=" + x + ")"; // Breakpoint D
    }

    You wrote:
    -> I've noticed this behavior in both JBuilder 4 and Eclipse, which
    -> are both using the Sun 1.3.1 JRE/JDK.
    Take a look at Bug-ID 4299394
    Synopsis: TTY: Deferred line breakpoints can't be set on inner classes
    http://developer.java.sun.com/developer/bugParade/bugs/4299394.html
    -> BTW, in my research on this topic, I found a mention of "class preparation",
    -> a step that the JVM goes through when loading a class. I wonder if the class
    -> has to go through this step before the breakpoint can be enabled.
    A breakpoint cannot be set in a class before the class prepare event for
    that class. Also: the fully qualified name for the inner or nested class
    must be constructed properly.
    Any breakpoint requested before the target class is loaded must be 'deferred',
    which means the debugger keeps track of the breakpoint request and sets
    it when the class load eventually occurs.
    -> However, if I set breakpoint D once breakpoint C is hit, then
    -> breakpoint D works.
    By the time you get to the breakpoint at C, the inner class containing D
    (OtherClass$NestedClass.class) was located, loaded, and prepared as required
    by the "Object o = new NestedClass(v);" statement.

  • How to debug for Eixt Class CL_RSPLS_CR_EXIT_BASE

    Hello,
    I have created a input ready query and I have a requirement where we can use based on the characteristic of Organisation and Country to derive the Material group.
    For example:
    Country     Organsiation    Material group
    16            4518          =====> 164518
    I know I can use classes in SE24.
    I am assuming I should use CL_RSPLS_CR_EXIT_BASE for my requirement.
    I have defined a characterisitc relationship with Organisation and Country as source characteristic and  Material group as target and chose Characteristic Combinations Based On : Exit class and Exit Class: CL_RSPLS_CR_EXIT_BASE
    In IF_RSPLS_CR_METHODS~DERIVE  :
    FIELD-SYMBOLS: <l_chavl> TYPE ANY.
    data:  l_pur_org type /BI0/oid_pur_org,
            l_country type /bi0/oid_country.
    ASSIGN COMPONENT 'D_PUR_ORG' OF STRUCTURE c_s_chas
    TO <l_chavl>.
      l_pur_org = <l_chavl>.
    ASSIGN COMPONENT 'D_COUNTRY' OF STRUCTURE c_s_chas
    TO <l_chavl>.
      l_country = <l_chavl>.
    CLEAR <l_chavl>.
    CONCATENATE '10' l_pur_org l_country INTO <l_chavl>.
    ASSIGN COMPONENT 'D_MTLGROUP' OF STRUCTURE c_s_chas
    TO <l_chavl>.
    For the above function  I get Organisation and Country from input schedule and it should derive  Material group and save it into the cube.
    Is code wrong? It can not debug when i execute the query.
    ps. I have tried to create break-point, and external break-point. But it does not work.
    Thanks for your suggestion.
    Edited by: gang qin on Jan 11, 2010 9:12 PM

    Hi.
    First you should create your OWN class based on CL_RSPLS_CR_EXIT_BASE  via se24.
    Second redefine 3 methods: CHECK and CREATE without any code and DERIVE with your code.
    As I understand your material group should be: '10' (constant) + pur_org + country cancateneted.
    If Im right plz try the next code (plz note the code is not checked and debigged. If you will set breakpoint in method derive in your own class you can debug it).
    You can change this code in section with comments "**** Your derivation algorithm here"
    METHOD if_rspls_cr_methods~derive.
    infrastructure needed by the buffer:
      DATA: l_s_mesg   TYPE if_rspls_cr_types=>tn_s_mesg,
            l_is_valid TYPE rs_bool.
      FIELD-SYMBOLS: <l_th_buf> TYPE HASHED TABLE,
                     <l_s_buf>  TYPE ANY.
      CLEAR e_t_mesg.
    use the buffer?
    o_use_buffer is switched on by default in the constructor
      IF o_use_buffer = rs_c_true.
      yes:
        ASSIGN o_r_th_buf->* TO <l_th_buf>.
        ASSIGN o_r_s_buf->*  TO <l_s_buf>.
        <l_s_buf> = c_s_chas.
        READ TABLE <l_th_buf> INTO <l_s_buf> FROM <l_s_buf>.
        IF sy-subrc = 0.
          IF o_r_is_valid->* = rs_c_true.
            c_s_chas = <l_s_buf>.
            RETURN.
          ELSE.
            IF e_t_mesg IS SUPPLIED.
              APPEND o_r_s_mesg->* TO e_t_mesg.
            ENDIF.
            RAISE EXCEPTION TYPE cx_rspls_failed
              EXPORTING
                msgid = o_r_s_mesg->msgid
                msgty = o_r_s_mesg->msgty
                msgno = o_r_s_mesg->msgno
                msgv1 = o_r_s_mesg->msgv1
                msgv2 = o_r_s_mesg->msgv2
                msgv3 = o_r_s_mesg->msgv3
                msgv4 = o_r_s_mesg->msgv4.
          ENDIF.
        ENDIF.
      ENDIF.
    Your derivation algorithm here:
      FIELD-SYMBOLS: <zpur_org>   TYPE ANY.
      FIELD-SYMBOLS: <zcountry>   TYPE ANY.
      FIELD-SYMBOLS: <zmat_grp>   TYPE ANY.
      ASSIGN COMPONENT '/BI0/d_pur_org'   OF STRUCTURE <l_s_buf> TO <zpur_org>.
      ASSIGN COMPONENT '/BI0/d_country'   OF STRUCTURE <l_s_buf> TO <zcountry>.
      ASSIGN COMPONENT '/BI0/'D_MTLGROUP' OF STRUCTURE <l_s_buf> TO <zmat_grp>.
      CONCATENATE '10' <zpur_org> <zcountry> INTO <zmat_grp>.
      l_is_valid = 'X'.
    End of your derivation algorithm:
    update the buffer with the result:
    l_s_mesg should contain a message in the 'invalid' case
    l_is_valid should indicate whether derivation was possible
    <l_s_buf> should contain the derived fields
      IF o_use_buffer = rs_c_true.
        o_r_is_valid->* = l_is_valid.
        IF o_r_is_valid->* = rs_c_true.
          INSERT <l_s_buf> INTO TABLE <l_th_buf>.
          c_s_chas = <l_s_buf>.
        ELSE.
          IF e_t_mesg IS SUPPLIED.
            o_r_s_mesg->* = l_s_mesg.
            APPEND l_s_mesg TO e_t_mesg.
          ENDIF.
          INSERT <l_s_buf> INTO TABLE <l_th_buf>.
          RAISE EXCEPTION TYPE cx_rspls_failed
            EXPORTING
              msgid = l_s_mesg-msgid
              msgty = l_s_mesg-msgty
              msgno = l_s_mesg-msgno
              msgv1 = l_s_mesg-msgv1
              msgv2 = l_s_mesg-msgv2
              msgv3 = l_s_mesg-msgv3
              msgv4 = l_s_mesg-msgv4.
        ENDIF.
      ENDIF.
    ENDMETHOD.

  • 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).

  • Garbage collector - Tenured Generation - Unloading Class

    Hi All,
    I've seen the garbage collector report the following.  The worrying this is it took 36 seconds.  Is this normal, or is there something wrong with my generation (New, Perm, Tenured) sizes ?  What does this "Unloading Class" mean?
    Thu Dec  7 10:06:20 2006
    57165.190: [GC 57165.190: [ParNew: 676789K->676789K(682688K), 0.0000346 secs]57165.190: [Tenured
    Thu Dec  7 10:06:34 2006
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor116]
    [Unloading class sun.reflect.GeneratedConstructorAccessor819]
    [Unloading class sun.reflect.GeneratedMethodAccessor1]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor256]
    [Unloading class sun.reflect.GeneratedConstructorAccessor405]
    [Unloading class sun.reflect.GeneratedMethodAccessor232]
    [Unloading class sun.reflect.GeneratedMethodAccessor328]
    [Unloading class sun.reflect.GeneratedConstructorAccessor989]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor212]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor37]
    [Unloading class sun.reflect.GeneratedConstructorAccessor1032]
    [Unloading class sun.reflect.GeneratedConstructorAccessor366]
    [Unloading class sun.reflect.GeneratedConstructorAccessor89]
    [Unloading class sun.reflect.GeneratedConstructorAccessor84]
    [Unloading class sun.reflect.GeneratedConstructorAccessor336]
    [Unloading class sun.reflect.GeneratedConstructorAccessor335]
    [Unloading class sun.reflect.GeneratedConstructorAccessor1053]
    [Unloading class sun.reflect.GeneratedConstructorAccessor418]
    [Unloading class sun.reflect.GeneratedMethodAccessor320]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor86]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor274]
    [Unloading class sun.reflect.GeneratedConstructorAccessor929]
    [Unloading class sun.reflect.GeneratedConstructorAccessor893]
    [Unloading class sun.reflect.GeneratedConstructorAccessor444]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor58]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor144]
    [Unloading class sun.reflect.GeneratedConstructorAccessor132]
    [Unloading class sun.reflect.GeneratedConstructorAccessor385]
    [Unloading class sun.reflect.GeneratedConstructorAccessor767]
    [Unloading class sun.reflect.GeneratedConstructorAccessor960]
    Thu Dec  7 10:06:57 2006
    : 1653530K->1018272K(2326528K), 36.6689289 secs] 2330319K->1018272K(3009216K), 36.6692910 secs]
    Our server has 16GB of RAM.  The Heap size is currently set to 3GB.  The NewSize is 800MB and the Perm Size is 384MB.
    Thanks in advance
    Regards
    Anthony Gray

    Hi,
    > Hi All,
    >
    > I've seen the garbage collector report the following.
    > The worrying this is it took 36 seconds. 
    That's for sure too long.
    > Is this
    > normal, or is there something wrong with my
    > generation (New, Perm, Tenured) sizes ?  What does
    >  this "Unloading Class" mean?
    A class is unloaded, when it's not used anymore.
    In your case its the unloading of classes that were automatically generated because of the use of Java reflection.
    I mentioned that by the way just recently in my web log here : https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/5138. [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    What JVM do you use and what is the operating system  ?
    Regards,
    Markus
    >
    > ****************************
    > Thu Dec  7 10:06:20 2006
    > 57165.190: [GC 57165.190: [ParNew:
    > 676789K->676789K(682688K), 0.0000346 secs]57165.190:
    > [Tenured
    > Thu Dec  7 10:06:34 2006
    > [Unloading class
    > sun.reflect.GeneratedSerializationConstructorAccessor1
    > 16]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor819]
    > [Unloading class
    > sun.reflect.GeneratedMethodAccessor1]
    > [Unloading class
    > sun.reflect.GeneratedSerializationConstructorAccessor2
    > 56]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor405]
    > [Unloading class
    > sun.reflect.GeneratedMethodAccessor232]
    > [Unloading class
    > sun.reflect.GeneratedMethodAccessor328]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor989]
    > [Unloading class
    > sun.reflect.GeneratedSerializationConstructorAccessor2
    > 12]
    > [Unloading class
    > sun.reflect.GeneratedSerializationConstructorAccessor3
    > 7]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor1032]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor366]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor89]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor84]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor336]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor335]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor1053]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor418]
    > [Unloading class
    > sun.reflect.GeneratedMethodAccessor320]
    > [Unloading class
    > sun.reflect.GeneratedSerializationConstructorAccessor8
    > 6]
    > [Unloading class
    > sun.reflect.GeneratedSerializationConstructorAccessor2
    > 74]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor929]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor893]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor444]
    > [Unloading class
    > sun.reflect.GeneratedSerializationConstructorAccessor5
    > 8]
    > [Unloading class
    > sun.reflect.GeneratedSerializationConstructorAccessor1
    > 44]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor132]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor385]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor767]
    > [Unloading class
    > sun.reflect.GeneratedConstructorAccessor960]
    > .
    > .
    > .
    > .
    > Thu Dec  7 10:06:57 2006
    > : 1653530K->1018272K(2326528K), 36.6689289 secs]
    > 2330319K->1018272K(3009216K), 36.6692910 secs]
    >
    > ************************************
    > Our server has 16GB of RAM.  The Heap size is
    > currently set to 3GB.  The NewSize is 800MB and the
    > Perm Size is 384MB.
    >
    >
    > Thanks in advance
    >
    > Regards
    > Anthony Gray

  • To set HOTSPOT for a field in ALV-oops and when clecked should call transac

    Hi,
    I need to set HOTSPOT for a field in O/P list using ALV-oops and when clecked should take me to Transaction VA01. Please help....
    Thanks,
    Prabhu

    Hi,
         Please go through this code it may help u.
    REPORT zcls_alv_oops MESSAGE-ID z1.
    TABLES : mara.
    Types Declaration..\
    TYPES :
    BEGIN OF t_mara,
    matnr TYPE matnr,
    mtart TYPE mtart,
    maktx TYPE maktx,
    END OF t_mara,
    BEGIN OF t_marc,
    matnr TYPE matnr,
    werks TYPE werks_d,
    mtart TYPE mtart,
    maktx TYPE maktx,
    END OF t_marc.
    Internal Tables Declaration..\
    DATA :
    i_mara TYPE TABLE OF t_mara,
    i_marc TYPE TABLE OF t_marc,
    i_fcat1 TYPE lvc_t_fcat,
    i_fcat2 TYPE lvc_t_fcat.
    Constants Declaration..\
    CONSTANTS :
    c_cont1 TYPE scrfname VALUE 'CONT1',
    c_cont2 TYPE scrfname VALUE 'CONT2'.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS:
    s_matnr FOR mara-matnr NO INTERVALS.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS :
    p_hotspt RADIOBUTTON GROUP r1 DEFAULT 'X',
    p_bttn RADIOBUTTON GROUP r1.
    SELECTION-SCREEN END OF BLOCK b1.
    \* Class forward referncing.
    CLASS lcl_rcvr_class DEFINITION DEFERRED.
    \* Pointers Declaration..
    DATA :
    lp_rcvr TYPE REF TO lcl_rcvr_class,
    lp_cont1 TYPE REF TO cl_gui_custom_container,
    lp_cont2 TYPE REF TO cl_gui_custom_container,
    lp_grid1 TYPE REF TO cl_gui_alv_grid,
    lp_grid2 TYPE REF TO cl_gui_alv_grid.
    \* Local Class Definiton.
    CLASS lcl_rcvr_class DEFINITION.
    PUBLIC SECTION.
    METHODS :
    hotspot_click FOR EVENT hotspot_click OF cl_gui_alv_grid
    IMPORTING e_row_id e_column_id es_row_no,
    handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
    IMPORTING e_row e_column.
    ENDCLASS.
    \* Local Class Implementation.
    CLASS lcl_rcvr_class IMPLEMENTATION.
    METHOD hotspot_click.
    DATA :
    wa_mara TYPE t_mara,
    wa_marc TYPE t_marc.
    DATA :
    l_index TYPE sy-tabix.
    READ TABLE i_mara INTO wa_mara INDEX e_row_id-index.
    IF sy-subrc EQ 0.
    REFRESH i_marc.
    SELECT matnr
    werks
    INTO TABLE i_marc
    FROM marc
    WHERE matnr EQ wa_mara-matnr.
    IF sy-subrc EQ 0.
    LOOP AT i_marc INTO wa_marc.
    l_index = sy-tabix.
    wa_marc-mtart = wa_mara-mtart.
    wa_marc-maktx = wa_mara-maktx.
    MODIFY i_marc FROM wa_marc INDEX l_index
    TRANSPORTING mtart maktx.
    ENDLOOP.
    CALL SCREEN 200.
    ELSE.
    MESSAGE e121 WITH text-005 wa_mara-matnr.
    ENDIF.
    ENDIF.
    ENDMETHOD.
    METHOD handle_double_click.
    DATA :
    wa_mara TYPE t_mara,
    wa_marc TYPE t_marc.
    DATA :
    l_index TYPE sy-tabix.
    READ TABLE i_mara INTO wa_mara INDEX e_row-index.
    IF sy-subrc EQ 0.
    REFRESH i_marc.
    SELECT matnr
    werks
    INTO TABLE i_marc
    FROM marc
    WHERE matnr EQ wa_mara-matnr.
    IF sy-subrc EQ 0.
    LOOP AT i_marc INTO wa_marc.
    l_index = sy-tabix.
    wa_marc-mtart = wa_mara-mtart.
    wa_marc-maktx = wa_mara-maktx.
    MODIFY i_marc FROM wa_marc INDEX l_index
    TRANSPORTING mtart maktx.
    ENDLOOP.
    CALL SCREEN 200.
    ELSE.
    MESSAGE e121 WITH text-005 wa_mara-matnr.
    ENDIF.
    ENDIF.
    ENDMETHOD.
    ENDCLASS.
    \* Start of Selection
    START-OF-SELECTION.
    \* Extract the Material Master data for the Input Material.
    SELECT a~matnr
    a~mtart
    b~maktx
    INTO TABLE i_mara
    FROM mara AS a
    INNER JOIN makt AS b
    ON a~matnr EQ b~matnr
    WHERE a~matnr IN s_matnr
    AND b~spras EQ sy-langu.
    END-OF-SELECTION.
    IF NOT i_mara\[\] IS INITIAL.
    \* Call Screen to display the Material Master data.
    CALL SCREEN 100.
    ELSE.
    MESSAGE s121 WITH text-006.
    ENDIF.
    \*& Module DISP_GRID OUTPUT
    \* text
    MODULE disp_grid OUTPUT.
    \* Build the Field catelog for Material Master data.
    PERFORM build_fcat.
    \* Display the Material Master data using ALV.
    PERFORM disp_alv.
    ENDMODULE. " DISP_GRID OUTPUT
    \*& Module USER_COMMAND_0100 INPUT
    \* text
    MODULE user_command_0100 INPUT.
    \*when exit or cancel is clicked program has to come out
    CASE sy-ucomm.
    WHEN 'EXIT' OR 'CANC'.
    LEAVE PROGRAM.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    \*& Form build_fcat
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM build_fcat.
    DATA : ws_fcat TYPE lvc_s_fcat.
    ws_fcat-fieldname = 'MATNR'.
    ws_fcat-scrtext_m = text-001.
    ws_fcat-tabname = 'I_MARA'.
    IF p_hotspt EQ 'X'.
    ws_fcat-hotspot = 'X'.
    ENDIF.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MTART'.
    ws_fcat-scrtext_m = text-002.
    ws_fcat-tabname = 'I_MARA'.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MAKTX'.
    ws_fcat-scrtext_m = text-003.
    ws_fcat-tabname = 'I_MARA'.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ENDFORM. " build_fcat
    \*& Form disp_alv
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM disp_alv.
    IF lp_cont1 IS INITIAL.
    \* Create the Container Object of Material Master.
    CREATE OBJECT lp_cont1
    EXPORTING
    container_name = c_cont1
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    others = 6 .
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Create the Object for Grid of Material Master.
    CREATE OBJECT lp_grid1
    EXPORTING
    i_parent = lp_cont1
    EXCEPTIONS
    error_cntl_create = 1
    error_cntl_init = 2
    error_cntl_link = 3
    error_dp_create = 4
    others = 5.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Dipslay Material Master data by calling method.
    CALL METHOD lp_grid1->set_table_for_first_display
    CHANGING
    it_outtab = i_mara
    it_fieldcatalog = i_fcat1
    EXCEPTIONS
    invalid_parameter_combination = 1
    program_error = 2
    too_many_lines = 3
    OTHERS = 4.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Set Handler for the Hot Spot Event.
    CREATE OBJECT lp_rcvr.
    IF p_hotspt EQ 'X'.
    SET HANDLER lp_rcvr->hotspot_click FOR lp_grid1.
    ELSE.
    SET HANDLER lp_rcvr->handle_double_click FOR lp_grid1.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDFORM. " disp_alv
    \*& Module STATUS_0100 OUTPUT
    \* text
    MODULE status_0100 OUTPUT.
    SET PF-STATUS 'MAIN_STAT'.
    SET TITLEBAR 'T_100'.
    ENDMODULE. " STATUS_0100 OUTPUT
    \*& Module STATUS_0200 OUTPUT
    \* text
    MODULE status_0200 OUTPUT.
    SET PF-STATUS 'PLANT_STAT'.
    SET TITLEBAR 'T_200'.
    ENDMODULE. " STATUS_0200 OUTPUT
    \*& Module DISP_GRID_plant OUTPUT
    \* text
    MODULE disp_grid_plant OUTPUT.
    \* Build the Field catelog for Material Plant data.
    PERFORM build_fcat_plant.
    \* Display the Material Master Plant data using ALV.
    PERFORM disp_alv_plant.
    ENDMODULE. " DISP_GRID_plant OUTPUT
    \*& Module USER_COMMAND_0200 INPUT
    \* text
    MODULE user_command_0200 INPUT.
    \*when exit or cancel is clicked program has to come out
    CASE sy-ucomm.
    WHEN 'EXIT' OR 'CANC'.
    LEAVE PROGRAM.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_0200 INPUT
    \*& Form build_fcat_plant
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM build_fcat_plant.
    DATA : ws_fcat TYPE lvc_s_fcat.
    ws_fcat-fieldname = 'MATNR'.
    ws_fcat-scrtext_m = text-001.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'WERKS'.
    ws_fcat-scrtext_m = text-004.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MTART'.
    ws_fcat-scrtext_m = text-002.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MAKTX'.
    ws_fcat-scrtext_m = text-003.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ENDFORM. " build_fcat_plant
    \*& Form disp_alv_plant
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM disp_alv_plant.
    IF lp_cont2 IS INITIAL.
    \* Create the Container Object of Material Plant data.
    CREATE OBJECT lp_cont2
    EXPORTING
    container_name = c_cont2
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    others = 6.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Create the Object for Grid of Material Plant data.
    CREATE OBJECT lp_grid2
    EXPORTING
    i_parent = lp_cont2
    EXCEPTIONS
    error_cntl_create = 1
    error_cntl_init = 2
    error_cntl_link = 3
    error_dp_create = 4
    others = 5.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Dipslay Material Plant data by calling method.
    CALL METHOD lp_grid2->set_table_for_first_display
    CHANGING
    it_outtab = i_marc
    it_fieldcatalog = i_fcat2
    EXCEPTIONS
    invalid_parameter_combination = 1
    program_error = 2
    too_many_lines = 3
    OTHERS = 4.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDIF.
    ENDIF.
    ELSE.
    \* Call method 'REFRESH_TABLE_DISPLAY' to refresh the grid data.
    CALL METHOD lp_grid2->refresh_table_display.
    ENDIF.
    ENDFORM. " disp_alv_plant

  • Getting error while trying to set text for form value field in oaf

    Hi ALL,
    When i am trying to set text for a form value type field it is giving null pointer exception, please help me out.
    I tried below way.
    OAFormValueBean containlineid=(OAFormValueBean)webBean.findChildRecursive("item11");
                containlineid.setText(pageContext,"test");
    Thanks

    HI Keerthi,
    I am able to set and get the value now, i am able to see the data in my log window, but in my page it is erroring out, giving null pointer exception.
    after commenting the two lines setting and getting value page is running fine, so any clue on this, please check the below code.
    public class XXDPECONTAINLINESCO extends OAControllerImpl
      public static final String RCS_ID="$Header$";
      public static final boolean RCS_ID_RECORDED =
            VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
       * Layout and page setup logic for a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
        OAApplicationModule am = (OAApplicationModule) pageContext.getApplicationModule(webBean);
          OARawTextBean startDIVTagRawBean =
          (OARawTextBean) webBean.findChildRecursive("DivStart");
          System.out.println("debhorizontal"+ startDIVTagRawBean);
    // addScrollBarsToTable(pageContext, webBean,"DivStart", "DivEnd", true , "400",true,"400");
       * Procedure to handle form submissions for form elements in
       * a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
         String preplenish = pageContext.getParameter("item1");
          String pworkorder = pageContext.getParameter("item2");
          String pdmr = pageContext.getParameter("item4");
          String punloading = pageContext.getParameter("item6");
          String prrnum=pageContext.getParameter("item16");
          String pworknum=pageContext.getParameter("item14");
          String pdtr=pageContext.getParameter("item13");  
          Serializable param[] = {preplenish,pworkorder,pdmr,punloading,prrnum,pworknum,pdtr};
          OAApplicationModule am = (OAApplicationModule) pageContext.getApplicationModule(webBean);
          if(pageContext.getParameter("item11")!=null)
            if(am !=null)
              am.invokeMethod("getSearchData",param);
          if (pageContext.getParameter("item30") != null) {
            String recout = (String)am.invokeMethod("getSelectedData");
               System.out.println("deb multi select test"+recout);        
                System.out.println("1111test1"+pageContext.getParameter("item32")); 
                OAFormValueBean containlineid=(OAFormValueBean)webBean.findChildRecursive("item32");
                System.out.println("1111test2"+pageContext.getParameter("item32"));
                //containlineid.setValue(pageContext,recout);
                System.out.println("1111"+pageContext.getParameter("item32"));
              ///  System.out.println("22222"+containlineid.getValue(pageContext));
            containlineid.setValue(pageContext,recout);
            containlineid.getValue(pageContext);                            
               System.out.println("1111test3"+pageContext.getParameter("item32"));
    --------------Error it is giving in the page as----------------
    Exception Details.
    oracle.apps.fnd.framework.OAException: java.lang.NullPointerException at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source) at _OA._jspService(_OA.java:71) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239) at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595) ## Detail 0 ## java.lang.NullPointerException at xxdpe.oracle.apps.ak.xxdpecontain.webui.XXDPECONTAINLINESCO.processFormRequest(XXDPECONTAINLINESCO.java:123) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source) at oracle.apps.fnd.framework.webui.beans.layout.OAMessageComponentLayoutBean.processFormRequest(Unknown Source
    Thnaks

  • Can't set PropagatedNamespaces for XmlDsigC14NTransform

    Can't set PropagatedNamespaces for XmlDsigC14NTransform. This is my source code:
    XmlDsigC14NTransform^ c12n = gcnew XmlDsigC14NTransform();System::Collections::Hashtable^ hashtable = gcnew System::Collections::Hashtable();hashtable->Add("xsi", "http://namespace");c12n->PropagatedNamespaces = hashtable;
    Under c12n on the last line it says:
    System::Collections::Hashtable ^System::Security::Cryptography::Xml::PropagatedNamespaces::get()
    Error: property "System::Security::Cryptography::Xml::PropagatedNamespaces" (declared in "C:\Windows\Microsoft.NET\Framework\v4.0.30319\System.Security.dll") has no 'set' accessor
    This is very weird because in XmlDsigC14NTransform Class description it says "Gets
    or sets a Hashtable object
    that contains the namespaces that are propagated into the signature" under PropagatedNamespaces property.
    I'm using Visual Studio 2013 and the project has been set for NET Framework 4.0.
    Is there any way around it?

    Hello,
    >>This is very weird because in XmlDsigC14NTransform Class description it says "Gets or sets a Hashtable object that contains the namespaces that are propagated into the signature" under PropagatedNamespaces property.
    In my opinion, this description should be correct, as we can see, it says:
    The PropagatedNamespaces property is set automatically
    during signature computation and checking, but before transforms are invoked.
    So I think the Set function is automatically done during signature computation and could not be set manually. However, from its provided description and syntax, it might make people confused, I have submit a feedback to this MSDN site:
    http://feedback.msdn.com/forums/257782-msdn-feature-suggestions/suggestions/7186278-transform-propagatednamespaces-mismatch-between-i
    You could vote it so that its priority could be improved.
    >> Is there any way around it?
    Since as it describes, this property is set automatically during signature computation, manual action is not possible.
    Regards,
    Fred.
    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.

Maybe you are looking for

  • CREATE_CASH : ORA-01403: no data found

    While running the AR_RECEIPT_API_PUB.CREATE_CASH to create a receipt with Receipt method of automatic receipt class in R12, i get the error: .CREATE_CASH : ORA-01403: no data found .ORA-01403: no data found in Package AR_RECEIPT_API_PUB Procedure Cre

  • HP LaserJet 1100 with Extreme?

    Has anyone gotten the Extreme to recognize this old printer? It doesn't show up in AP Utility when I plug it into the Extreme. I installed the Bonjour Printer Wizard and it doesn't see it either. An Apple Expert on the phone said the printer was prob

  • D-Link DI-604 and torrents

    I`ve encountered pretty wierd problem with D-Link DI-604 router. I have two PCs in my network, 1 slackware and 1 arch. Running azureus on slackware one gave me  no problems. But when I transfered my ~/.Azureus folder to arch computer (and of course c

  • Why standard fonts doesn't installed? such: adobe arabic

    i installed latest version of adobe photoshop cc, it wasn't ask me what version do I want to download (english, english/arabic). now i can enable middle east features and type in arabic as well as it is. but why there isn't any font which named Adobe

  • The resource_view isn't work

    Hi! When I try to use the resource_view I get this error: ORA-29903: error in executing ODCIIndexFetch() routine ORA-22881: dangling REF What should I do? I can't delete any resources under the '/home' path. Any idea? The version is 9.2.0.4.