RTC Forums

Subscription => Support => Topic started by: andreag0 on December 13, 2018, 10:40:34 AM



Title: StreamSec Tools 4 and rtcSDK_SSec plugins
Post by: andreag0 on December 13, 2018, 10:40:34 AM
Hello,
how I can compile the rtcSDK_SSec plugins with StreamSec Tools 4?
Or... there is some other package to create the RealThinClient 9 crypto plugin with StreamSec Tools 4?

Thank you.

Regards
Andrea


Title: Re: StreamSec Tools 4 and rtcSDK_SSec plugins
Post by: K. Okada (RTC) on December 13, 2018, 11:42:23 AM
1. Open rtcSDK_STMT project in the LibPlugins folder.

This is the
    RealThinClient SDK - StreamSecIV plugin
    ( rtcSDK_SSec is for StreamSec II )

2. Build the project
    You need StreamSec IV installed (in your Library Path).

3. Install the package .





Title: Re: StreamSec Tools 4 and rtcSDK_SSec plugins
Post by: K. Okada (RTC) on December 13, 2018, 11:49:12 AM
One more note:

rtcSDK_STMT project depends on a StreamSecIV runtime library.
And you might get a compile error saying
Required package 'StrSecIV140' not found."

If you see the rtcSDK_STMT.dpr source,
You'd see these lines.
----
requires
  rtcSDK,
  StrSecIV140;
-----

Change the StrSecIV runtime package name
according to your StreamSec package name ,
 usually based on your compiler version,

i.e.
----
requires
  rtcSDK,
  StrSecIV310;
-----



Title: Re: StreamSec Tools 4 and rtcSDK_SSec plugins
Post by: andreag0 on December 13, 2018, 03:34:37 PM
Thank you.