Simple Diameter protocol implementation using Java

I need help on how to implement Diameter protol using Java. I went through the weblogic API, but it's hard to understand.

+4
source share
4 answers

I know this old post, but maybe this will help someone.

The simplest implementation I have found is the jDiameter stack. You can find several examples on the Internet that will help you create some programs with them. Best of them: diameter-educational-series-creating

+4
source

I have little knowledge that this document will help you.

+3
source

Well ... there are open source examples, but you have to remember:

  • DIAMETER is a standard shell - the actual AVP format, their structure, their serialization, etc. is a fully defined provider.
  • DIA is agnostic about whether to use encryption and what form should be used.

You can get DIAMETER "simulations", but without knowing the AVP, their format, encryption rules, etc., you are likely to stay a little longer than the TCP stream in XML format.

+1
source

The Ericsson Diameter SDK contains an implementation of the Java protocol.

Download the client and server and look at the java codes.

0
source

Source: https://habr.com/ru/post/1381281/


All Articles