Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Easy Diameter protocol implementaion using Java

I need help on how to implement Diameter protol using Java. I was going through weblogic diameter API, but hard to understand.

like image 383
Sujeet Avatar asked Nov 15 '11 11:11

Sujeet


2 Answers

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

like image 192
bond_t Avatar answered Oct 16 '22 19:10

bond_t


Well.... there are open sources examples, but you should remember:

  1. DIAMETER is a wrapper standard -- the actual format of the AVPs, their structure, their serialization etc. is entirely vendor defined.
  2. 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.

like image 1
user500123 Avatar answered Oct 16 '22 18:10

user500123