Hi Experts
I'm facing a strange problem if I add Service-Information to Credit Control Request message, my code is:
Request request = session.createRequest();
AvpSet avps = request.getAvps();
...
AvpSet si = avps.addGroupedAvp(Avp.SERVICE_INFORMATION);
Then 2 problems occur:
1) In the log file there is an error message:
4708 [main] WARN org.mobicents.diameter.dictionary.AvpDictionary - AVP with code 873 and Vendor-Id 0 not present in dictionary!
That is strange because I use the same dictionary.xml like the example "guide1",
I checked dictionary.xml and the AVP 873 is defined as Service-Information.
2) WireShark cannot decode this AVP (other AVPs are decoded correctly)
AVP: Unknown(873) l=8 f=---
AVP Code: 873 Unknown
AVP Flags: 0x00
0... .... = Vendor-Specific: Not set
.0.. .... = Mandatory: Not set
..0. .... = Protected: Not set
...0 .... = Reserved: Not set
.... 0... = Reserved: Not set
.... .0.. = Reserved: Not set
.... ..0. = Reserved: Not set
.... ...0 = Reserved: Not set
AVP Length: 8
[No data]
Can you please help me to come over with this issues.
Thanks a lot
Tuan