Click on the slide!

Shade 13 Announced

Get Started Using Future Version Now

Create | Render | Animate. Shade X Early Access Program Lets You Get Started Today

More...
Click on the slide!

Shade 3D Mobile for iOS

Free 3D Model Viewer for iOS

Open, Display and Present Your 3D models on iPhone and iPad for free

More...
Click on the slide!

LiveCode 5.5

Easy, No Compile Programming

Desktop, iPhone and Android Apps Easily with x 10 faster graphics, in-app purchases and iPhone 5 support!

More...
Click on the slide!

Franklin 3D

3D Game Engine for LiveCode, REAL Studio

Professional Cross Platform 3D Engine

More...
Click on the slide!

Valentina 4.9

Fast, Cross-Platform Database System

Valentina DB, Reports and Pro: Now Supports SQLite

More...
Frontpage Slideshow (version 2.0.0) - Copyright © 2006-2008 by JoomlaWorks

Connect to a server using SSL?

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 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.

Makin a non-SSL Connection to a Server

Here is how you make a connection to a Valentina Server without SSL.

connection = new VConnection( host, user, passw, port )
connection.Open()

Makin an SSL Connection to a Server

Here is how you make a connection to a Valentina Server with SSL.

connection = new VConnection( host, user, passw, port )
connection.UseSSL()
connection.Open()