SMA Class- Get_Instance_Infos

Hi All,
   For the Shared Memory Area, I am trying to use a method: Get_Instance_Infos. Maybe I'm missing it because it's late.. not sure.
   I get an error message saying:
   Program Zxxxxyyyyzzzz
   Formal Parameter "INFOS" is not a EXPORTING parameter; it is a RETURNING parameter.
Relevant code is:
Types: Inst_InfosT Type SHM_Inst_Infos.
Data: InstInfos type Standard table of Inst_InfosT.
aHnd = C_AreaClass=>attach_for_read( ).
Call Method aHnd->Get_Instance_Infos Exporting client = Syst-Mandt
                                                          Importing Infos = InstInfos.
  Maybe it's something obvious. I haven't worked with OO for a while now....
Thank You.....  Dan Perecky

Hello Daniel
In this case the solution is simple:
Types: Inst_InfosT Type SHM_Inst_Infos.
Data: InstInfos type Standard table of Inst_InfosT.
aHnd = C_AreaClass=>attach_for_read( ).
"Call Method aHnd->Get_Instance_Infos Exporting client = Syst-Mandt
"                                                          Importing Infos = InstInfos.
Call Method aHnd->Get_Instance_Infos
  Exporting
    client = Syst-Mandt
  receiving
    Infos = InstInfos.
" Or use this functional call:
InstInfos = aHnd->Get_Instance_Infos( syst-client ).
Regards
  Uwe

