Error in Java Program when passing table to RFC function . JCO is used

Hai All,
I developed a JAVA application to update data into SAP using JCO via RFC. When i pass table to the function module i am getting the below error
com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Conversion from type T to D not supported.
Please let me know how to solve this.
Below is my code
IRepository m_Repository;
IFunctionTemplate ftemplate;
JCO.Table PwdReq;
JCO.Function function;
m_Repository = JCO.createRepository("MYRepository", client);
            ftemplate = m_Repository.getFunctionTemplate("Z_GESEFM_UPD_PWD_RESET_REQUEST");
// Create a function from the template
function = new JCO.Function(ftemplate);
// Feeding in input parameters
PwdReq = function.getTableParameterList().getTable("RESULT2");
String userid = "PATCHTEST14 ", reqDate = "",reqNo = "01",reqStatus = "03", boxID = "09",ind2 = "X",
                    lcode = "abcd",rem = "One record testing";
PwdReq.appendRow();
                PwdReq.setValue(userid, "USERID");
                PwdReq.setValue(reqNo,"REQ_NO");
                PwdReq.setValue(reqStatus,"REQ_STATUS");
                PwdReq.setValue(boxID,"BOX_ID");
                PwdReq.setValue(ind2,"IND2");
                PwdReq.setValue(lcode,"LCODE");
                PwdReq.setValue(rem,"OTHER_REMARKS");
            // execute the function with the input parameters
            client.execute(function);
Thanks & Regards,
H.K.Hayath Basha.

hi,
I am not very good in Java.
but try this code to giving input parameter.
function.getImportParameterList().setValue(userid, "USERID");
if you are not using Try and Catch blok then use Try and Catch blok,
Regards
Manoj

