OpenIMS - Mobicents AS integration

223 views Asked by At

I am newbie to use Mobicents AS and would like to integrate mobicents AS with OpenIMScore. Could any one referred me link or guide me here

Below are my configuration details and running in VM:

10.0.0.9    hss.net1.test
10.0.0.10   pcscf.net1.test
10.0.0.11   icscf.net1.test
10.0.0.12   scscf.net1.test

I am able to make a Voice/Video call with in the OpenIMS. Can any one guide me here please.

Regards, -kranti

1

There are 1 answers

1
Ron McLeod On

After authentication, the S-CSCF should send a SAR to the HSS. In the response, there should be a Cx-User-Data AVP which contains a XML document with the IMS data for the subscriber. As a starting point, you could provision a single InitialFilterCriteria with no TriggerPoints, and a default ApplicationServer which will handle all SIP methods.

Here's a simple working example from my test bed:

<?xml version="1.0" encoding="UTF-8"?>
<IMSSubscription>
  <PrivateID>[email protected]</PrivateID>
  <ServiceProfile>
    <PublicIdentity>
      <BarringIndication>0</BarringIndication>
      <Identity>sip:[email protected]</Identity>
    </PublicIdentity>
    <InitialFilterCriteria>
      <Priority>0</Priority>
      <ApplicationServer>
        <ServerName>sip:[email protected]</ServerName>
        <DefaultHandling>0</DefaultHandling>
      </ApplicationServer>
    </InitialFilterCriteria>
  </ServiceProfile>
</IMSSubscription>