Page 1 of 1

debugger doesn't hit Process method

Posted: Sun Aug 16, 2020 4:43 pm
by Nosayba
Hello,
I have installed JCKit_Release_Version_v6.0.2.3 and developed simple applet, when i begin debugging the debugger doesn't hit the break point located at process method. what is the wrong?

  1. public void process(APDU apdu)
  2.  
  3.     {
  4.  
  5.         byte buffer[] = apdu.getBuffer();
  6.  
  7.         byte ins = buffer[ISO7816.OFFSET_INS];
  8.  
  9.         switch (ins)
  10.  
  11.         {
  12.  
  13.           case (byte)0x00:
  14.  
  15.              break;
  16.  
  17.           case INS_Select:
  18.  
  19.                processSelectFile(apdu);
  20.  
  21.                 break;
  22.  
  23.            
  24.  
  25.            case INS_Read:
  26.  
  27.               processReadBinary(apdu);
  28.  
  29.                break;
  30.  
  31.            
  32.  
  33.            case INS_UPDATE:
  34.  
  35.               processUpdateBinary(apdu);
  36.  
  37.                break;
  38.  
  39.            
  40.  
  41.            
  42.  
  43.            
  44.  
  45.           default:
  46.  
  47.             ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
  48.  
  49.         }
  50.  
  51.     }

Re: debugger doesn't hit Process method

Posted: Tue Sep 01, 2020 11:33 pm
by kuafu
Do not using cref chippack . Using JAVACOS chippack.