Author Topic: T-Server for Cisco UCM can't connect to .net voice platform sdK 7.6 application  (Read 3871 times)

Offline Fredrick

  • Newbie
  • *
  • Posts: 3
  • Karma: 0
Voice platform Sdk 7.6 sample Softphone application can connect with T-Server for Cisco Unified Communications Manager, Version: 8.0.001.01. It throws null value when we are register dn, and tserver protocol status also in closed status.But using the genesys platform SDK 7.2 version DLL its working properly. we are getting response from tserver correctly. Why?Can you please  anyone share idea regarding this?

Offline René

  • Administrator
  • Hero Member
  • *****
  • Posts: 1832
  • Karma: 62
Hi,

Can you post here log of T-Server?

R.

Offline nareshgenesys

  • Newbie
  • *
  • Posts: 1
  • Karma: 0
What is logged in the Platform SDK debug log?
Can you test with the latest Platform SDK 8.0.2?

Offline René

  • Administrator
  • Hero Member
  • *****
  • Posts: 1832
  • Karma: 62
Hi Fredrick,

Based on provided logs your app doesn't even connect to T-Server when using 7.6 release of PSDK. Honestly, it's a bit strange as connection management is part of T-Server Common Part and I know from my own experience that PSDK 7.6 works.

Could you post here your code?

R.

Offline Fredrick

  • Newbie
  • *
  • Posts: 3
  • Karma: 0
Hi Rene,

Ya..its like strange...its not even connects T-server....it throws protocol exception...but when i am using 7.2 libraries instead of 7.6 server responding well...it gives all events properly...but with same code using 7.2, 7.5and 7.6 dll connects with Avaya communication manager tserver properly..i suspects about UCM 8.0..

here is that code for t-server connection...

      public TServerProtocol tServerProtocol;

      public TServerProtocol DoConnect()
      {
          try
          {
              Uri tServerUri = new Uri("tcp://" + TServerHost + ":" + TServerPort);
              tServerProtocol = new TServerProtocol(new Endpoint(TServerName, tServerUri));
             
              tServerProtocol.Open();
              return tServerProtocol;
          }
          catch (Exception ex)
          {
              throw new Exception(ex.ToString());
          }
      }

Offline René

  • Administrator
  • Hero Member
  • *****
  • Posts: 1832
  • Karma: 62
Hi,

What kind of exception you get when trying to establish connection with T-Server?

R.

Offline Fredrick

  • Newbie
  • *
  • Posts: 3
  • Karma: 0
Hi ,

i am getting the following error when i am using 7.6 v dll in genesys voice platform sample code. but using same code with 7.2 v dll iam not getting this error. same t-server connection will be good for 7.2.

"Exception Occured during channel opening"

"System.Net.Sockets.SocketException: An invalid Argument was supplied"


Offline domenicp

  • Newbie
  • *
  • Posts: 2
  • Karma: 0
We have the same exact issue.  We can connect to TServer for CUCM using 7.6 SDK or higher.  With the 7.2 SDK, it works.  Anyone have any resolution?