Create | Render | Animate. Shade X Early Access Program Lets You Get Started Today
More...
Open, Display and Present Your 3D models on iPhone and iPad for free
More...
Desktop, iPhone and Android Apps Easily with x 10 faster graphics, in-app purchases and iPhone 5 support!
More...
Valentina DB, Reports and Pro: Now Supports SQLite
More...Valentina technology release 2.5 introduced the Valentina SSL Adapter. Valentina SSL Adapter allows you to establish secure, SSL connections between your Valentina based solution and Valentina Embedded Server.
Valentina Office Server and Valentina Studio incorporate support for the Valentina SSL Adapter. SSL is optional in Valentina Developer Network and implemented as an optional adaptor for Valentina Embedded Server.
To deploy support in an Embedded Server-based solution, you will need to pass your own SSL Adapter key in the same way you deploy your developer code for Valentina Embedded Server.The server have a default port_SSL of 0. However, you can allow your server to listen to two ports at a time: a secure port and a non-secure port. You can entirely disable the non-secure port by specifying this in the server’s .ini file.
Here is how you make a connection to a Valentina Server without SSL.
connection = new VConnection( host, user, passw, port )
connection.Open()
Here is how you make a connection to a Valentina Server with SSL.
connection = new VConnection( host, user, passw, port )
connection.UseSSL()
connection.Open()