Comment #5 on issue 205 by [email protected]: CAP - Implement
initialDPGPRS CAP V3 Operation
http://code.google.com/p/jss7/issues/detail?id=205
Hi
I am doing some test cases based on the live trace. When I create a test
case for EventReportGPRSRequest using the No.21 of the live trace, the
encoded message byte stream didnt match with the live trace byte stream.
When I check the error, i found that it is a problem with
LocationInformationGPRS encoding. When I use below to encode
CellGlobalIdOrServiceAreaIdOrLAIImpl of LocationInformationGPRS, our
encoded stream matched with the live stream.
if (this.cellGlobalIdOrServiceAreaIdOrLAI != null) {
((CellGlobalIdOrServiceAreaIdOrLAIImpl)
this.cellGlobalIdOrServiceAreaIdOrLAI).encodeAll(asnOs,
Tag.CLASS_CONTEXT_SPECIFIC, _ID_cellGlobalIdOrServiceAreaIdOrLAI);
}
Please advice me the whether this change is right or wrong.
And same thing happened for InitialDpGprsRequest live trace test case.
Thank you.
--