Comment #4 on issue 114 by [email protected]: Implement cancelLocation MAP message
http://code.google.com/p/jss7/issues/detail?id=114

IMSIWithLMSIImpl:
- encodeData() - do not use here:
                this.imsi = null;
                this.lmsi = null;
- _decode() - bad decoding - use something like:
                AsnInputStream ais = ansIS.readSequenceStreamData(length);
                int num = 0;
                while (true) {
                        if (ais.available() == 0)
                                break;

                        int tag = ais.readTag();
- it is not a bug, but let's for all SEQUENSE based, OCTET STRING based and BIT STRING based primitives (but not for top level primitives like Requests or Responses) special super classes. Look at issue:
https://code.google.com/p/jss7/issues/detail?id=110
Use for IMSIWithLMSIImpl - SequenceBase super class. Reference to an example you can see at the Issue 110
- add toString() method




Reply via email to