Similar Messages

  • Dynamic table in RFC function

    Dear all
    I like to create a dynamic table in a RFC function and pass this table to the calling programm. Is this possible?
    Herbert

    Hi,
    check the Below FM to create Dynamic table in RFC function ..
    RFC_READ_TABLE              --   External access to R/3 tables via RFC
    RFC_GET_TABLE_ENTRIES     --     Read table entries
    Prabhu

  • Error running java program (testing oracle-character-set-31 against ab?c )

    Hi
    When i run my java program from eclipse , i get these errors : how to correct these errors and run the program
    testing oracle-character-set-31 against <ab?c>
    PASSED LOSSY
    testing oracle-character-set-31 against <XYZ>
    PASSED LOSSY
    testing oracle-character-set-31 against <longlonglonglong...>
    PASSED LOSSY
    testing oracle-character-set-870 against <abc>
    PASSED
    testing oracle-character-set-870 against <ab?c>
    PASSED
    testing oracle-character-set-870 against <XYZ>
    PASSED
    testing oracle-character-set-870 against <longlonglonglong...>
    PASSED
    testing oracle-character-set-871 against <abc>
    PASSED
    testing oracle-character-set-871 against <ab?c>
    PASSED
    testing oracle-character-set-871 against <XYZ>
    PASSED
    testing oracle-character-set-871 against <longlonglonglong...>
    PASSED

    rxg wrote:
    Hi
    When i run my java program from eclipse , i get these errors : how to correct these errors and run the program
    ...Sun's not Oracle (yet). You will have better luck on a forum relating to whatever is producing that "oracle-character-set..." output.
    Edit:
    Although a Google search for "testing oracle-character-set" yields only this thread. Are you sure that output isn't part of your program?
    Edited by: endasil on 7-Oct-2009 3:40 PM

  • Running Java Programs when JDBC libraries in classpath

    Hi I am running NT Server 4.0 SP5 and Oracle 8i.
    I have compiled several Java Programs, some of which use Oracles
    JDBC drivers. When I try to run any of the programs I get the
    complaint "Can't find class X", where X is the class which
    contains main(..) and the name of the file. If I delete the
    references to BOTH (leaving one does nothing) classes111.zip and
    nlscharset11.zip in the classpath, the programs, which don't use
    JDBC run fine, but the ones which do use JDBC and need those
    packages complain. If I put the classes which need the Oracle
    JDBC drivers in the same directory as the classes111.zip and
    nlscharset11.zip (with an empty classpath) I get the first error
    "Can't find class X", where X is the class which contains
    main(..) and the name of the file. I have tried these
    combinations with four different Java compliers and VM and always
    get the same errors.
    Thanks, Charlie
    null

    set PATH=%PATH%;C:\ORAWIN95\BIN
    set
    PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\jdk1.3\bin;C:\ORA
    IN95\BIN
    set
    CLASSPATH=C:\jdk1.3\lib\jvm.lib;C:\jdk1.3\lib\tools.jar
    set
    CLASSPATH=C:\project;C:\tomcat\common\lib\servlet.jar
    set CLASSPATH=C:\tomcat\bin\jasper.jar
    set CLASSPATH=C:\jsdk2.1\servlet.jar
    set CLASSPATH=C:\jdk1.3\bin;C:\projectBy the way, after running these commands your classpath will ONLY contain C:\jdk1.3\bin;C:\project, because that is the last thing you set it to.
    To add to your classpath, you need to do something like:
    set CLASSPATH=%CLASSPATH%;C:\jdk1.3\bin;C:\project
    which works because %CLASSPATH% evaluates to the current value of CLASSPATH.

  • Error compiling Java Program

    I am new to java programming.
    I recently took a java class. In the lab we created a simple program.
    The program was split up in two separate files.
    //Vehicle.java
    public class Vehicle {
         private double load;
         private double maxLoad;
              public Vehicle(double max_Load) {
                   load = 0.0;     
                   maxLoad = max_Load;
              public double getLoad(){
                   return load;
              public double getMaxLoad(){
                   return maxLoad;
              boolean addBox(double weight) {
                   if ((weight + load) > maxLoad)
                        return false;
                   else
                        load=weight+load;     
                        return true;
    }//end of class Vehicle
    on a complete separate file
    public class TestVehicle {
    public static void main(String[] args) {
    // Create a vehicle that can handle 10,000 kilograms weight
    System.out.println("Creating a vehicle with a 10,000kg maximum load.");
    Vehicle vehicle = new Vehicle(10000.0);
    // Add a few boxes
    System.out.println("Add box #1 (500kg) : " + vehicle.addBox(500.0));
    System.out.println("Add box #2 (250kg) : " + vehicle.addBox(250.0));
    System.out.println("Add box #3 (5000kg) : " + vehicle.addBox(5000.0));
    System.out.println("Add box #4 (4000kg) : " + vehicle.addBox(4000.0));
    System.out.println("Add box #5 (300kg) : " + vehicle.addBox(300.0));
    // Print out the final vehicle load
    System.out.println("Vehicle load is " + vehicle.getLoad() + " kg");
    when we complied the program we ONLY compiled TestVechile.java
    ( javac TestVechile.java) and BOTH the class compiled successfully. When I tried to compile the TestVehicle class at home I got an error at line 6 in TestVehicle.java.
    Please any help would be greatly appreciated.
    - Alex

    To compile TestVehicle.java, you need either Vehicle.java or Vehicle.class -- with neither of them, the compiler doesn't know whether "new Vehicle(10000.0)" is legal or not.

  • I need to call a java program and pass parameters from C#

    I'm new to C# and was given a project to rewrite some of my old VB.net programs to C# to help me learn.  These VB programs call quite a few .bat files that have calls to java programs in them. I'm doing okay converting my VB code, but I've been
    stumped for days trying to figure out how to call java from C#. 
    Does anyone here know how to do this?  I really should've had this figured out by now and my back is to the wall.  Ugh :(
    This is the line from the .bat file that I need to convert to C#. 
    call jvbat production_r115.Automotive m:\data\MK115mn.100 m:\data\MK115mn.101 %6
    There is one parameters being passed, %6
    I would be forever grateful if someone can show me how to do this!

    Hi Joni,
    Do you mean call a bat file that it is a Java program from C#?  If so, there is an article talking about it.
    If that's not what you're trying to do, please be more specific about what you're trying to do.
    http://www.c-sharpcorner.com/UploadFile/maheswararao/CallingJavaProgramfromCS12062005233321PM/CallingJavaProgramfromCS.aspx
    Now the next issue is pass some parameters from C#.
    The above article tells using Process.Start() method to call java program. Also  in this class, you could  specify them all in the
    Arguments property:
    var p = new Process();
    p.StartInfo.Arguments = string.Format("{0} {1}", argument1, argument2);
    For more detailed information, please refer to
    C# Passing Multiple Arguments to BAT File
    Note: This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control
    these sites and has not tested any software or information found on these sites;
    Therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information
    found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.
    Best regards,
    Kristin
    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.

  • Loading local Java program when Applet is started

    Okay, I am trying to write a Java applet that is used as an online scheduler for one of the professors in the college I work at (I am also a student so I haven't taken a lot of programming classes but know networking and GUI's for Java)
    I was going to set up the program to connect to a server that is always running locally to save the information for the scheduler but my boss does not want something running all the time. Is there any way to start a program (and check if the program is running) on the local host? I would need to be able to start the program when someone connects, and be able to connect to the currently running program if a second user connects. Is this possible? Any help would be appreciated. Thank you.
    Stephen

    Define "does not want something running all the time". I mean, if you are serving an applet, you are running a web server all the time. If you are running a web server, it'd be trivial to run a MySQL database and have the applet just use JDBC to talk to the database (so long as the DB is running on the same machine as the web server, you shouldn't have to worry about signed applets). Then can both be configured to start automatically if the machine is rebooted.
    Granted, connecting to a database from an applet is probably not very secure, becuase the password would be fairly exposed to people that know what they are doing. So one way around this is to run some CGI or JSP/servlets or something in the web server that the applet can talk to, which in turn handles the database connection.

  • Problem with empty report parameters when passed to PL/SQL function

    Hi,
    We have come across what appears to be a bug in the JRC. When passing a report parameter to a PL/SQL function as a parameter, empty parameters are changed before being sent to the function. More specifically, an empty string "" ends up as the value "(')" in the PL/SQL function parameter. In our report we print the report parameters on the first page so we know that the parameters are OK before being passed to the database.
    The problem exists for version 12.2.203, 12.2.204 and 12.2.205 of the JRC.
    We have identified a workaround, but it is not exactly elegant: Before executing the report we modify all empty  parameters ("") to " " . In the PL/SQL function, we trim all parameters before using them.
    We call the function using a command object with a sql syntax like this example:
    select * from table (qa_batch_release.get_qa_br('{?p_report_id}','{?p_reg_set_number}','{?p_cr_number}','{?p_change_id_decode}','{?p_country_id}','{?p_mfg_item_no}','{?p_4_no}','{?p_5_no}','{?p_7_no}'))
    The PL/SQL function is a table returning function.
    Best regards, Thor

    Hi Kishore,
    using #COLUMN_VALUE# would probably not make much sense, because normally a report has multiple columns and not just the numeric column which you want to verify if it's negative. But APEX will fire the template condition for each column, because the report template is a column cell template.
    What you can do to make it more generic is to use for example
    #CHECK_AMOUNT#
    in the template and provide a not displayed column in your SQL statement which contains your value which is named CHECK_AMOUNT. For example:
    SELECT NAME
         , BALANCE
         , BALANCE AS CHECK_AMOUNT
    FROM XXX;Because this CHECK_AMOUNT column would be a generic name, you can use this template in all your reports as long as you provide this column.
    Thope that helps
    Patrick

  • How to pass table in RFC and use that table to populate fields in Mapping?

    Hi,
    I have a requirement FIle to CSV, the file consists of thousand lines...
    What I did first is to put RFC look up per line. It is taking too long to process the message.
    One work around that I could think of is to pass all the values to a table then pass the table to RFC then RFC returns another table, so only one RFC call is required.
    How am I going to use the table returned by the RFC? Please advise how to achieve this scenario.

    Hi,
    I use an ABAP RFC function, which has a parameter that contains many rows.
    In ABAP, I create a two types. First is a ROW - contains some fields, for example, param1, param2, etc.
    Second is a TABLE - contains multiple count of ROW.
    Then I create a Remotecallable Function that has this TABLE-type as parameter (you can make this parameter as INPUT and OUTPUT). So in my mapping program after import RFC Function, I see a message looks like this:
    MY_TABLE_PARAM (Occurences: 1)
    item (Occureces: 0..unbounded)
    param1 (Occureces: 1)
    param2 (Occureces: 1)
    etc (Occureces: 1)
    Regards.

  • Dump when trying to invoke RFC function from Webchannel

    Dear all,
    I recently tried to invoke a RFC function from Webchannel. But I got dump like this:
    Actually, the error message showed that, null object is pulling out from com.sap.wec.tc.core.backend.ConnectionFactory.getDefaultConnection().
    I have no idea about this at all. Does anyone know it?
    Thank you.
    Best Regards,
    Sam.

    Hi Sam,
    the issue occurs in your khalibre package. I suppose that you try to access the backend but entries in the backendobject-config.xml, businessobject-config.xml are not correct. Or not taken into account correctly.
    Thus, please check these settings in the xml files and ensure that you module enhancement is taken into account. Finally, Hamendra already proposed the debugger...
    Best regards,
      Steffen

  • Passing table to RFC in Java iview

    Hi - I am trying to pass a table to an RFC.  No error on the RFC call - but no data is being passed in the table either...any recomendation on what I am missing - here is my code:
               public String submitOrder(JCO.Table iTab, String iType) {
               String errMsg = "";
                JCO.Function function = null;
               try {
         functionRepository = new JCO.Repository("custCSM", sapConnection);
         function = this.createFunction("Z_RFC_POST_IDOC_1");
            function.getImportParameterList().setValue(iType, "BUILD_SHIP");
            function.getTableParameterList().setValue(iTab, "ZIDOC_POST");
         sapConnection.execute(function);
               } catch (Exception e) {errMsg = "Submission had errors. Order not Submitted.";
          e.printStackTrace();}
              return errMsg;
    many thanks - Janet

    Hi Janet
    I can give you a pointer here.
    just plug in either of these calls just before the execute
    function.writeXML("C:/call.xml");
    (This will print out data you are trying to send in an XML file )
    or
    sapConnection.setAbapDebug(true);
    (This will open a SAP gui with the Function Module in debug mode , you can then double click the table params to see if it is populated)
    Regards
    Pran

  • SIGSEGV error in java compiler when compiling CDT 5.0.0

    I am trying to run a headless build of the Eclipse CDT 5.0.0 code and am encountering a SIGSEGV violation when using either the Java SE Runtime Environment (build 1.6.0_07-b0) with Java HotSpot Server VM (build 10.0-b23, mixed mode) or with Java SE Runtime Environment (build 1.6.0_06-b02) with Java HotSpot Server VM (build 10.0-b22, mixed mode). This occurs on our RedHat Linux machine.
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x0625665c, pid=9579, tid=853339056
    # Java VM: Java HotSpot(TM) Server VM (10.0-b23 mixed mode linux-x86)
    # Problematic frame:
    # V [libjvm.so+0x25665c]
    # An error report file with more information is saved as:
    # /folk/mpauna/surf_build/build/plugins/hs_err_pid9579.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    The error occurs on the java command:
    jvm_args: -Xms100m -Xmx2000m
    java_command: /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.launcher_1.0.100.v20080509-1800.jar -application org.eclipse.ant.core.antRunner -buildfile /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.pde.build_3.4.0.v20080604/scripts/build.xml -data /folk/mpauna/surf_build/workspace -configuration /folk/mpauna/surf_build/configuration -DjavacDebugInfo=on -DjavacVerbose=true -Dbuilder=/folk/mpauna/surf_build/configuration -verbose -debug
    Launcher Type: SUN_STANDARD
    I have tried various -Xms and -Xmx values, but it keeps crashing.
    Does anyone have any suggestions or ideas???
    Thanks,
    Mark Pauna
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x0625665c, pid=9579, tid=853339056
    # Java VM: Java HotSpot(TM) Server VM (10.0-b23 mixed mode linux-x86)
    # Problematic frame:
    # V [libjvm.so+0x25665c]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x0811c400): JavaThread "CompilerThread0" daemon [_thread_in_native, id=9589, stack(0x32d4e000,0x32dcf000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x00000000
    Registers:
    EAX=0x00000000, EBX=0x30a6445c, ECX=0x31981654, EDX=0xffffffff
    ESP=0x32dcce70, EBP=0x32dccec8, ESI=0x30a64428, EDI=0x00000000
    EIP=0x0625665c, CR2=0x00000000, EFLAGS=0x00010202
    Top of Stack: (sp=0x32dcce70)
    0x32dcce70: 31981654 00000000 00000331 00000331
    0x32dcce80: 32dccf90 31b7ddcc 00000000 32dccfd0
    0x32dcce90: 066a0bf0 ffffffff 0000000e 08121b30
    0x32dccea0: 00000001 31981654 00000002 31b7ddc8
    0x32dcceb0: 00000011 32dcd31c 01000318 00000733
    0x32dccec0: 32dccf90 32dcd2b0 32dccff8 06255bb5
    0x32dcced0: 32dcd2b0 00000001 32dcdc00 32dcdc00
    0x32dccee0: 000000dc 000000dc 32dccf28 32dcd31c
    Instructions: (pc=0x0625665c)
    0x0625664c: 5d dc 8b 03 53 8d 5e 34 ff 50 40 89 c7 8b 56 34
    0x0625665c: 8b 00 21 c2 89 56 34 8b 47 04 8b 4b 04 21 c1 8b
    Stack: [0x32d4e000,0x32dcf000], sp=0x32dcce70, free space=507k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x25665c]
    V [libjvm.so+0x255bb5]
    V [libjvm.so+0x2a2acd]
    V [libjvm.so+0x29f950]
    V [libjvm.so+0x2471e9]
    V [libjvm.so+0x2a6e3a]
    V [libjvm.so+0x2a6846]
    V [libjvm.so+0x5b61ed]
    V [libjvm.so+0x4fe289]
    C [libpthread.so.0+0x5371]
    Current CompileTask:
    C2:1284 org.eclipse.jdt.internal.compiler.lookup.ParameterizedMethodBinding.<init>(Lorg/eclipse/jdt/internal/compiler/lookup/ParameterizedTypeBinding;Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;)V (596 bytes)
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x31b42800 JavaThread "Compiler Processing Task" daemon [_thread_in_native, id=9633, stack(0x31faf000,0x32000000)]
    0x083f1000 JavaThread "Worker-1" [_thread_blocked, id=9601, stack(0x324a9000,0x324fa000)]
    0x3260b000 JavaThread "Java indexing" daemon [_thread_blocked, id=9600, stack(0x3255a000,0x325ab000)]
    0x32639400 JavaThread "Worker-0" [_thread_blocked, id=9599, stack(0x325af000,0x32600000)]
    0x32aa3000 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=9596, stack(0x327af000,0x32800000)]
    0x32804800 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=9595, stack(0x32931000,0x32982000)]
    0x333a9800 JavaThread "State Data Manager" daemon [_thread_blocked, id=9594, stack(0x32984000,0x329d5000)]
    0x33301400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=9591, stack(0x32c7c000,0x32ccd000)]
    0x0811e400 JavaThread "CompilerThread1" daemon [_thread_blocked, id=9590, stack(0x32ccd000,0x32d4e000)]
    =>0x0811c400 JavaThread "CompilerThread0" daemon [_thread_in_native, id=9589, stack(0x32d4e000,0x32dcf000)]
    0x0811b000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=9588, stack(0x32dcf000,0x32e20000)]
    0x08103400 JavaThread "Finalizer" daemon [_thread_blocked, id=9587, stack(0x33020000,0x33071000)]
    0x080ff000 JavaThread "Reference Handler" daemon [_thread_blocked, id=9586, stack(0x33071000,0x330c2000)]
    0x08059800 JavaThread "main" [_thread_in_native, id=9580, stack(0xb7f8f000,0xb7fe0000)]
    Other Threads:
    0x080fbc00 VMThread [stack: 0x330c2000,0x33143000] [id=9585]
    0x33302c00 WatcherThread [stack: 0x32bfb000,0x32c7c000] [id=9592]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 190464K, used 66161K [0xa7020000, 0xb4e50000, 0xb4e50000)
    eden space 174208K, 28% used [0xa7020000,0xaa0e65c8,0xb1a40000)
    from space 16256K, 99% used [0xb1a40000,0xb2a16078,0xb2a20000)
    to space 27520K, 0% used [0xb3370000,0xb3370000,0xb4e50000)
    PSOldGen total 91072K, used 14886K [0x37e50000, 0x3d740000, 0xa7020000)
    object space 91072K, 16% used [0x37e50000,0x38cd9850,0x3d740000)
    PSPermGen total 36352K, used 18133K [0x33e50000, 0x361d0000, 0x37e50000)
    object space 36352K, 49% used [0x33e50000,0x35005418,0x361d0000)
    Dynamic libraries:
    0023c000-00251000 r-xp 00000000 fd:00 131843 /lib/ld-2.3.4.so
    00251000-00252000 r-xp 00015000 fd:00 131843 /lib/ld-2.3.4.so
    00252000-00253000 rwxp 00016000 fd:00 131843 /lib/ld-2.3.4.so
    00255000-0037a000 r-xp 00000000 fd:00 131868 /lib/tls/libc-2.3.4.so
    0037a000-0037b000 r-xp 00124000 fd:00 131868 /lib/tls/libc-2.3.4.so
    0037b000-0037e000 rwxp 00125000 fd:00 131868 /lib/tls/libc-2.3.4.so
    0037e000-00380000 rwxp 0037e000 00:00 0
    00382000-00384000 r-xp 00000000 fd:00 131870 /lib/libdl-2.3.4.so
    00384000-00386000 rwxp 00001000 fd:00 131870 /lib/libdl-2.3.4.so
    00388000-003a9000 r-xp 00000000 fd:00 131869 /lib/tls/libm-2.3.4.so
    003a9000-003ab000 rwxp 00020000 fd:00 131869 /lib/tls/libm-2.3.4.so
    0049e000-004ac000 r-xp 00000000 fd:00 131871 /lib/tls/libpthread-2.3.4.so
    004ac000-004ae000 rwxp 0000d000 fd:00 131871 /lib/tls/libpthread-2.3.4.so
    004ae000-004b0000 rwxp 004ae000 00:00 0
    00841000-00853000 r-xp 00000000 fd:00 131879 /lib/libnsl-2.3.4.so
    00853000-00855000 rwxp 00011000 fd:00 131879 /lib/libnsl-2.3.4.so
    00855000-00857000 rwxp 00855000 00:00 0
    00a22000-00a2a000 r-xp 00000000 fd:00 131855 /lib/tls/librt-2.3.4.so
    00a2a000-00a2c000 rwxp 00007000 fd:00 131855 /lib/tls/librt-2.3.4.so
    00a2c000-00a36000 rwxp 00a2c000 00:00 0
    06000000-0665d000 r-xp 00000000 00:24 27361688 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/i386/server/libjvm.so
    0665d000-066a1000 rwxp 0065c000 00:24 27361688 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/i386/server/libjvm.so
    066a1000-06ac3000 rwxp 066a1000 00:00 0
    08048000-08052000 r-xp 00000000 00:24 31654352 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/bin/java
    08052000-08053000 rwxp 00009000 00:24 31654352 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/bin/java
    08053000-09279000 rwxp 08053000 00:00 0
    30500000-3056b000 rwxp 30500000 00:00 0
    3056b000-30600000 ---p 3056b000 00:00 0
    30700000-308fc000 rwxp 30700000 00:00 0
    308fc000-30900000 ---p 308fc000 00:00 0
    30900000-309fa000 rwxp 30900000 00:00 0
    309fa000-30a00000 ---p 309fa000 00:00 0
    30a00000-30afe000 rwxp 30a00000 00:00 0
    30afe000-30b00000 ---p 30afe000 00:00 0
    30b00000-30bf9000 rwxp 30b00000 00:00 0
    30bf9000-30c00000 ---p 30bf9000 00:00 0
    30d00000-30dfc000 rwxp 30d00000 00:00 0
    30dfc000-30e00000 ---p 30dfc000 00:00 0
    30e00000-30ef9000 rwxp 30e00000 00:00 0
    30ef9000-30f00000 ---p 30ef9000 00:00 0
    30f00000-31100000 rwxp 30f00000 00:00 0
    31100000-311f9000 rwxp 31100000 00:00 0
    311f9000-31200000 ---p 311f9000 00:00 0
    31200000-31300000 rwxp 31200000 00:00 0
    31300000-313f9000 rwxp 31300000 00:00 0
    313f9000-31400000 ---p 313f9000 00:00 0
    31617000-3161b000 r-xs 000ca000 00:24 30949519 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/ext/localedata.jar
    3161b000-3161d000 r-xs 00001000 00:24 26886931 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/ext/dnsns.jar
    3161d000-31620000 r-xs 00034000 00:24 26886930 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/ext/sunpkcs11.jar
    31620000-31623000 r-xs 00027000 00:24 26886929 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/ext/sunjce_provider.jar
    31623000-3162c000 r-xs 000e2000 00:24 26984767 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/plugin.jar
    3162c000-3162d000 r-xs 00000000 00:24 27771418 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/management-agent.jar
    3162d000-31633000 r-xs 00091000 00:24 19644485 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/jsse.jar
    31633000-31636000 r-xs 00013000 00:24 27771410 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/jce.jar
    31636000-3163e000 r-xs 000a8000 00:24 26984768 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/javaws.jar
    3163e000-3164c000 r-xs 00286000 00:24 26984769 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/deploy.jar
    3164c000-3165a000 r-xs 00656000 00:24 19644480 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/charsets.jar
    3165a000-3165e000 r-xs 00023000 00:82 18533368 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.console_3.3.0.v20080529-1300.jar
    3165e000-31661000 r-xs 00016000 00:82 18533393 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.views.properties.tabbed_3.4.0.I20080527-2000.jar
    31661000-31664000 r-xs 00019000 00:82 18533382 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.navigator.resources_3.3.100.I20080606-1300.jar
    31664000-3167d000 r-xs 00122000 00:82 18533359 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.team.ui_3.4.0.I20080604.jar
    3167d000-31685000 r-xs 00056000 00:82 18533349 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.team.core_3.4.0.I20080605.jar
    31685000-31692000 r-xs 0009c000 00:82 18531292 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.compare_3.4.0.I20080604.jar
    31692000-31699000 r-xs 00047000 00:82 18533384 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.navigator_3.3.100.I20080606-1300.jar
    31699000-316a3000 r-xs 00065000 00:82 18533311 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ltk.ui.refactoring_3.4.0.v20080605-1800.jar
    316a3000-316aa000 r-xs 00047000 00:82 18533309 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ltk.core.refactoring_3.4.0.v20080603-2000.jar
    316aa000-316b4000 r-xs 00068000 00:82 18533344 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.search_3.4.0.v20080603-2000.jar
    316b4000-316b7000 r-xs 00019000 00:82 18532442 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.filebuffers_3.4.0.v20080603-2000.jar
    316b7000-316c3000 r-xs 0007b000 00:82 18533370 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.editors_3.4.0.v20080603-2000.jar
    316c3000-316cf000 r-xs 00081000 00:82 18533401 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.workbench.texteditor_3.4.0.v20080603-2000.jar
    316cf000-316d4000 r-xs 00037000 00:82 18533361 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.text_3.4.0.v20080605-1800.jar
    316d4000-316e7000 r-xs 000d4000 00:82 18533302 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.jface.text_3.4.0.v20080603-2000.jar
    316e7000-316ed000 r-xs 00043000 00:82 18533367 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.forms_3.3.100.v20080611.jar
    316ed000-316f6000 r-xs 00074000 00:82 18533413 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.update.ui_3.2.100.v20080318.jar
    316f6000-316f8000 r-xs 00004000 00:82 18533252 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.security.win32.x86_1.0.0.v20080529-1600.jar
    316f8000-316fb000 r-xs 00017000 00:82 18533253 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.security_1.0.0.v20080512-1800.jar
    316fb000-316fc000 r-xs 00006000 00:82 18532449 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.net.win32.x86_1.0.0.I20080521.jar
    316fc000-316fe000 r-xs 0000c000 00:82 18532450 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.net_1.1.0.I20080604.jar
    316fe000-316ff000 r-xs 00014000 00:82 18533408 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.update.core.win32_3.2.100.v20080107.jar
    316ff000-31708000 r-xs 0008b000 00:82 18533409 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.update.core_3.2.200.v20080515.jar
    31708000-3170a000 r-xs 00016000 00:82 18533405 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.update.configurator_3.2.200.v20080417.jar
    3170a000-3170d000 r-xs 00011000 00:82 18533395 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.views_3.3.0.I20080509-2000.jar
    3170d000-31716000 r-xs 0004c000 00:82 18532438 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.databinding_1.1.0.I20080527-2000.jar
    31716000-3171b000 r-xs 0002b000 00:82 18533299 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.jface.databinding_1.2.0.I20080515-2000a.jar
    3171b000-3171c000 r-xs 00001000 00:82 6292408 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20080509-2000/compatibility.jar
    3171c000-3175f000 r-xs 0037b000 00:82 18533402 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.workbench_3.4.0.I20080606-1300.jar
    3175f000-31762000 r-xs 00017000 00:82 18531295 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.commands_3.4.0.I20080509-2000.jar
    31762000-31775000 r-xs 000eb000 00:82 18533303 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.jface_3.4.0.I20080606-1300.jar
    31800000-318fd000 rwxp 31800000 00:00 0
    318fd000-31900000 ---p 318fd000 00:00 0
    31900000-319f1000 rwxp 31900000 00:00 0
    319f1000-31a00000 ---p 319f1000 00:00 0
    31a43000-31a46000 r-xs 0000d000 00:82 18533313 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.osgi.services_3.1.200.v20071203.jar
    31a46000-31a48000 r-xs 00012000 00:82 18532483 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.app_1.1.0.v20080421-2006.jar
    31a48000-31a4a000 r-xs 00004000 00:82 18532457 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.runtime.compatibility.auth_3.2.100.v20070502.jar
    31ac6000-31adc000 r-xs 001ef000 00:82 18533346 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.swt.win32.win32.x86_3.4.0.v3448f.jar
    31adc000-31add000 r-xs 00003000 00:82 18533347 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.swt_3.4.0.v3448f.jar
    31add000-31ae1000 r-xs 00020000 00:82 18533403 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui_3.4.0.I20080610-1200.jar
    31ae1000-31ae5000 r-xs 00031000 00:82 18533267 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.help_3.3.100.v20080610.jar
    31ae5000-31ae7000 r-xs 00003000 00:82 18532444 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.filesystem.win32.x86_1.1.0.v20080604-1400.jar
    31ae7000-31ae9000 r-xs 00009000 00:82 18532445 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.filesystem_1.2.0.v20080604-1400.jar
    31ae9000-31aec000 r-xs 00012000 00:82 18532440 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.expressions_3.4.0.v20080603-2000.jar
    31aec000-31aef000 r-xs 00018000 00:82 18531167 /folk/mpauna/surf_build/prebuilt/plugins/javax.servlet_2.4.0.v200806031604.jar
    31aef000-31af2000 r-xs 00013000 00:82 18532434 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.contenttype_3.3.0.v20080604-1400.jar
    31af2000-31af5000 r-xs 00017000 00:82 18533245 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.preferences_3.2.200.v20080421-2006.jar
    31af5000-31af9000 r-xs 00027000 00:82 18533247 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.registry_3.4.0.v20080516-0950.jar
    31af9000-31afa000 r-xs 00002000 00:82 7471513 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20080610/runtime_registry_compatibility.jar
    31afa000-31afd000 r-xs 00012000 00:82 18532447 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.jobs_3.4.0.v20080512.jar
    31afd000-31b00000 r-xs 00015000 00:82 18532485 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.common_3.4.0.v20080421-2006.jar
    31b00000-31bfd000 rwxp 31b00000 00:00 0
    31bfd000-31c00000 ---p 31bfd000 00:00 0
    31c00000-31cf8000 rwxp 31c00000 00:00 0
    31cf8000-31d00000 ---p 31cf8000 00:00 0
    31d9d000-31dac000 r-xs 000e4000 00:82 18533317 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.osgi_3.4.0.v20080605-1900.jar
    31dac000-31dae000 r-xs 0000f000 00:82 18532463 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.runtime_3.4.0.v20080512.jar
    31dae000-31db0000 r-xs 00006000 00:82 18532468 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.variables_3.2.100.v20080529-1300.jar
    31db0000-31db2000 r-xs 00016000 00:82 18531281 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ant.core_3.2.0.v20080529.jar
    31db2000-31db3000 r-xs 00003000 00:82 18532454 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.resources.win32.x86_3.4.0.v20071204.jar
    31db3000-31db6000 r-xs 0001b000 00:82 18532452 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.resources.compatibility_3.4.0.v20080604-1400.jar
    31db6000-31dc0000 r-xs 000a1000 00:82 18532455 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.resources_3.4.0.v20080604-1400.jar
    31dc0000-31dc1000 r-xs 00005000 00:82 18533397 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.win32_3.2.100.v20080408-0800.jar
    31dc1000-31de4000 r-xs 001ce000 00:82 18533377 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.ide_3.4.0.I20080606-1300.jar
    31de4000-31e00000 r-xs 00427000 00:82 18531162 /folk/mpauna/surf_build/prebuilt/plugins/com.ibm.icu_3.8.1.v20080530.jar
    31e00000-31ef5000 rwxp 31e00000 00:00 0
    31ef5000-31f00000 ---p 31ef5000 00:00 0
    31f5e000-31f61000 rwxp 31f5e000 00:00 0
    31f61000-31faf000 rwxp 31f61000 00:00 0
    31faf000-31fb2000 ---p 31faf000 00:00 0
    31fb2000-320f6000 rwxp 31fb2000 00:00 0
    320f6000-32100000 ---p 320f6000 00:00 0
    32100000-321f7000 rwxp 32100000 00:00 0
    321f7000-32200000 ---p 321f7000 00:00 0
    3223d000-32240000 rwxp 3223d000 00:00 0
    32240000-3228e000 rwxp 32240000 00:00 0
    3228e000-32290000 r-xs 0000c000 00:82 9585607 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/13/1/.cp/lib/remoteAnt.jar
    32290000-32292000 r-xs 00005000 00:82 9585606 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/13/1/.cp/lib/antrunner.jar
    32292000-32294000 r-xs 00007000 00:82 9421062 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/12/1/.cp/lib/antsupportlib.jar
    32294000-32295000 r-xs 00002000 00:82 9454313 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/117/1/.cp/ant_tasks/pde-ant.jar
    32295000-32297000 r-xs 0000b000 00:82 5865800 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.pde.build_3.4.0.v20080604/lib/pdebuild-ant.jar
    32297000-32299000 r-xs 0000d000 00:82 9782717 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/114/1/.cp/lib/apitooling-ant.jar
    32299000-3229b000 r-xs 00002000 00:82 9257572 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/93/1/.cp/jdtCompilerAdapter.jar
    3229b000-3229c000 r-xs 00000000 00:82 9175598 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/84/1/.cp/ant_tasks/helpbase-ant.jar
    3229c000-3229e000 r-xs 00001000 00:82 10125441 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/generator-ant.jar
    3229e000-3229f000 r-xs 00001000 00:82 9273441 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/59/1/.cp/ant_tasks/director-ant.jar
    3229f000-322a0000 r-xs 00001000 00:82 9471750 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/27/1/.cp/ant_tasks/resources-ant.jar
    322a0000-322ff000 r-xs 00b89000 00:24 31081220 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/lib/tools.jar
    322ff000-32300000 r-xs 00003000 00:82 6078712 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-weblogic.jar
    32300000-323fd000 rwxp 32300000 00:00 0
    323fd000-32400000 ---p 323fd000 00:00 0
    3240c000-3240f000 rwxp 3240c000 00:00 0
    3240f000-3245d000 rwxp 3240f000 00:00 0
    3245d000-3245e000 r-xs 00001000 00:82 6078711 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-trax.jar
    3245e000-3245f000 r-xs 00001000 00:82 6078709 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-swing.jar
    3245f000-32460000 r-xs 00000000 00:82 6078708 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-stylebook.jar
    32460000-32461000 r-xs 00008000 00:82 6078707 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-starteam.jar
    32461000-32469000 r-xs 00061000 00:82 6078706 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-nodeps.jar
    32469000-3246a000 r-xs 00002000 00:82 6078705 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-netrexx.jar
    3246a000-3246b000 r-xs 00002000 00:82 6078704 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-launcher.jar
    3246b000-3246d000 r-xs 00015000 00:82 6078703 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-junit.jar
    3246d000-3246f000 r-xs 00006000 00:82 6078702 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-jsch.jar
    3246f000-32470000 r-xs 00001000 00:82 6078701 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-jmf.jar
    32470000-32472000 r-xs 00001000 00:82 6078681 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-jdepend.jar
    32472000-32473000 r-xs 00001000 00:82 6078673 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-javamail.jar
    32473000-32475000 r-xs 00004000 00:82 6078671 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-jai.jar
    32475000-32477000 r-xs 0000a000 00:82 6078670 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-commons-net.jar
    32477000-32479000 r-xs 00000000 00:82 6078669 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-commons-logging.jar
    32479000-3247b000 r-xs 00000000 00:82 6078668 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-resolver.jar
    3247b000-3247c000 r-xs 00000000 00:82 6078667 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-regexp.jar
    3247c000-3247e000 r-xs 00008000 00:82 6078666 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-oro.jar
    3247e000-3247f000 r-xs 00000000 00:82 6078665 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-log4j.jar
    3247f000-32481000 r-xs 00000000 00:82 6078664 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-bsf.jar
    32481000-32483000 r-xs 00001000 00:82 6078663 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-bcel.jar
    32483000-32484000 r-xs 00001000 00:82 6078662 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-antlr.jar
    32484000-32498000 r-xs 00127000 00:82 6078713 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant.jar
    32498000-3249d000 r-xs 00037000 00:82 5751504 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.text_3.4.0.v20080605-1800.jar
    3249d000-324a4000 r-xs 00044000 00:82 5751279 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.debug.core_3.4.0.v20080612.jar
    324a4000-324a9000 r-xs 00041000 00:82 5751415 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.jdt.launching_3.4.0.v20080529-1300.jar
    324a9000-324ac000 ---p 324a9000 00:00 0
    324ac000-324fa000 rwxp 324ac000 00:00 0
    324fa000-324fb000 r-xs 00003000 00:82 5751469 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.swt_3.4.0.v3448f.jar
    324fb000-3250e000 r-xs 000eb000 00:82 5751425 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.jface_3.4.0.I20080606-1300.jar
    3250e000-3250f000 r-xs 00001000 00:82 5849359 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20080509-2000/compatibility.jar
    3250f000-32552000 r-xs 0037b000 00:82 5751561 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.ui.workbench_3.4.0.I20080606-1300.jar
    32552000-3255a000 r-xs 00056000 00:82 5751471 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.team.core_3.4.0.I20080605.jar
    3255a000-3255d000 ---p 3255a000 00:00 0
    3255d000-325ab000 rwxp 3255d000 00:00 0
    325ab000-325ac000 r-xs 0000c000 00:82 5751397 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.jdt.compiler.tool_1.0.100.v_874.jar
    325ac000-325af000 r-xs 00022000 00:82 5751395 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.jdt.compiler.apt_1.0.100.v20080513-1235.jar
    325af000-325b2000 ---p 325af000 00:00 0
    325b2000-32700000 rwxp 325b2000 00:00 0
    32748000-3274b000 r-xs 0001b000 00:82 5751263 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.resources.compatibility_3.4.0.v20080604-1400.jar
    3274b000-3274f000 r-xs 00031000 00:82 5751387 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.help_3.3.100.v20080610.jar
    3274f000-32753000 r-xs 00051000 00:82 5718665 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.pde.build_3.4.0.v20080604/pdebuild.jar
    32753000-32755000 r-xs 00006000 00:82 5751275 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.variables_3.2.100.v20080529-1300.jar
    32779000-3277c000 r-xs 00013000 00:82 5751148 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.contenttype_3.3.0.v20080604-1400.jar
    3277c000-3277f000 r-xs 0000d000 00:82 5751435 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.osgi.services_3.1.200.v20071203.jar
    3277f000-32781000 r-xs 0000c000 00:82 5751293 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.0.v20080529-1225.jar
    32781000-32783000 r-xs 00007000 00:82 5751295 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.frameworkadmin_1.0.0.v20080430-1750.jar
    32783000-32784000 r-xs 00004000 00:82 5751375 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_1.0.0.v20080427-2136.jar
    32784000-32785000 r-xs 00004000 00:82 5751332 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.0.v20080506-1939.jar
    32785000-32787000 r-xs 00009000 00:82 5751340 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.metadata_1.0.0.v20080514-1900.jar
    32787000-3278b000 r-xs 00019000 00:82 5751338 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.metadata.repository_1.0.0.v20080604.jar
    3278b000-3278d000 r-xs 00016000 00:82 5751324 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.director_1.0.0.v20080604.jar
    3278d000-32791000 r-xs 0001b000 00:82 5751326 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.engine_1.0.0.v20080522-1735.jar
    32791000-32792000 r-xs 00001000 00:82 5751328 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.exemplarysetup_1.0.0.v20080427-2136.jar
    32792000-32795000 r-xs 00010000 00:82 5751318 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.core_1.0.0.v20080530-1237.jar
    32795000-32796000 r-xs 00005000 00:82 5751323 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.0.v20080505-1850.jar
    32796000-32798000 r-xs 00008000 00:82 5751342 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.0.0.v20080611.jar
    32798000-3279b000 r-xs 00014000 00:82 5751271 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.runtime.compatibility_3.2.0.v20071008.jar
    3279b000-3279d000 r-xs 00012000 00:82 5751289 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.app_1.1.0.v20080421-2006.jar
    3279d000-327a0000 r-xs 00012000 00:82 5751258 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.jobs_3.4.0.v20080512.jar
    327a0000-327a3000 r-xs 00017000 00:82 5751356 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.preferences_3.2.200.v20080421-2006.jar
    327a3000-327a5000 r-xs 00004000 00:82 5751268 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.runtime.compatibility.auth_3.2.100.v20070502.jar
    327a5000-327a6000 r-xs 00002000 00:82 6014291 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20080610/runtime_registry_compatibility.jar
    327a6000-327aa000 r-xs 00027000 00:82 5751362 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.registry_3.4.0.v20080516-0950.jar
    327aa000-327ac000 r-xs 0000f000 00:82 5751273 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.runtime_3.4.0.v20080512.jar
    327ac000-327af000 r-xs 00015000 00:82 5751291 /folk

    Same problem in tomcat 5.0.19, not using Chiper but simply using the manager to stop and restart an application. It happen when I change a jar with the web app started and then I try to stop and restart it.
    normally reload works.
    It is not a deterministic behaviour.
    Stefano.

  • Error in method READ_CONTAINER_C when passing string to structure in Unicod

    Hi All,
    We are upgrading system from non-unicode to unicode.
    While passing a string to a structure ( MOVE RECEIVERS-RECEIVER TO RECEIVER_OBJECT, where
    RECEIVERS_RECEIVER = string
    RECEIVER_OBJECT = structure )
    following error is thrown :
    "RECEIVER_OBJECT" and "RECEIVERS-RECEIVER" are not mutually convertible in a unicode program.
    To resolve this error, I've used :
    CALL METHOD CL_ABAP_CONTAINER_UTILITIES=>READ_CONTAINER_C
    EXPORTING
    IM_VALUE = RECEIVERS-RECEIVER
    IMPORTING
    EX_CONTAINER = RECEIVER_OBJECT
    EXCEPTIONS
    ILLEGAL_PARAMETER_TYPE = 1
    others = 2
    But I observed the problem of inccorect values for numeric fields. For example suppose the string contains the value 'abc1234' and we use CL_ABAP_CONTAINER_UTILITIES=>READ_CONTAINER_C to transfer this string to a structure suppose, S1 with 2 fields namely field1(3) type c and field2 type i. then field1 gets the correct value i.e. 'abc' but field2 gets incorrect value and not '1234'. Can anyone provide the resolution? Prompt reply will be highly appreciated.
    Thanks.

    There is no error in this method. The 'problem' is caused by the fact that you are combining character type and Type I in your parameter which has generic type CSEQEUNCE.
    It is advised that you  'copy' your data component by component in Unicode.

  • Error on java runtime when issue command smc

    Hi all,
    Getting the below error when try to run Solaris Management Console.
    No suitable Java runtime found in any of the following directories:
    /usr/j2se/bin /usr /usr/j2se
    Please set the JAVA_HOME environment variable to point to a Java 2
    installation and run /usr/sadm/lib/smc/bin/smc again.
    Any specific path to set or installation incomplete? Thanks a lot.

    Hi Kal!
    Thank you for reply.
    I need to add -XX:MaxPermSize=256m as parameter.. for example
    java -XX:MaxPermSize=256m -cp C:\MyProject\myclasses....
    Is that right?
    Thanks
    Regards
    Giampy

  • Issue when passing table parameter to perform...

    Hello,
    I have a table parameter (S_KOSTL) defined as RSRANGE in a function module.
    Now when I am passing the table to an perform staeement as follows:
    PERFORM get_cost_center_info USING s_kostl
                                       CHANGING lt_output.
    Inside the form routine I am using following:
    FORM get_cost_center_info USING S_KOSTL TYPE RSRANGE
                                            CHANGING ct_output TYPE tt_output.
    LOOP AT it_ausp INTO ls_ausp WHERE atwrt IN s_kostl.
    ENDLOOP.
    But it says relational operator 'IN' not supported even if I defined S_KOSTL LIKE RSRANGE in function module tbale parameter.
    Please help.
    Regards,
    Rajesh.

    Since you are passing the Range which is a Table you have to pass it with the TABLES addition instead of the Using.
    Try like this:
    PERFORM get_cost_center_info TABLES s_kostl
    CHANGING lt_output.
    Inside the form routine I am using following:
    FORM get_cost_center_info TABLES S_KOSTL TYPE RSRANGE
    CHANGING ct_output TYPE tt_output.
    LOOP AT it_ausp INTO ls_ausp WHERE atwrt IN s_kostl.
    ENDLOOP.
    Regards,
    Naimesh Patel

Maybe you are looking for