JBoss.orgCommunity Documentation
Diameter Cx/Dx Resource Adaptor Type is defined by Mobicents team as part of effort to standardize RA Types.
Diameter Cx/Dx Type 2.5.0.FINAL defines the following Activities:
This type of activity represents client side of Cx/Dx session. User-Authorization-Request (UAR), Server-Assignment-Request (SAR), Location-Info-Request (LIR) and Multimedia-Authentication-Request (MAR) messages can be created and sent in this Activity, receiving the respective Answer (or timeout) later on this Activity. Registration-Termination-Request (RTR) and Push-Profile-Request (PPR) messages are received in this Activity and respective Answers are sent from it.
This activity type is implicitly created when receiving Requests or can be created with call to the proper createCxDxClientSessionActivity
method of net.java.slee.resource.diameter.cxdx.CxDxProvider
for sending Requests. It ends once underlying Cx/Dx session ends.
This type of activity represents server side of Cx/Dx session. Registration-Termination-Request (RTR) and Push-Profile-Request (PPR) messages can be created and sent in this Activity, receiving the respective Answer (or timeout) later on this Activity. User-Authorization-Request (UAR), Server-Assignment-Request (SAR), Location-Info-Request (LIR) and Multimedia-Authentication-Request (MAR) messages are received in this Activity and respective Answers are sent from it.
This activity type is implicitly created when receiving Requests or can be created with call to the proper createCxDxServerSessionActivity
method of net.java.slee.resource.diameter.cxdx.CxDxProvider
for sending Requests. It ends once underlying Cx/Dx session ends.
All activities define methods required to properly function and expose necessary information to JAIN SLEE services. Common part for both Client and Server Activity is defined as follows:
public String getSessionId();
public CxDxAVPFactory getCxDxAvpFactory();
public CxDxMessageFactory getCxDxMessageFactory();
This method returns Session ID of underlying Diameter session.
This method returns an AVP factory capable of creating Diameter Cx/Dx related AVPs. It also provides access to Base AVP Factory.
This method returns a message factory capable of creating Diameter Cx/Dx messages. It also provides access to Base Message Factory.
Cx/Dx Client Activity is defined as follows:
public UserAuthorizationRequest createUserAuthorizationRequest();
public void sendUserAuthorizationRequest(
UserAuthorizationRequest userAuthorizationRequest)
throws IOException;
public ServerAssignmentRequest createServerAssignmentRequest();
public void sendServerAssignmentRequest(
ServerAssignmentRequest serverAssignmentRequest)
throws IOException;
public LocationInfoRequest createLocationInfoRequest();
public void sendLocationInfoRequest(LocationInfoRequest locationInfoRequest)
throws IOException;
public MultimediaAuthenticationRequest createMultimediaAuthenticationRequest();
public void sendMultimediaAuthenticationRequest(
MultimediaAuthenticationRequest multimediaAuthenticationRequest) throws IOException;
public RegistrationTerminationAnswer createRegistrationTerminationAnswer();
public void sendRegistrationTerminationAnswer(
RegistrationTerminationAnswer registrationTerminationAnswer) throws IOException;
public PushProfileAnswer createPushProfileAnswer();
public void sendPushProfileAnswer(PushProfileAnswer pushProfileAnswer)
throws IOException;
This method creates a User-Authorization-Request message pre-populated with the AVPs appropriate for this session.
This method sends an event User-Authorization-Request. An event containing the answer will be fired on this activity.
This method creates a ServerAssignmentRequest message pre-populated with the AVPs appropriate for this session.
This method sends an event Server-Assignment-Request. An event containing the answer will be fired on this activity.
This method creates a LocationInfoRequest message pre-populated with the AVPs appropriate for this session.
This method sends an event Location-Info-Request. An event containing the answer will be fired on this activity.
This method creates a MultimediaAuthenticationRequest message pre-populated with the AVPs appropriate for this session.
This method sends an event Multimedia-Authentication-Request. An event containing the answer will be fired on this activity.
This method creates a RegistrationTerminationAnswer message pre-populated with the AVPs appropriate for this session.
This method sends an event Registration-Termination-Answer. An event containing the answer will be fired on this activity.
This method creates a Registration-Termination-Answer populated with the AVPs appropriate for this session.
This method sends an event Push-Profile-Answer in response to a Push-Profile-Request received on this activity.
Cx/Dx Server Activity is defined as follows:
public UserAuthorizationAnswer createUserAuthorizationAnswer();
public void sendUserAuthorizationAnswer(
UserAuthorizationAnswer userAuthorizationAnswer)
throws IOException;
public ServerAssignmentAnswer createServerAssignmentAnswer();
public void sendServerAssignmentAnswer(
ServerAssignmentAnswer serverAssignmentAnswer)
throws IOException;
public LocationInfoAnswer createLocationInfoAnswer();
public void sendLocationInfoAnswer(LocationInfoAnswer locationInfoAnswer)
throws IOException;
public MultimediaAuthenticationAnswer createMultimediaAuthenticationAnswer();
public void sendMultimediaAuthenticationAnswer(
MultimediaAuthenticationAnswer multimediaAuthenticationAnswer) throws IOException;
public RegistrationTerminationRequest createRegistrationTerminationRequest();
public void sendRegistrationTerminationRequest(
RegistrationTerminationRequest registrationTerminationRequest) throws IOException;
public PushProfileRequest createPushProfileRequest();
public void sendPushProfileRequest(PushProfileRequest pushProfileRequest)
throws IOException;
This method creates a User-Authorization-Answer message pre-populated with the AVPs appropriate for this session.
This method sends an event User-Authorization-Answer in response to a User-Authorization-Request received on this activity.
This method creates a ServerAssignmentAnswer message pre-populated with the AVPs appropriate for this session.
This method sends an event Server-Assignment-Answer in response to a Server-Assignment-Request received on this activity.
This method creates a LocationInfoAnswer message pre-populated with the AVPs appropriate for this session.
This method sends an event Location-Info-Answer in response to a Location-Info-Request received on this activity.
This method creates a MultimediaAuthenticationAnswer message pre-populated with the AVPs appropriate for this session.
This method sends an event Multimedia-Authentication-Answer in response to a Multimedia-Authentication-Request received on this activity.
This method creates a RegistrationTerminationRequest message pre-populated with the AVPs appropriate for this session.
This method sends an event Registration-Termination-Request. An event containing the answer will be fired on this activity.
This method creates a Push-Profile-Request pre-populated with the AVPs appropriate for this session.
This method sends an event Push-Profile-Request. An event containing the answer will be fired on this activity.
It is safe to type cast all the mentioned Diameter Activities to it's super interface net.java.slee.resource.diameter.base.DiameterActivity
defined in Diameter Base Activities section.
Diameter Cx/Dx Resource Adaptor Type declares all the Diameter Cx/Dx Application specific events.
The following tables shows which events are fired on each activity.
Table 2.1. Events received on Rf Server Activity
Name | Vendor | Version | Class |
---|---|---|---|
net.java.slee.resource. diameter.cxdx.events. UserAuthorizationRequest | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. UserAuthorizationRequest |
net.java.slee.resource. diameter.cxdx.events. ServerAssignmentRequest | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. ServerAssignmentRequest |
net.java.slee.resource. diameter.cxdx.events. LocationInfoRequest | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. LocationInfoRequest |
net.java.slee.resource. diameter.cxdx.events. MultimediaAuthenticationRequest | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. MultimediaAuthenticationRequest |
net.java.slee.resource. diameter.cxdx.events. RegistrationTerminationAnswer | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. RegistrationTerminationAnswer |
net.java.slee.resource. diameter.cxdx.events. PushProfileAnswer | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. PushProfileAnswer |
Table 2.2. Events received on Rf Client Activity
Name | Vendor | Version | Class |
---|---|---|---|
net.java.slee.resource. diameter.cxdx.events. UserAuthorizationAnswer | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. UserAuthorizationAnswer |
net.java.slee.resource. diameter.cxdx.events. ServerAssignmentAnswer | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. ServerAssignmentAnswer |
net.java.slee.resource. diameter.cxdx.events. LocationInfoAnswer | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. LocationInfoAnswer |
net.java.slee.resource. diameter.cxdx.events. MultimediaAuthenticationAnswer | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. MultimediaAuthenticationAnswer |
net.java.slee.resource. diameter.cxdx.events. RegistrationTerminationRequest | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. RegistrationTerminationRequest |
net.java.slee.resource. diameter.cxdx.events. PushProfileRequest | java.net | 0.8 | net.java.slee.resource. diameter.cxdx.events. PushProfileRequest |
Spaces where introduced in Name
and Event Class
column values, to correctly render the table. Please remove them when using copy/paste.
The Mobicents Diameter Cx/Dx Activity Context Interface Factory is defined as follows:
package net.java.slee.resource.diameter.cxdx;
import javax.slee.ActivityContextInterface;
public interface CxDxActivityContextInterfaceFactory {
public ActivityContextInterface getActivityContextInterface(
CxDxClientSessionActivity cxdxcs);
public ActivityContextInterface getActivityContextInterface(
CxDxServerSessionActivity cxdxss);
}
The Mobicents Diameter Cx/Dx Resource Adaptor SBB Interface provides SBBs with access to the Diameter objects required for creating and sending messages. It is defined as follows:
package net.java.slee.resource.diameter.cxdx;
import net.java.slee.resource.diameter.base.CreateActivityException;
import net.java.slee.resource.diameter.base.events.avp.DiameterIdentity;
public interface CxDxProvider {
public CxDxMessageFactory getCxDxMessageFactory();
public CxDxAVPFactory getCxDxAVPFactory();
public CxDxClientSessionActivity createCxDxClientSessionActivity()
throws CreateActivityException;
public CxDxClientSessionActivity createCxDxClientSessionActivity(
DiameterIdentity destinationHost, DiameterIdentity destinationRealm)
throws CreateActivityException;
public CxDxServerSessionActivity createCxDxServerSessionActivity()
throws CreateActivityException;
public CxDxServerSessionActivity createCxDxServerSessionActivity(
DiameterIdentity destinationHost, DiameterIdentity destinationRealm)
throws CreateActivityException;
public DiameterIdentity[] getConnectedPeers();
public int getPeerCount();
}
This method returns a message factory to be used to create concrete implementations of Cx/Dx messages.
This method returns a AVP factory to be used to create concrete implementations of Cx/Dx AVPs.
This method creates a new client session to send and receive Diameter messages. All messages sent on an activity created by this method must contain valid routing AVPs (one or both of Destination-Realm and Destination-Host as defined by RFC3588).
This method creates a new client session to send and receive Diameter messages. Messages sent on an activity created by this method will automatically have the Destination-Host and Destination-Realm AVPs set to the provided values.
This method creates a new server session to send and receive Diameter messages. All messages sent on an activity created by this method must contain valid routing AVPs (one or both of Destination-Realm and Destination-Host as defined by RFC3588).
This method creates a new server session to send and receive Diameter messages. Messages sent on an activity created by this method will automatically have the Destination-Host and Destination-Realm AVPs set to the provided values.
This method returns the identities of peers this Diameter resource adaptor is connected to.
This method returns the number of peers this Diameter resource adaptor is connected to.
Example SBB code to handle communication with HSS look as follows:
public void onTimerEvent(TimerEvent event, ActivityContextInterface aci) {
tracer.info("Diameter Cx/Dx example: Acting as client(ICSCF after REGISTER)");
this.timerFacility.cancelTimer(event.getTimerID());
// We are client - ICSCF, we get REGISTER from UE, instead of this timer methods
// we should be in onRegister handler.
DiameterIdentity destinationHost = new DiameterIdentity("aaa://" +
getProperty("destination.ip") + ":" + getProperty("destination.port"));
DiameterIdentity destinationRealm =
new DiameterIdentity((String)getProperty("destination.realm"));
CxDxClientSession clientSession;
try {
clientSession = this.provider.createCxDxClientSessionActivity(destinationHost,
destinationRealm);
ActivityContextInterface clientACI=this.acif.getActivityContextInterface(clientSession);
clientACI.attach(this.sbbContext.getSbbLocalObject());
UserAuthorizationRequest UAR = clientSession.createUserAuthorizationRequest();
// < User-Authorization-Request> ::= < Diameter Header: 300, REQ, PXY, 16777216 >
// < Session-Id >
// { Vendor-Specific-Application-Id }
// { Auth-Session-State }
UAR.setAuthSessionState(AuthSessionStateType.STATE_MAINTAINED);
// { Origin-Host }
// { Origin-Realm }
// [ Destination-Host ]
// { Destination-Realm }
// { User-Name }
UAR.setUserName("adam.b");
// *[ Supported-Features ]
// { Public-Identity }
UAR.setPublicIdentity("sip:adam.b@travel.contanct.com");
// { Visited-Network-Identifier }
UAR.setVisitedNetworkIdentifier("visit.airport.moscow.ru");
// [ User-Authorization-Type ]
UAR.setUserAuthorizationType(UserAuthorizationType.DE_REGISTRATION);
// [ UAR-Flags ]
// *[ AVP ]
// *[ Proxy-Info ]
// *[ Route-Record ]
// Send the message
tracer.info("Diameter Cx/Dx example: Sending UAR:\n"+UAR);
clientSession.sendUserAuthorizationRequest(UAR);
tracer.info("Diameter Cx/Dx example: Sent UAR:\n"+UAR);
}
catch (CreateActivityException e) {
tracer.severe("Unable to create Cx/Dx Client Session Activity.", e);
}
catch (IOException e) {
tracer.severe("Failed to send Cx/Dx User-Authorization-Request.", e);
}
}
...
public void onUserAuthorizationAnswer(UserAuthorizationAnswer event,
ActivityContextInterface aci) {
tracer.info("Diameter Cx/Dx example: receveid UAA:\n"+event);
if(event.getResultCode() / 1000 != 2) {
tracer.info("Diameter Cx/Dx example: receveid UAA with wrong result code:\n" +
event.getResultCode());
return;
}
tracer.info("Diameter Cx/Dx example: Acting as SCSCF after receiving REGISTER from ICSCF");
// HSS responded to our call, here we would forward REGISTER to S-CSCF,
// however lets not do that, its easier to set up it like that
// lets act as S-CSCF, which received REGISTER and sends SAR
try{
//Detach, this will die
aci.detach(this.sbbContext.getSbbLocalObject());
DiameterIdentity destinationHost = new DiameterIdentity("aaa://" +
getProperty("destination.ip") + ":" + getProperty("destination.port"));
DiameterIdentity destinationRealm =
new DiameterIdentity((String)getProperty("destination.realm"));
//create SAR/SAA activity
CxDxClientSession clientSession = this.provider.
createCxDxClientSessionActivity(destinationHost, destinationRealm);
ActivityContextInterface clientACI = this.acif.
getActivityContextInterface(clientSession);
clientACI.attach(this.sbbContext.getSbbLocalObject());
ServerAssignmentRequest SAR = clientSession.createServerAssignmentRequest();
// <Server-Assignment-Request> ::= < Diameter Header: 301, REQ, PXY, 16777216 >
// < Session-Id >
// { Vendor-Specific-Application-Id }
// { Auth-Session-State }
SAR.setAuthSessionState(AuthSessionStateType.STATE_MAINTAINED);
// { Origin-Host }
// { Origin-Realm }
// [ Destination-Host ]
// { Destination-Realm }
// [ User-Name ]
SAR.setUserName("adam.b");
// *[ Supported-Features ]
// *[ Public-Identity ]
SAR.setPublicIdentity("sip:adam.b@travel.contanct.com");
// [ Wildcarded-PSI ]
// [ Wildcarded-IMPU ]
// { Server-Name }
SAR.setServerName("x123.s.cscf.local.domain.org");
// { Server-Assignment-Type }
SAR.setServerAssignmentType(ServerAssignmentType.USER_DEREGISTRATION);
// { User-Data-Already-Available }
SAR.setUserDataAlreadyAvailable(
UserDataAlreadyAvailable.USER_DATA_NOT_AVAILABLE);
// [ SCSCF-Restoration-Info ]
// [ Multiple-Registration-Indication ]
// *[ AVP ]
// *[ Proxy-Info ]
// *[ Route-Record ]
// Send the SAR.
tracer.info("Diameter Cx/Dx example: Sending SAR:\n"+SAR);
clientSession.sendServerAssignmentRequest(SAR);
tracer.info("Diameter Cx/Dx example: Sent SAR:\n"+SAR);
}
catch (CreateActivityException e) {
tracer.severe("Unable to create Cx/Dx Client Session Activity.", e);
}
catch (IOException e) {
tracer.severe("Failed to send Cx/Dx User-Authorization-Request.", e);
}
}