I need help on how to implement Diameter protol using Java. I was going through weblogic diameter API, but hard to understand.
Asked
Active
Viewed 1.3k times
6
-
Good to know, but how we can help You ? – Damian Leszczyński - Vash Nov 15 '11 at 11:17
-
If you have any good document to understand the diameter protocol implementation using Java – Sujeet Nov 15 '11 at 11:39
3 Answers
7
I know it's an old post but maybe it will help somebody.
The simplest implementation I have found is jDiameter stack You can find some examples on the web that will help you build some programs with that. The best one is: diameter-educational-series-creating

Sumit Singh
- 15,743
- 6
- 59
- 89

bond_t
- 141
- 4
- 11
1
Well.... there are open sources examples, but you should remember:
- DIAMETER is a wrapper standard -- the actual format of the AVPs, their structure, their serialization etc. is entirely vendor defined.
- DIAMETER is agnostic as to whether encryption is to be used, and what form is to be used.
You can get 'simulations" of DIAMETER, but without knowing the AVPs, their format, encryption rules etc. you're likely left with little more than TCP stream of XML.

user500123
- 617
- 6
- 14
0
Ericsson Diameter SDK contains Java implementation of the protocol.
Download the client and server and look into the java codes

AmaChefe
- 395
- 3
- 8