Similar Messages

  • Problem with vertical mapping

    I start with:
    <?xml version="1.0"?>
    <!DOCTYPE jdo PUBLIC "-//Sun Microsystems, Inc.//DTD Java Data Objects
    Metadata 1.0//EN" "http://java.sun.com/dtd/jdo_1_0.dtd">
    <jdo>
    <package name="com.amkor.request.sma">
    <class name="JBaseDTO">
    <extension vendor-name="kodo" key="jdbc-sequence-factory"
    value="JDOKeySequenceGeneratorFactory" />
    </class>
    <class name="A_DTO" persistence-capable-superclass="JBaseDTO">
    <extension vendor-name="kodo" key="jdbc-class-map"
    value="vertical">
         <extension vendor-name="kodo" key="table" value="REQUESTS"/>
         <extension vendor-name="kodo" key="ref-column.JDOID"
    value="PARENT_ID"/>
         </extension>
    </class>
    </package>
    </jdo>
    The mapping that is generated is via the mapping tool is:
    <?xml version="1.0" encoding="UTF-8"?>
    <mapping>
    <package name="com.amkor.request.sma">
    <class name="JBaseDTO">
    <jdbc-class-map type="base" pk-column="JDOID"
    table="ESUSER.JBASEDTO"/>
    <jdbc-version-ind type="version-number" column="JDOVERSION"/>
    <jdbc-class-ind type="in-class-name" column="JDOCLASS"/>
    <field name="id">
    <jdbc-field-map type="value" column="ID"/>
    </field>
    </class>
    <class name="A_DTO">
    <jdbc-class-map type="flat"/>
    <field name="name">
    <jdbc-field-map type="value" column="NAME"/>
    </field>
    </package>
    </mapping>
    The relavant parts are
    (JDO Meta-Data) <extension vendor-name="kodo" key="jdbc-class-map"
    value="vertical">
    (Mapping file) <jdbc-class-map type="flat"/>
    What am I doing wrong ??

    Marc Prud'hommeaux wrote:
    Marc- Im using the mapping tool to generate the mappings.
    From the JDO specified above. Which was taken from the vertical
    mapping example in your documentation.
    But why are you defining your O/R extensions in the .jdo file and
    then generating a .mapping file? Why don't you just use the "metadata"
    MappingFactory, and use that directly?Marc, I'm just going off of the examples that you have included in your
    documentation. Is this not the most accurate way to achieve the results
    I seek ?? I mean, unless I'm missing something. This IS YOUR
    documentation.
    Is it not. If there is a better way. Please point me to the appropriate
    docs.
    BTW. I work for a company
    that has a licensed product. Who do I need to contact about this
    issue.
    If you have a support and maintenance contract, you can contact support
    channels at: [email protected]
    If you have any questions about your maintenance and support status,
    contact: [email protected]
    In article <[email protected]>, Kevin J Citron wrote:
    Marc Prud'hommeaux wrote:
    Kevin-
    How are you "generating the mapping"? If you want to define your
    mappings in the .jdo file, why not just use the "metadata"
    MappingFactory?
    In article <[email protected]>, Kevin J Citron wrote:
    I start with:
    <?xml version="1.0"?>
    <!DOCTYPE jdo PUBLIC "-//Sun Microsystems, Inc.//DTD Java Data Objects
    Metadata 1.0//EN" "http://java.sun.com/dtd/jdo_1_0.dtd">
    <jdo>
    <package name="com.amkor.request.sma">
    <class name="JBaseDTO">
    <extension vendor-name="kodo" key="jdbc-sequence-factory"
    value="JDOKeySequenceGeneratorFactory" />
    </class>
    <class name="A_DTO" persistence-capable-superclass="JBaseDTO">
    <extension vendor-name="kodo" key="jdbc-class-map"
    value="vertical">
         <extension vendor-name="kodo" key="table" value="REQUESTS"/>
         <extension vendor-name="kodo" key="ref-column.JDOID"
    value="PARENT_ID"/>
         </extension>
    </class>
    </package>
    </jdo>
    The mapping that is generated is via the mapping tool is:
    <?xml version="1.0" encoding="UTF-8"?>
    <mapping>
    <package name="com.amkor.request.sma">
    <class name="JBaseDTO">
    <jdbc-class-map type="base" pk-column="JDOID"
    table="ESUSER.JBASEDTO"/>
    <jdbc-version-ind type="version-number"
    column="JDOVERSION"/>
    <jdbc-class-ind type="in-class-name" column="JDOCLASS"/>
    <field name="id">
    <jdbc-field-map type="value" column="ID"/>
    </field>
    </class>
    <class name="A_DTO">
    <jdbc-class-map type="flat"/>
    <field name="name">
    <jdbc-field-map type="value" column="NAME"/>
    </field>
    </package>
    </mapping>
    The relavant parts are
    (JDO Meta-Data) <extension vendor-name="kodo" key="jdbc-class-map"
    value="vertical">
    (Mapping file) <jdbc-class-map type="flat"/>
    What am I doing wrong ??
    Marc- Im using the mapping tool to generate the mappings.
    From the JDO specified above. Which was taken from the vertical
    mapping example in your documentation. BTW. I work for a company
    that has a licensed product. Who do I need to contact about this
    issue.
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Tomcat JVM is crashing frequently at "CompilerThread1 daemon"   thread

    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xb75d9837, pid=6351, tid=484600720
    # JRE version: 6.0_18-b07
    # Java VM: Java HotSpot(TM) Server VM (16.0-b13 mixed mode linux-x86 )
    # Problematic frame:
    # V [libjvm.so+0x214837]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x1d6f4800): JavaThread "CompilerThread1" daemon [_thread_in_native, id=6408, stack(0x1cda6000,0x1ce27000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x00000000
    Registers:
    EAX=0x00000000, EBX=0xb7b1cde0, ECX=0x00000000, EDX=0x0aee9594
    ESP=0x1ce24d30, EBP=0x1ce24d98, ESI=0x0b2eb760, EDI=0x0b2eb72c
    EIP=0xb75d9837, CR2=0x00000000, EFLAGS=0x00010202
    Top of Stack: (sp=0x1ce24d30)
    0x1ce24d30: 0aee9594 00000001 1ce251e0 1ce251e0
    0x1ce24d40: 00000008 00042a18 0b10a09c b7723cc1
    0x1ce24d50: 00000000 00000000 0b093dc8 00000002
    0x1ce24d60: ffffffff 00000002 00000000 090dd1e0
    0x1ce24d70: 00000001 0aee9594 00000006 0b10a094
    0x1ce24d80: 0000009b 1ce2524c 01000e07 b7b1cde0
    0x1ce24d90: 00000e07 1ce251e0 1ce24ef8 b75d8d46
    0x1ce24da0: 1ce251e0 00000001 b7b25a20 b7b25a20
    Instructions: (pc=0xb75d9837)
    0xb75d9827: c2 89 57 18 8b 55 dc 8b 02 52 ff 50 40 89 45 d0
    0xb75d9837: 8b 00 8b 4f 34 21 c1 89 4f 34 8b 55 d0 8b 4e 04
    Stack: [0x1cda6000,0x1ce27000], sp=0x1ce24d30, free space=1fb1ce246c0k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x214837]
    V [libjvm.so+0x213d46]
    V [libjvm.so+0x26eb76]
    V [libjvm.so+0x26b185]
    V [libjvm.so+0x2035f7]
    V [libjvm.so+0x273a1c]
    V [libjvm.so+0x273329]
    V [libjvm.so+0x652476]
    V [libjvm.so+0x64bb0e]
    V [libjvm.so+0x55de9e]
    C [libpthread.so.0+0x55ab]
    Current CompileTask:
    C2: 44% ! com.misys.alm.commons.util.TrackerUtil.updateChildArtifact(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;[Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;)V @ 432 (1034 bytes)
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x0a541c00 JavaThread "http-9980-3" daemon [_thread_in_native, id=16245, stack(0x1c8af000,0x1c900000)]
    0x09d76400 JavaThread "http-9980-2" daemon [_thread_in_Java, id=8488, stack(0x1b228000,0x1b279000)]
    0x093cac00 JavaThread "http-9980-1" daemon [_thread_in_Java, id=7668, stack(0x1b35e000,0x1b3af000)]
    0x0a10bc00 JavaThread "TP-Monitor" daemon [_thread_blocked, id=6918, stack(0x1b3af000,0x1b400000)]
    0x0a265c00 JavaThread "TP-Processor4" daemon [_thread_in_native, id=6917, stack(0x1b70d000,0x1b75e000)]
    0x0a265800 JavaThread "TP-Processor3" daemon [_thread_blocked, id=6916, stack(0x1b75e000,0x1b7af000)]
    0x0a7ddc00 JavaThread "TP-Processor2" daemon [_thread_blocked, id=6915, stack(0x1b7af000,0x1b800000)]
    0x0a2b1400 JavaThread "TP-Processor1" daemon [_thread_blocked, id=6914, stack(0x1b95e000,0x1b9af000)]
    0x0a2ac000 JavaThread "http-9980-Acceptor-0" daemon [_thread_in_native, id=6908, stack(0x1c202000,0x1c253000)]
    0x0a473400 JavaThread "ContainerBackgroundProcessor[StandardEngine[Catalina]]" daemon [_thread_blocked, id=6907, stack(0x1b9af000,0x1ba00000)]
    0x1b408400 JavaThread "Timer-1" daemon [_thread_blocked, id=6791, stack(0x1b90a000,0x1b95b000)]
    0x09e7d000 JavaThread "Timer-0" daemon [_thread_blocked, id=6641, stack(0x1c615000,0x1c666000)]
    0x1ca8fc00 JavaThread "GC Daemon" daemon [_thread_blocked, id=6439, stack(0x1cc20000,0x1cc71000)]
    0x1d6f5400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=6409, stack(0x1cd55000,0x1cda6000)]
    =>0x1d6f4800 JavaThread "CompilerThread1" daemon [_thread_in_native, id=6408, stack(0x1cda6000,0x1ce27000)]
    0x1d6f3800 JavaThread "CompilerThread0" daemon [_thread_blocked, id=6407, stack(0x1ce27000,0x1cea8000)]
    0x1d6f2c00 JavaThread "YJPAgent-OOMESnapshotDetector" daemon [_thread_in_native, id=6406, stack(0x1cea8000,0x1cef9000)]
    0x1d6f1c00 JavaThread "YJPAgent-CPUSampler" daemon [_thread_blocked, id=6405, stack(0x1d148000,0x1d199000)]
    0x1d6e8000 JavaThread "YJPAgent-RequestListener" daemon [_thread_in_native, id=6396, stack(0x1d82c000,0x1d87d000)]
    0x1d6e7c00 JavaThread "YJPAgent-Telemetry" daemon [_thread_blocked, id=6395, stack(0x1d199000,0x1d1ea000)]
    0x1d9db400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6390, stack(0x1d8af000,0x1d900000)]
    0x1d9f0400 JavaThread "Surrogate Locker Thread (CMS)" daemon [_thread_blocked, id=6389, stack(0x1da0c000,0x1da5d000)]
    0x1d9c3800 JavaThread "YJPAgent-Process-Exit-Listener" daemon [_thread_blocked, id=6388, stack(0x1da5d000,0x1daae000)]
    0x0917bc00 JavaThread "Finalizer" daemon [_thread_blocked, id=6367, stack(0x1dcae000,0x1dcff000)]
    0x0917e000 JavaThread "Reference Handler" daemon [_thread_blocked, id=6366, stack(0x1dcff000,0x1dd50000)]
    0x08f25000 JavaThread "main" [_thread_in_native, id=6352, stack(0xb7374000,0xb73c5000)]
    Other Threads:
    0x09155400 VMThread [stack: 0x1dd56000,0x1ddd7000] [id=6365]
    0x1d6f7800 WatcherThread [stack: 0x1ccd4000,0x1cd55000] [id=6410]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    par new generation total 97728K, used 61750K [0x23290000, 0x29250000, 0x2b290000)
    eden space 97408K, 63% used [0x23290000, 0x26edd860, 0x291b0000)
    from space 320K, 0% used [0x29200000, 0x29200000, 0x29250000)
    to space 320K, 0% used [0x291b0000, 0x291b0000, 0x29200000)
    concurrent mark-sweep generation total 686096K, used 413235K [0x2b290000, 0x55094000, 0xa3290000)
    concurrent-mark-sweep perm gen total 61160K, used 38713K [0xa3290000, 0xa6e4a000, 0xb3290000)
    Dynamic libraries:
    002c2000-002dc000 r-xp 00000000 fd:00 2261857 /lib/ld-2.5.so
    002dc000-002dd000 r-xp 00019000 fd:00 2261857 /lib/ld-2.5.so
    002dd000-002de000 rwxp 0001a000 fd:00 2261857 /lib/ld-2.5.so
    002e0000-0041f000 r-xp 00000000 fd:00 2261877 /lib/libc-2.5.so
    0041f000-00420000 ---p 0013f000 fd:00 2261877 /lib/libc-2.5.so
    00420000-00422000 r-xp 0013f000 fd:00 2261877 /lib/libc-2.5.so
    00422000-00423000 rwxp 00141000 fd:00 2261877 /lib/libc-2.5.so
    00423000-00426000 rwxp 00423000 00:00 0
    00428000-0044d000 r-xp 00000000 fd:00 2261894 /lib/libm-2.5.so
    0044d000-0044e000 r-xp 00024000 fd:00 2261894 /lib/libm-2.5.so
    0044e000-0044f000 rwxp 00025000 fd:00 2261894 /lib/libm-2.5.so
    00451000-00453000 r-xp 00000000 fd:00 2261885 /lib/libdl-2.5.so
    00453000-00454000 r-xp 00001000 fd:00 2261885 /lib/libdl-2.5.so
    00454000-00455000 rwxp 00002000 fd:00 2261885 /lib/libdl-2.5.so
    00457000-0046a000 r-xp 00000000 fd:00 2261880 /lib/libpthread-2.5.so
    0046a000-0046b000 r-xp 00013000 fd:00 2261880 /lib/libpthread-2.5.so
    0046b000-0046c000 rwxp 00014000 fd:00 2261880 /lib/libpthread-2.5.so
    0046c000-0046e000 rwxp 0046c000 00:00 0
    00485000-0048c000 r-xp 00000000 fd:00 2261881 /lib/librt-2.5.so
    0048c000-0048d000 r-xp 00006000 fd:00 2261881 /lib/librt-2.5.so
    0048d000-0048e000 rwxp 00007000 fd:00 2261881 /lib/librt-2.5.so
    006e5000-006f8000 r-xp 00000000 fd:00 2261884 /lib/libnsl-2.5.so
    006f8000-006f9000 r-xp 00012000 fd:00 2261884 /lib/libnsl-2.5.so
    006f9000-006fa000 rwxp 00013000 fd:00 2261884 /lib/libnsl-2.5.so
    006fa000-006fc000 rwxp 006fa000 00:00 0
    08048000-08052000 r-xp 00000000 fd:00 5439579 /usr/java/jdk1.6.0_18/bin/java
    08052000-08053000 rwxp 00009000 fd:00 5439579 /usr/java/jdk1.6.0_18/bin/java
    08ed3000-0b7c1000 rwxp 08ed3000 00:00 0 [heap]
    19cf5000-19ffe000 rwxp 19cf5000 00:00 0
    1c253000-1c261000 r-xs 000b1000 fd:00 9994476 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis27801552943659080349sf_soap50_sdk.jar
    1c261000-1c262000 r-xs 00004000 fd:00 9994475 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis26363007992229894723saaj.jar
    1c262000-1c268000 r-xs 0004a000 fd:00 9994474 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis27755368179470462176mail.jar
    1c268000-1c26f000 r-xs 00059000 fd:00 9994473 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis26508601577286648523log4j-1.2.15.jar
    1c26f000-1c271000 r-xs 00006000 fd:00 9994472 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis25489544076553511072jaxrpc.jar
    1c271000-1c273000 r-xs 00008000 fd:00 9994471 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis21136271980145934396commons-logging.jar
    1c273000-1c276000 r-xs 0000f000 fd:00 9994470 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22003270640467629775commons-discovery.jar
    1c276000-1c28a000 r-xs 00173000 fd:00 9994469 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23053891385948624420axis.jar
    1c28a000-1c28c000 r-xs 0000c000 fd:00 9994468 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis27411805959205169693activation.jar
    1c28c000-1c28e000 r-xs 002e6000 fd:00 9994467 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22783883274223008829CSFEESBService.aar
    1c28e000-1c29c000 r-xs 000b1000 fd:00 9994466 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23371351321622465627sf_soap50_sdk.jar
    1c29c000-1c29d000 r-xs 00004000 fd:00 9994465 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22288820831745009728saaj.jar
    1c29d000-1c2a3000 r-xs 0004a000 fd:00 9994464 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23706995569129484465mail.jar
    1c2a3000-1c2aa000 r-xs 00059000 fd:00 9994463 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis28879361364145998495log4j-1.2.15.jar
    1c2aa000-1c2ac000 r-xs 00006000 fd:00 9994462 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22742112490708660545jaxrpc.jar
    1c2ac000-1c2ae000 r-xs 00008000 fd:00 9994461 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22699559983216956128commons-logging.jar
    1c2ae000-1c2b1000 r-xs 0000f000 fd:00 9994460 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis24107377805555793351commons-discovery.jar
    1c2b1000-1c2c5000 r-xs 00173000 fd:00 5475030 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis26084084880868286433axis.jar
    1c2c5000-1c2c7000 r-xs 0000c000 fd:00 5475029 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23162679860383273671activation.jar
    1c2c7000-1c2c8000 r-xs 002ee000 fd:00 5475028 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis28330942878102394679CSFEProxyWeb.aar
    1c2c8000-1c2d4000 r-xs 00091000 fd:00 5475027 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23807116137289355005sf_soap50_sdk.jar
    1c2d4000-1c2d5000 r-xs 00004000 fd:00 5475026 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis28396723900002705845saaj.jar
    1c2d5000-1c2db000 r-xs 0004a000 fd:00 5475025 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis28117391532793006319mail.jar
    1c2db000-1c2e2000 r-xs 00059000 fd:00 5475024 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis25530869754076118566log4j-1.2.15.jar
    1c2e2000-1c2e4000 r-xs 00006000 fd:00 5475023 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23209996884536823590jaxrpc.jar
    1c2e4000-1c2e6000 r-xs 00008000 fd:00 5475022 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis24411724148291575859commons-logging.jar
    1c2e6000-1c2e9000 r-xs 0000f000 fd:00 5473459 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22989469508921805234commons-discovery.jar
    1c2e9000-1c2fd000 r-xs 00173000 fd:00 5473427 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23003225943313702190axis.jar
    1c2fd000-1c2ff000 r-xs 0000c000 fd:00 5473426 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis26910392698666596723activation.jar
    1c2ff000-1c300000 r-xs 002ca000 fd:00 5473425 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis24796406229517899618CollabnetQueryWeb.aar
    1c300000-1c4f9000 rwxp 1c300000 00:00 0
    1c4f9000-1c500000 ---p 1c4f9000 00:00 0
    1c500000-1c5fe000 rwxp 1c500000 00:00 0
    1c5fe000-1c600000 ---p 1c5fe000 00:00 0
    1c611000-1c613000 r-xs 00007000 fd:00 5473422 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis25512313672529203744mex-1.5-impl.jar
    1c613000-1c615000 r-xs 00007000 fd:00 5473418 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis29121706716215621128mex-1.5.mar
    1c615000-1c618000 ---p 1c615000 00:00 0
    1c618000-1c666000 rwxp 1c618000 00:00 0
    1c666000-1c667000 r-xs 00002000 fd:00 5473421 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis26954598024559529263axis2-jaxws-mar-1.5.mar
    1c667000-1c668000 r-xs 00005000 fd:00 5473420 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis21550234674497936367axis2-scripting-1.5.mar
    1c668000-1c66a000 r-xs 00002000 fd:00 5473419 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23565044233648453074ping-1.5.mar
    1c66a000-1c66b000 r-xs 00003000 fd:00 5473417 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis2274951722267417783mtompolicy-1.5.mar
    1c66b000-1c66d000 r-xs 00005000 fd:00 5473416 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23407811500865596858addressing-1.5.mar
    1c66d000-1c674000 r-xs 00111000 fd:00 5441699 /usr/java/jdk1.6.0_18/jre/lib/resources.jar
    1c674000-1c677000 r-xs 00018000 fd:00 8685239 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xom-1.0.jar
    1c677000-1c6b4000 r-xs 0024f000 fd:00 8685235 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xmlbeans-2.3.0.jar
    1c6b4000-1c6b6000 r-xs 00013000 fd:00 8685233 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xml-resolver-1.2.jar
    1c6b6000-1c6be000 r-xs 00028000 fd:00 8685231 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xml-apis-1.3.02.jar
    1c6be000-1c6d2000 r-xs 000e3000 fd:00 8685229 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xercesImpl-2.6.2.jar
    1c6d2000-1c6f0000 r-xs 0027d000 fd:00 8685227 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xalan-2.7.0.jar
    1c6f0000-1c6f6000 r-xs 00079000 fd:00 8685225 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/wstx-asl-3.2.4.jar
    1c6f6000-1c6fb000 r-xs 00020000 fd:00 8685223 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/wsdl4j-1.6.2.jar
    1c6fb000-1c700000 r-xs 00033000 fd:00 8685221 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/woden-impl-dom-1.0M8.jar
    1c700000-1c800000 rwxp 1c700000 00:00 0
    1c800000-1c83b000 r-xs 002c1000 fd:00 8685200 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jaxb-xjc-2.1.7.jar
    1c85e000-1c861000 ---p 1c85e000 00:00 0
    1c861000-1c8af000 rwxp 1c861000 00:00 0
    1c8af000-1c8b2000 ---p 1c8af000 00:00 0
    1c8b2000-1cafa000 rwxp 1c8b2000 00:00 0
    1cafa000-1cb00000 ---p 1cafa000 00:00 0
    1cb00000-1cbfd000 rwxp 1cb00000 00:00 0
    1cbfd000-1cc00000 ---p 1cbfd000 00:00 0
    1cc01000-1cc03000 r-xs 00008000 fd:00 5473415 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis27232555104038487252soapmonitor-1.5.mar
    1cc03000-1cc08000 r-xs 00020000 fd:00 8685219 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/woden-api-1.0M8.jar
    1cc08000-1cc09000 r-xs 00007000 fd:00 8685218 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/soapmonitor-1.5.jar
    1cc09000-1cc0b000 r-xs 00007000 fd:00 8685216 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/neethi-2.0.4.jar
    1cc0b000-1cc11000 r-xs 00059000 fd:00 8685213 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/mail-1.4.jar
    1cc11000-1cc18000 r-xs 00059000 fd:00 8685211 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/log4j-1.2.15.jar
    1cc18000-1cc1b000 r-xs 0001d000 fd:00 8685209 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jibx-run-1.2.1.jar
    1cc1b000-1cc20000 r-xs 0005f000 fd:00 8685207 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jibx-bind-1.2.1.jar
    1cc20000-1cc23000 ---p 1cc20000 00:00 0
    1cc23000-1cc71000 rwxp 1cc23000 00:00 0
    1cc71000-1cc73000 r-xs 00007000 fd:00 8685215 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/mex-1.5-impl.jar
    1cc73000-1cc74000 r-xs 00006000 fd:00 8685166 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-xmlbeans-1.5.jar
    1cc74000-1cc75000 r-xs 00002000 fd:00 8685165 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-transport-local-1.5.jar
    1cc75000-1cc78000 r-xs 00021000 fd:00 8685164 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-transport-http-1.5.jar
    1cc78000-1cc79000 r-xs 00002000 fd:00 8685163 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-spring-1.5.jar
    1cc79000-1cc7b000 r-xs 00014000 fd:00 8685162 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-saaj-1.5.jar
    1cc7b000-1cc7d000 r-xs 00002000 fd:00 8685161 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-mtompolicy-1.5.jar
    1cc7d000-1cc85000 r-xs 00058000 fd:00 8685160 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-metadata-1.5.jar
    1cc85000-1cc93000 r-xs 000e6000 fd:00 8685158 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-kernel-1.5.jar
    1cc93000-1cc95000 r-xs 00003000 fd:00 8685157 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-json-1.5.jar
    1cc95000-1cc96000 r-xs 00008000 fd:00 8685156 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-jibx-1.5.jar
    1cc96000-1cca3000 r-xs 00091000 fd:00 8685155 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-jaxws-1.5.jar
    1cca3000-1cca5000 r-xs 00005000 fd:00 8685154 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-jaxbri-1.5.jar
    1cca5000-1cca7000 r-xs 00005000 fd:00 8685153 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-java2wsdl-1.5.jar
    1cca7000-1cca9000 r-xs 00010000 fd:00 8685152 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-fastinfoset-1.5.jar
    1cca9000-1ccab000 r-xs 00021000 fd:00 8685151 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-corba-1.5.jar
    1ccab000-1ccaf000 r-xs 00038000 fd:00 8685150 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-codegen-1.5.jar
    1ccaf000-1ccb1000 r-xs 00028000 fd:00 8685149 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-adb-codegen-1.5.jar
    1ccb1000-1ccbc000 r-xs 000b3000 fd:00 8685148 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-adb-1.5.jar
    1ccbc000-1ccc0000 r-xs 0001d000 fd:00 8685146 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axiom-impl-1.2.8.jar
    1ccc0000-1ccc3000 r-xs 00025000 fd:00 8685144 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axiom-dom-1.2.8.jar
    1ccc3000-1ccc9000 r-xs 00037000 fd:00 8685142 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axiom-api-1.2.8.jar
    1ccc9000-1ccce000 r-xs 00068000 fd:00 8685141 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/antlr-2.7.7.jar
    1ccce000-1ccd0000 r-xs 0000e000 fd:00 8685138 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/activation-1.1.jar
    1ccd0000-1ccd4000 r-xs 0001f000 fd:00 8685237 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/XmlSchema-1.4.3.jar
    1ccd4000-1ccd5000 ---p 1ccd4000 00:00 0
    1ccd5000-1cd55000 rwxp 1ccd5000 00:00 0
    000000 00:00 0
    1d0ff000-1d100000 ---p 1d0ff000 00:00 0
    1d100000-1d103000 r-xs 00023000 fd:00 8685204 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jdom-1.0.jar
    1d103000-1d109000 r-xs 00032000 fd:00 8685202 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jaxen-1.1.1.jar
    1d109000-1d11b000 r-xs 000bf000 fd:00 8685198 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jaxb-impl-2.1.7.jar
    1d11b000-1d11e000 r-xs 00013000 fd:00 8685196 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jaxb-api-2.1.jar
    1d11e000-1d130000 r-xs 00245000 fd:00 8685194 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/icu4j-2.6.1.jar
    1d130000-1d135000 r-xs 00026000 fd:00 8685192 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/httpcore-4.0.jar
    1d135000-1d139000 r-xs 00039000 fd:00 5472277 /usr/local/tomcat/lib/tomcat-dbcp.jar
    1d139000-1d148000 r-xs 00114000 fd:00 5472282 /usr/local/tomcat/lib/catalina.jar
    1d148000-1d14b000 ---p 1d148000 00:00 0
    1d14b000-1d199000 rwxp 1d14b000 00:00 0
    1d199000-1d19c000 ---p 1d199000 00:00 0
    1d19c000-1d5ec000 rwxp 1d19c000 00:00 0
    1d5ec000-1d5ff000 r-xp 00000000 fd:00 5441669 /usr/java/jdk1.6.0_18/jre/lib/i386/libnet.so
    1d5ff000-1d600000 rwxp 00013000 fd:00 5441669 /usr/java/jdk1.6.0_18/jre/lib/i386/libnet.so
    1d600000-1d6fb000 rwxp 1d600000 00:00 0
    1d6fb000-1d700000 ---p 1d6fb000 00:00 0
    1d700000-1d800000 rwxp 1d700000 00:00 0
    1d800000-1d80b000 r-xs 000af000 fd:00 5472276 /usr/local/tomcat/lib/tomcat-coyote.jar
    1d80b000-1d80d000 r-xs 0000d000 fd:00 5472281 /usr/local/tomcat/lib/commons-logging-1.1.1.jar
    1d80d000-1d80f000 r-xs 0000c000 fd:00 5472285 /usr/local/tomcat/lib/tomcat-i18n-ja.jar
    1d80f000-1d81b000 r-xs 0014c000 fd:00 5472275 /usr/local/tomcat/lib/jasper-jdt.jar
    1d81b000-1d81d000 r-xs 00011000 fd:00 5472287 /usr/local/tomcat/lib/jsp-api.jar
    1d81d000-1d81f000 r-xs 0000c000 fd:00 5472280 /usr/local/tomcat/lib/catalina-ant.jar
    1d81f000-1d822000 r-xs 00018000 fd:00 5472279 /usr/local/tomcat/lib/jasper-el.jar
    1d822000-1d824000 r-xs 0000b000 fd:00 5472286 /usr/local/tomcat/lib/tomcat-i18n-fr.jar
    1d824000-1d827000 r-xs 0000f000 fd:00 5472278 /usr/local/tomcat/lib/tomcat-i18n-es.jar
    1d827000-1d82c000 r-xs 00035000 fd:00 5472288 /usr/local/tomcat/lib/catalina-tribes.jar
    1d82c000-1d82f000 ---p 1d82c000 00:00 0
    1d82f000-1d87d000 rwxp 1d82f000 00:00 0
    1d87d000-1d87e000 r-xs 00000000 fd:00 5473424 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis24685980876675038614version-1.5.aar
    1d87e000-1d880000 r-xs 0000c000 fd:00 8685205 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jettison-1.0-RC2.jar
    1d880000-1d881000 r-xs 00003000 fd:00 8685191 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-ws-metadata_2.0_spec-1.1.2.jar
    1d881000-1d883000 r-xs 00006000 fd:00 8685189 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-stax-api_1.0_spec-1.0.1.jar
    1d883000-1d885000 r-xs 00006000 fd:00 8685187 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-saaj_1.3_spec-1.0.1.jar
    1d885000-1d886000 r-xs 00003000 fd:00 8685185 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-jta_1.1_spec-1.1.jar
    1d886000-1d888000 r-xs 0000a000 fd:00 8685184 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-jaxws_2.1_spec-1.0.jar
    1d888000-1d88d000 r-xs 0002e000 fd:00 8685182 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-javamail_1.4_spec-1.6.jar
    1d88d000-1d88e000 r-xs 00002000 fd:00 8685181 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-annotation_1.0_spec-1.1.jar
    1d88e000-1d88f000 r-xs 00008000 fd:00 8685179 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-activation_1.1_spec-1.0.1.jar
    1d88f000-1d894000 r-xs 00048000 fd:00 8685178 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/dom4j-1.6.1.jar
    1d894000-1d896000 r-xs 0000d000 fd:00 8685176 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/commons-logging-1.1.1.jar
    1d896000-1d899000 r-xs 00018000 fd:00 8685174 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/commons-io-1.4.jar
    1d899000-1d89f000 r-xs 00045000 fd:00 8685172 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/commons-httpclient-3.1.jar
    1d89f000-1d8a1000 r-xs 0000b000 fd:00 8685170 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/commons-fileupload-1.2.jar
    1d8a1000-1d8a3000 r-xs 0000a000 fd:00 8685168 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/commons-codec-1.3.jar
    1d8a3000-1d8ac000 r-xs 00075000 fd:00 8685167 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/bcel-5.1.jar
    1d8ac000-1d8af000 r-xs 000cb000 fd:00 5441483 /usr/java/jdk1.6.0_18/jre/lib/ext/localedata.jar
    1d8af000-1d8b2000 ---p 1d8af000 00:00 0
    1d8b2000-1da00000 rwxp 1d8b2000 00:00 0
    1da00000-1da01000 r-xs 00007000 fd:00 5472283 /usr/local/tomcat/lib/el-api.jar
    1da01000-1da02000 r-xs 00003000 fd:00 5472273 /usr/local/tomcat/lib/annotations-api.jar
    1da02000-1da04000 r-xs 0001e000 fd:00 5472274 /usr/local/tomcat/lib/catalina-ha.jar
    1da04000-1da0c000 r-xs 00079000 fd:00 5472284 /usr/local/tomcat/lib/jasper.jar
    1 [stack]
    VM Arguments:
    jvm_args: -Djava.util.logging.config.file=/usr/local/tomcat/conf/logging.properties -Dmisys.app.link.config=/usr/local/tomcat/webapps/reports_utilities/config -Dmisys.alm.properties=/usr/local/misysalm/conf -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Xms256m -Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/usr/local/tomcat/logs -verbose:gc -XX:+PrintGCTimeStamps -XX:+PrintGCDetails -XX:MaxPermSize=256m -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:+CMSIncrementalPacing -XX:CMSIncrementalDutyCycleMin=0 -XX:CMSIncrementalDutyCycle=10 -XX:MaxTenuringThreshold=0 -XX:SurvivorRatio=256 -XX:CMSInitiatingOccupancyFraction=60 -XX:+DisableExplicitGC -Dsun.rmi.dgc.client.gcInterval=600000 -agentpath:/usr/local/install/yjp-9.5.4/bin/linux-x86-32/libyjpagent.so -Djava.endorsed.dirs=/usr/local/tomcat/endorsed -Dcatalina.base=/usr/local/tomcat -Dcatalina.home=/usr/local/tomcat -Djava.io.tmpdir=/usr/local/tomcat/temp
    java_command: org.apache.catalina.startup.Bootstrap start
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/usr/java/jdk1.6.0_18
    PATH=/usr/java/jdk1.6.0_18/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
    LD_LIBRARY_PATH=/usr/java/jdk1.6.0_18/jre/lib/i386/server:/usr/java/jdk1.6.0_18/jre/lib/i386:/usr/java/jdk1.6.0_18/jre/../lib/i386
    SHELL=/bin/bash
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x68c0e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGBUS: [libjvm.so+0x68c0e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGFPE: [libjvm.so+0x55b780], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGPIPE: [libjvm.so+0x55b780], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGXFSZ: [libjvm.so+0x55b780], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGILL: [libjvm.so+0x55b780], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x55e3c0], sa_mask[0]=0x00000000, sa_flags=0x10000004
    SIGHUP: [libjvm.so+0x55e0f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGINT: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGTERM: [libjvm.so+0x55e0f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGQUIT: [libjvm.so+0x55e0f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    --------------- S Y S T E M ---------------
    OS:Red Hat Enterprise Linux Server release 5.4 (Tikanga)
    uname:Linux 2.6.18-164.el5PAE #1 SMP Tue Aug 18 15:59:11 EDT 2009 i686
    libc:glibc 2.5 NPTL 2.5
    rlimit: STACK 10240k, CORE 0k, NPROC 425984, NOFILE 150000, AS infinity
    load average:2.06 2.04 2.18
    CPU:total 8 (4 cores per cpu, 1 threads per core) family 6 model 23 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1
    Memory: 4k page, physical 24811548k(15279380k free), swap 2031608k(2031504k free)
    vm_info: Java HotSpot(TM) Server VM (16.0-b13) for linux-x86 JRE (1.6.0_18-b07), built on Dec 17 2009 13:41:30 by "java_re" with gcc 3.2.1-7a (J2SE release)
    time: Tue May 17 20:00:16 2011
    elapsed time: 11795 seconds
    please find the error log, the jvm crashed 5 times in the past 1 week, it consistently points to the thread ' CompilerThread1" daemon" ' and the compile task is at the same method and smae class. the only difference between all the crahes is % completion of the compilation.
    Any help appreciated..
    thanks
    Sridhar

    the only thing I can say is try running the latest releases of both the JDK and Tomcat. Native crashes are the hardest ones to solve as there is no real way of knowing what causes the problem. The least you can do is run with the most up to date versions and see if the problem persists; this may be the result of a bug that has already been fixed.

  • Cannot see network interface counters under Solaris 10 with Sun SMA

    Hi,
    Noticed this a few weeks ago. When I do a discovery of a Sun server running the Net-SNMP SMA that is a zone, I can see the network interfaces:
    .1.3.6.1.2.1.2.2.1.2.1 = STRING: lo0:1
    .1.3.6.1.2.1.2.2.1.2.2 = STRING: ipge1:1
    .1.3.6.1.2.1.2.2.1.3.1 = INTEGER: softwareLoopback(24)
    .1.3.6.1.2.1.2.2.1.3.2 = INTEGER: ethernetCsmacd(6)
    .1.3.6.1.2.1.2.2.1.4.1 = INTEGER: 8232
    .1.3.6.1.2.1.2.2.1.4.2 = INTEGER: 1500
    .1.3.6.1.2.1.2.2.1.5.1 = Gauge32: 127000000
    .1.3.6.1.2.1.2.2.1.5.2 = Gauge32: 100000000
    But the counters all come up as 0:
    .1.3.6.1.2.1.2.2.1.8.1 = INTEGER: up(1)
    .1.3.6.1.2.1.2.2.1.8.2 = INTEGER: up(1)
    .1.3.6.1.2.1.2.2.1.9.1 = Timeticks: (0) 0:00:00.00
    .1.3.6.1.2.1.2.2.1.9.2 = Timeticks: (0) 0:00:00.00
    .1.3.6.1.2.1.2.2.1.10.1 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.10.2 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.11.1 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.11.2 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.12.1 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.12.2 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.13.1 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.13.2 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.14.1 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.14.2 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.15.1 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.15.2 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.16.1 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.16.2 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.17.1 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.17.2 = Counter32: 0
    .1.3.6.1.2.1.2.2.1.18.1 = Counter32: 0
    This happens consistently across all zones we have running. We can monitor traffic for a zone via the hwardware node SNMP daemon, but certainly seems like we should be able to also monitor network interface utilization via SNMP from any zone as well.
    Has anyone encountered this / know of a fix or workaround for this? We have a valid Sun support contract but they unfortunately have been REALLY BAD about answering questions related to the SMA Net-SNMP agent thus far.
    - Max

    <table border="0" align="center" width="90%" cellpadding="3" cellspacing="1"><tr><td class="SmallText"><b>tcbarrett wrote on Fri, 28 October 2005 15:37</b></td></tr><tr><td class="quote">
    SunOS Release 5.10 Version s10_69 64-bit
    </td></tr></table>
    Why are you trying to run an old obsolete pre-release version of Solaris 10?
    I'd suggest that you install the final released product.

  • How do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA certfificate i can't open web pages with this, how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC CA certfificate i can't open web pages with this

    how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA ?

    Hi
    I am not suprised no one answered your questions, there are simply to many of them. Can I suggest you read the faq on 'how to get help quickly at - http://forums.adobe.com/thread/470404.
    Especially the section Don't which says -
    DON'T
    Don't post a series of questions in  a single post. Splitting them into separate threads increases your  chances of a quick answer.
    PZ
    www.pziecina.com

  • Previewing an image before uploading it using the FileReference class

    Previewing an image before uploading it using the FileReference class in flash player 3 not in SDK4

    Previewing an image before uploading it using the FileReference class in flash player 3 not in SDK4

  • Previewing an image before uploading it using the FileReference class in flex 3

    Previewing an image before uploading it using the FileReference class in flex 3 ?

    hai,
              when this code is used in my application ,i got the name of image and new frame is added each time .But image is not displayed.....
    The code  starts like this
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
                xmlns:mx="library://ns.adobe.com/flex/mx" initialize="init()"   backgroundColor="white" width="100%" height="100%">
        <fx:Script>
    <![CDATA[ 
                    import mx.controls.Alert;
                    import mx.messaging.Channel;
                    import mx.messaging.ChannelSet;
                    import mx.messaging.channels.AMFChannel;
                    import mx.rpc.events.ResultEvent;
                    import mx.controls.Image;
                    import spark.events.IndexChangeEvent;
                    import mx.managers.DragManager;
      <mx:DataGridColumn headerText="Dimension Value"  width="10" dataField="dimensionValue"/>
                                                   <mx:DataGridColumn headerText="Unit Nmae"  width="10" dataField="dimensionUnitName"/>
                                                   </mx:columns>
                                           </mx:DataGrid>
                                           <mx:Spacer width="2%"/>
                                       </mx:HDividedBox>
                                       </mx:VBox>
                   <mx:Spacer height="0"/>
                <mx:VBox width="100%">
                    <s:HGroup height="90" top="0" left="0" right="0" verticalAlign="justify" gap="10" paddingLeft="5" paddingRight="5" paddingTop="5" paddingBottom="5">
                        <s:Button id="btn_loader" top="5" bottom="24" width="100" label="load" click="loadImages()"/>
                        <s:Group width="100%">
                            <s:Group name="cl" top="0" left="0" bottom="0" width="20" mouseOver="//scroll_on(event)" mouseOut="//scroll_off(event)">
                                <s:BitmapImage source="@Embed('../assets/left.jpg')" top="0" left="0" bottom="0" right="0" fillMode="scale"/>   
                            </s:Group>
                            <s:List id="imgList" skinClass="skins.ListSkin" top="-3" left="27" right="28" bottom="10"
                                    dataProvider="{ImageCollection}" itemRenderer="Image_Render">
                                <s:layout>
                                    <s:HorizontalLayout gap="0"/>
                                </s:layout>
                            </s:List>
                            <s:Group name="cr" top="0" right="0" bottom="0" width="20" mouseOver="//scroll_on(event)" mouseOut="//scroll_off(event)">
                                <s:BitmapImage source="@Embed('../assets/right.jpg')" top="-1" left="0" bottom="0" right="0" fillMode="scale"/>
                            </s:Group>
                        </s:Group>
                    </s:HGroup>
                    <s:SkinnableContainer id="dropCanvas" top="100" left="5" right="5" bottom="5" backgroundAlpha="1.0" alpha="1.0"
                                          dragEnter="dropCanvas_dragEnterHandler(event)"
                                          dragDrop="dropCanvas_dragDropHandler(event)" contentBackgroundColor="#914E4E" backgroundColor="#F7F7F7">
                    </s:SkinnableContainer>
                </mx:VBox>
                <mx:Spacer height="5"/>
                                      </mx:VDividedBox>
        </mx:Panel>
    </mx:Canvas>

  • Get the values from the bean class?

    Hi Praveen and all can u please suggest in this,
    I have developped an application In that Create One java class that Extends PageProcesscomponenet and utilizing the Bean That have the Connetion method and retriving the query Based on the Logon customer and spoof customer.
    this functionality I have developped in Pageprocessor component.
    The same functinality I am utilizing another java Class that Extends AbstractPortalcomponent  and utilizing the same Bean.
    But the problem both java classes for I used one Jsp only Dynmic spoof customer will come from the JSP Input filed.
    In the new Java Class How can I capture the Event When I click the Buttong the InputField value capturing into the AbstractPortalcomponent Class.
    I tried like this but It comes as Null Value.
    Event event = myContext.getCurrentEvent();
                              if(event!=null)
                                  InputField ip= (InputField) myContext.getComponentForId("spoofCust");
                                  String spoofCust=ip.getValue().toString();
    Please suggest me in this.
    What is wrong with this.
    Thanks,
    Lohi.
    Message was edited by:
            Lohitha M

    Lohitha,
    Try replacing your two lines of code:
    InputField ip= (InputField) myContext.getComponentForId("spoofCust");
    String spoofCust=ip.getValue().toString();
    with:
    InputField ip = (InputField) getComponentByName("spoofCust");     
    String spoofCust = ip.getValueAsDataType().toString();
    Let me know how that works for you.
    -John

  • Get the values from Exception class

    Hi all ..
    In class i have raised one exception
    when i catch this exception in my program i m able to get the
    error message but i need to get all the parameters that i pass
    when i raise the exception ...
    i have raised like this
          RAISE EXCEPTION TYPE cx_bapi_error
            EXPORTING
              textid = cx_bapi_error=>cx_bo_error
              class_name = 'ZHS_'
              log_no = wa_bapi_return-log_no
              log_msg_no = wa_bapi_return-log_msg_no
              t100_msgid = wa_bapi_return-id
              t100_msgno = wa_bapi_return-number
              t100_msgv1 = wa_bapi_return-message_v1
              t100_msgv2 = wa_bapi_return-message_v2
              t100_msgv3 = wa_bapi_return-message_v3
              t100_msgv4 = wa_bapi_return-message_v4
              STATUS = lt_status
    and caught the exception like this in my program
        CATCH cx_bapi_error INTO go_error.
          gd_text = go_error->get_text( ).
          EXIT.
      ENDTRY.
    in this i m just getting the class name which i have passed in exception
    i need all other parameters that i have passed ..
    if u have any idea pls let me know ..
    Thanks in advance ...

    Hello Jayakumar
    Usually the attributes of standard exception classes are defines as <b>public</b> and <b>read-only</b>. Thus, you should be able to use the following coding:
    DATA:
      go_error   TYPE REF TO cx_bapi_error.  " specific exception class !!!
    TRY.
    RAISE EXCEPTION TYPE cx_bapi_error
    EXPORTING
    textid = cx_bapi_error=>cx_bo_error
    class_name = 'ZHS_'
    log_no = wa_bapi_return-log_no
    log_msg_no = wa_bapi_return-log_msg_no
    t100_msgid = wa_bapi_return-id
    t100_msgno = wa_bapi_return-number
    t100_msgv1 = wa_bapi_return-message_v1
    t100_msgv2 = wa_bapi_return-message_v2
    t100_msgv3 = wa_bapi_return-message_v3
    t100_msgv4 = wa_bapi_return-message_v4
    STATUS = lt_status.
    CATCH cx_bapi_error INTO go_error.
    gd_text = go_error->get_text( ).
    WRITE: go_error->t100_msgid,  " perhaps the attributes have different name
                go_error->t100_msgno, " check attribute names in SE24
    EXIT.
    ENDTRY.
    Regards
      Uwe

  • Problem with setContentPane() in JFrame class

    I recently discovered a problem with the setContentPane method in the JFrame class. When I use setContentPane(Container ..), the previously existing contentPane remains in the stack. I have tried nullifying getContentPane(), and all manner of things, but, each time I use setContentPane, I have another instance of a JPanel in the stack.
    I'm using code similar to setContentPane(new CustomJPanel()); and each time the user changes screens, and a similar call to that is made, the old CustomJPanel instance remains in the stack. Can anyone suggest a way around this? On their own the panels do not take up very much memory, but after several hours of usage, they will build up.

    I tried what you suggested; it only resulted in a huge performance decrease. The problem with memory allocation is still there.
    Here is the method I use to switch screens in my app:
    public static void changeScreen (JPanel panel){
              try{
                   appFrame.setTitle("Wordinary : \""+getTitle()+"\"");
                   appFrame.setContentPane(panel);
                   appFrame.setSize(appFrame.getContentPane().getPreferredSize());     
                   appFrame.getContentPane().setBackground(backColour);
                   for (int i = 0; i < appFrame.getContentPane().getComponents().length; i++)
                        appFrame.getContentPane().getComponents().setForeground(textColour);
                   //System.out.println("Background colour set to "+backColour+" text colour set to "+textColour);
                   appFrame.validate();
              catch (Exception e){
                   //System.out.println("change");
                   e.printStackTrace();
    And it is called like this:
    changeScreen(new AddWordPanel());The instantiation of the new instance is what is causing the memory problems, but I can't think of a way around it.

  • Problem with Outer and Inner Classes....or better way?

    Right now I'm trying to create an Inner class.
    My .java file compiles ok, and I create my jar file too.
    But when I try to instantiate the Inner class, it fails:
    java.lang.NoClassDefFoundError: com/myco/vlXML/vlXML$vlDocument.
    Here's the class code:
    public class vlXML{
        private ArrayList myDocList=new ArrayList(); //holds documents
        public vlXML(){
        private class vlDocument{
            public vlDocument(){
            //stuff goes here
        public vlDocument vlDOC(){
            return new vlDocument();
        public void addDocument(){
            vlXML xxx=new vlXML();
            vlDocument myDoc=xxx.vlDOC();
            myDocList.add(myDoc);
        public int getNumDocs(){
            return myDocList.size();
    }Then, from a jsp page, I call:
    vlXML junk1=new vlXML();
    junk1.addDocument();...and get the error...
    Can someone help me figure out why it's failing?
    Thanks....

    You nailed it - thanks....(duh!)
    While I have your attention, if you don't mind, I have another question.
    I'm creating a Class (outer) that allows my users to write a specific XML file (according to my own schema).
    Within the XML file, they can have multiple instances of certain tags, like "Document". "Document"s can have multiple fields.
    Since I don't know how many "Documents" they may want, I was planning on using an Inner Class of "Document", and then simply letting them "add" as many as necessary (thus the original code posted here).
    Does that seem like an efficient (logical/reasonable) methodology,
    or is there there something better?
    Thanks Again...

  • JBO:33001 bc4j.xcfg file not found in class path

    Hi,
    I am yet another victim of the age-old error JBO:33001 bc4j.xcfg file not found in class path, When i have my BC4JApp.jar in Tomcat Web-inf/lib directory. All the other jar files and class files in my webserver-application web-inf classes and lib directory works.
    But Tomcat server is not able to read this bc4j.xcfg file. I can see in my jar file that this bc4j.xcfg exists and in the specified package directory. still the problem persists. My BC4JApp.jar is perfectly working when i use JDeveloper. but not when i use tomcat4.0 and call a JSP using BC4JApp.jar from browser (My environment is Jdeveloper3.2, Tomcat4.0+IIS in middle tier and oracle 8i as DB, everything on windows2k)
    I have gone through almost all the threads possible that relates to this error in this form. None of them have a answer except to say "put the file in classpath". and last reply is "will fix in jDeveloper 9i. So what happens to us who are working in Jdeveloper 3.2?
    1. I have this file in my jar file.
    2. I also tried creating a seperate directory manually, with the same name as my package under web-inf/classes, web-inf/lib , just under web-inf directory and atlast under approot directory also. I tried having my package directory containing bc4j.xcfg in these folders one at a time and also tried having this directory in all these folders at the same time.
    Still no solution.
    Itz frustrating that neither proper documentation nor a right url page nor i am aware of available addressing this. page links given in above threads only gives me the wonderful page of ie's "Page cannot be displayed".
    Is there a answer to this error and my problem. If this doesn't work, then i have to all the way develop from scratch creating my jsp using JDBC calls and Stored packages etc.
    I don't want to give up on this Jdeveloper at this final moment because if this bc4j.xcfg file is found, my application will work perfectly. on these final moments, if this doesn't work, i am frightened to imagine to develop my application in standard way. Atlast, if thatz the option left,we have to do that bcos our production date is close by.
    Please can some one in this forum or Jdeveloper help me to solve this problem. I am desperate and very urgent.
    Waiting for a reply from Jdev team very much...
    ( I just posted in the other thread which is pretty old, dated backto May 2001, which was relevant to this error. Just to make sure it is noticed, I am posting it seperately too)
    Thanks
    Hari(2/3/02)

    Hi All,
    For those who are following this thread, I got a solution for this error with the help of Jdev Team.
    This solution may work, if you have deployed your application in Tomcat4.0.1. This is the environment in which I work and tested.
    As you may be aware, Tomcat ignores value in CLASSPATH variable.
    To see any files that are existing or newly deployed, it has it own way of detecting it.
    Addition information on Tomcat working, you can follow this link,
    http://jakarta.apache.org/tomcat/tomcat-4.0-doc/index.html
    Coming to point, Tomcat has got five classloaders and each classloader invoked, looks in their related directories for files in following order.
    1. /WEB-INF/classes of your web-application
    2. /WEB-INF/lib/*.jar of your web application
    3. BootStrap classes of your JVM (Tomcat's $JAVA_HOME/jre/lib/ext)
    4. System class loader classes($CATALINA_HOME/bin/bootstrap.jar,CATALINA_HOME/lib/tools.jar)
    5. $CATALINA_HOME/common/classes
    6. $CATALINA_HOME/common/lib/*.jar
    7. $CATALINA_HOME//classes
    8. $CATALINA_HOME/lib/*.jar
    So All your individual application related files should be deployed in your application's WEB-INF/classes or WEB-INF/lib directory accordingly.
    If your application files are unpacked, they should be deployed or copied under WEB-INF/classes directory
    if the files are within a jar, they should be under WEB-INF/lib directory.
    If your Jar-files contains bc4j components, then those jar files should be deployed under WEB-INF/lib directory. Also,do the next step to copy all relavant BC4J runtime libraries under lib directory.
    IMPORTANT: Please remember to copy and paste all the required BC4j runtime libraries in the Same WEB-INF/lib directory along with your application jar files. This is the real reason which can solve this JBO:33001 to disappear. It worked for me.
    To configure your directory for tag-lib uri's, use web.xml to set the taglib-uri attribute.
    Put your web.xml and DataTags.tld in the WEB-INF directory.
    Your simple web.xml may look like as follows.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
         <taglib>
              <taglib-uri>
                   /webapp/DataTags.tld
              </taglib-uri>
              <taglib-location>
                   /WEB-INF/DataTags.tld
              </taglib-location>
         </taglib>
    </web-app>
    You may then modify this web.xml to suit further requirements of your application.
    Remember to stop and restart the Tomcat Server (service) by using shutdown and startup scripts after updating any jar files/class files/ JSP or source files deployed in Tomcat.
    Sometimes, only this helps even though your context's reloadable attribute is set to true in Tomcat Server's server.xml file.
    Hope this above information helps you to solve this error in Tomcat environment. My Sincere thanks once again to Juan and Jdev team for their help and efforts to solve this problem.
    Thanks
    Hari

  • Help Counting Vowels and Consonants using a class

    I'm currently working on a class project where I need take a user inputed string and count how many vowels and/or consonants are in the String at the user discretion. I have the main logic program working fine. However, the trouble I'm running into is how to take the string the user inputed and pass that data into the class method for counting.
    Here is the code for the program:
    package vowelsandconsonants;
    import java.util.Scanner;
    public class VowelConsCounter {
        public static void main(String[] args) {
            String input; //User input
            char selection; //Menu selection
            //Create a Scanner object for keyboard input.
            Scanner keyboard = new Scanner(System.in);
            //Get the string to start out with.
            System.out.print("Enter a string: ");
            input = keyboard.nextLine();
            //Create a VowelCons object.
            VowelCons vc = new VowelCons(input);
            do {
                // Display the menu and get the user's selection.
                selection = getMenuSelection();
                // Act on the selection
                switch (Character.toLowerCase(selection)) {
                    case 'a':
                        System.out.println("\nNumber of Vowels: " +
                                vc.getNumVowels());
                        break;
                    case 'b':
                        System.out.println("\nNumber of consonats: " +
                                vc.getNumConsonants());
                        break;
                    case 'c':
                        System.out.println("\nNumber of Vowels: " +
                                vc.getNumVowels());
                        System.out.println("Number of consonants: " +
                                vc.getNumConsonants());
                        break;
                    case 'd':
                        System.out.print("Enter a string: ");
                        input = keyboard.nextLine();
                        vc = new VowelCons(input);
            } while (Character.toLowerCase(selection) != 'e');
         * The getMenuSelection method displays the menu and gets the user's choice.
        public static char getMenuSelection() {
            String input;  //To hold keyboard input
            char selection;  // The user's selection
            //Create a Scanner object for keyboard input.
            Scanner keyboard = new Scanner(System.in);
            //Display the menu.
            System.out.println("a) Count the number of vowels in the string.");
            System.out.println("b) Count the number of consonants in the string.");
            System.out.println("c) Count both the vowels and consonants in the string.");
            System.out.println("d) Enter another string.");
            System.out.println("e) Exit the program.");
            //Get the user's selection
            input = keyboard.nextLine();
            selection = input.charAt(0);
            //Validate the input
            while (Character.toLowerCase(selection) < 'a' ||
                    Character.toLowerCase(selection) > 'e') {
                System.out.print("Only enter a,b,c,d or e:");
                input = keyboard.nextLine();
                selection = input.charAt(0);
            return selection;
    class VowelCons {
        private char[] vowels;
        private char[] consonants;
        private int numVowels = 0;
        private int numCons = 0;
        public VowelCons(String str) {
        public int getNumVowels() {
            return numVowels;
        public int getNumConsonants() {
            return numCons;
        private void countVowelsAndCons() {
            for (int i = 0; i < total; i++) {
                char ch = inputString.charAt(i);
                if ((ch == 'a') || (ch == 'A') || (ch == 'e') || (ch == 'E') || (ch == 'i') || (ch == 'I') || (ch == 'o') || (ch == 'O') || (ch == 'u') || (ch == 'U')) {
                    numVowels++;
                } else if (Character.isLetter(ch)) {
                    numCons++;
    }The UML given to me by my instructor calls for the counting method to be private. Being that I'm not too familiar with Java syntax I did not know if that may cause a problem with passing the user's input into that method.

    Well the only compilers i get are due to the code:
    private void countVowelsAndCons() {
            for (int i = 0; i < total; i++) {
                char ch = inputString.charAt(i);
                if ((ch == 'a') || (ch == 'A') || (ch == 'e') || (ch == 'E') || (ch == 'i') || (ch == 'I') || (ch == 'o') || (ch == 'O') || (ch == 'u') || (ch == 'U')) {
                    numVowels++;
                } else if (Character.isLetter(ch)) {
                    numCons++;
        }However, that is due to the fact that i have no data for those variables to use. I'm pretty much stuck on how to get the string the user inputs into that method shown above so the code can perform the task of counting the vowels and consonants.
    If i comment out the code within that function the program compiles and will allow me to enter the string and use the options but since i can't figure out how to pass the input to the counting method the program returns 0 for everything.

  • Help - Class name and descriptions for a function location.

    Hi Guys
    i have to write a report that displays the class and class descriptions for a function location. the user passes in either the function location(TPLNR) or the class name and  the report should display the the class characteristics and resp. values. Is there a FM that i coud use?
    please help.
    many thanks.
    seelan.

    sadiepu1 wrote:
    When I set up Words with Friends on my Fire it asked for my username and password which from a previous reply to my inquiry above stated that the S 3 doesn't store due to privacy issues. I have tried all my usual combinations of usernames and passwords and my Fire won't let me access the game as it keeps telling me that one or the other is not correct. I have deleted the app from my Fire and re-downloaded it but have the same error comes up. I have accessed the Words with Friends support both on my phone and their website but there is no live chat. I might have to take both to a Verizon store. Also, my Fire won't let me access the game without a correct username and password. To say that I am frustrated would be an understatement as well I have tried everything I can think of with no luck! Thanks for any help you can give!
    Did you use facebook to log in? 
    Verizon will not be able to help you retrieve any of the information you need.  You will have to contact Zynga.

  • How to convert class file

    Hi all, I am new in java card development.
    This is my environment setting:
    @echo off
    set JC_HOME=C:\JavaCard\java_card_kit-2_2
    set JAVA_HOME=C:\j2sdk14103
    set PATH=.;%JC_HOME%\bin;%PATH%
    I have created the Wallet applet according to 'Zhiqun Chen" text book and named it WalletApp.java.
    I have compiled this file to a class file.
    This is where is I saved my file
    C:\JavaCard\java_card_kit-2_2\samples\src\com\sun\javacard\samples\WalletApp\WalletApp.java.
    But I don't really understand how to convert the class file.
    May I know what is this for?
    -out EXP JCA CAP
    -exportpath
    -applet 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1:0x1
    com.sun.javacard.samples.HelloWorld.HelloWorld
    com.sun.javacard.samples.HelloWorld
    0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1 1.0
    must save this in what file?
    I tried to type in the command line below (and the result):
    C:\JavaCard\java_card_kit-2_2\samples>converter -config scr\com\sun\javacard\sap
    les\Wallet\Wallet.opt
    error: file scr\com\sun\javacard\saples\Wallet\Wallet.opt could not be found
    Usage: converter <options> package_name package_aid major_version.minor_ver
    sion
    OR
    converter -config <filename>
    use file for all options and parameters to converter
    Where options include:
    -classdir <the root directory of the class hierarchy>
    set the root directory where the Converter
    will look for classes
    -i support the 32-bit integer type
    -exportpath <list of directories>
    list the root directories where the Converter
    will look for export files
    -exportmap use the token mapping from the pre-defined export
    file of the package being converted. The converter
    will look for the export file in the exportpath
    -applet <AID class_name>
    set the applet AID and the class that defines the
    install method for the applet
    -d <the root directory for output>
    -out [CAP] [EXP] [JCA]
    tell the Converter to output the CAP file,
    and/or the JCA file, and/or the export file
    -V, -version print the Converter version string
    -v, -verbose enable verbose output
    -help print out this message
    -nowarn instruct the Converter to not report warning messages
    -mask indicate this package is for mask, so restrictions on
    native methods are relaxed
    -debug enable generation of debugging information
    -nobanner suppress all standard output messages
    -noverify turn off verification. Verification is default
    *********************************************************May I know What is the correct command line to convert the class file and what must I do to before converting the class file?
    I saw some article saying we must use JDK1.3, is it a must?
    Your solution is highly appreciated.
    Thank you!

    Hi Ricardo,
    I saved the file below as WalletApp.opt in the directory of scr\com\sun\javacard\samples\WalletApp
    -out EXP JCA CAP
    -exportpath c:\javacard\java_card_kit-2_2\api_export_files
    -applet 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x2:0x1 WalletApp.WalletApp
    WalletApp 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x2 1.0
    But I still have the problem below:
    C:\JavaCard\java_card_kit-2_2\samples>converter -config scr\com\sun\javacard\sam
    ples\WalletApp\WalletApp.opt
    error: file scr\com\sun\javacard\samples\WalletApp\WalletApp.opt could not be fo
    und
    Usage: converter <options> package_name package_aid major_version.minor_ver
    sion
    OR
    converter -config <filename>
    May I know What's wrong with my command or file?
    Where can I download JDK because what I can find is J2SDK.
    Thank you!

Maybe you are looking for