Examples of TShData


Examples of org.cipango.diameter.sh.data.TShData

  public void handle(DiameterMessage message) throws IOException
  {
    try
    {
      TShData data = TShData.Factory.parse(new ByteArrayInputStream(message.get(Sh.USER_DATA)));
      System.out.println(data.getShIMSData());
      ShDataDocument doc =  ShDataDocument.Factory.parse(new ByteArrayInputStream(message.get(Sh.USER_DATA)));
      TShData data2 = doc.getShData();
     
      System.out.println(data2.getShIMSData());
    }
    catch (Exception e)
    {
      e.printStackTrace();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.