-
-
General
wodFTPServer component has two versions (both included in the
package):
wodFTPDCom is a COM object (wodFTPD.dll), designed to be
initialized dynamically from your code, and declared from
within your code. It does not have user interface, it is
windowless. Usually, you will initialize it with
- Dim WithEvents FTPD1 as wodFTPDCom
and wodFTPD as ActiveX control (wodFTPD.ocx) - designed to be put
on application's form using drag&drop from control toolbox. Once you
put it on the form, no special code is required to initialize it,
since your environment (usually VB) will handle it.
COM object licensing is not directly supported by any
container. Unlike ActiveX controls which are licensed the
moment you put them on the form (if you have licensed
version of wodFTPD, of course), you need one more line to
put in your code to license wodFTPD correctly:
-
- FTPD1.LicenseKey =
"put.your.key.here"
-
| Filename |
wodFTPD.DLL (wodFTPD64.DLL for
x64) |
| Class
name |
WeOnlyDo.wodFTPDCom.1 |
| Class ID |
{666BD44B-2AEC-4B73-8427-4E60E8EF42DB} |
| Events class
ID |
{0x33BB5751,0xA6B1,0x4E89,{0xBC,0xD5,0x73,0x88,0x41,0x60,0x26,0xC1}} |
|
Compatibility |
VB 5.0 and above, VFP
5.0 and above |
| Built
with |
Microsoft Visual Studio 2008
C++, OpenSSL |
| Required
DLLs |
None required, wodKeys.dll and
wodCertificate.dll optional, only if Certificate and Key
generation/loading/saving is used. |
-
| Filename |
wodFTPD.OCX (wodFTPD64.OCX for
x64) |
| Class
name |
WeOnlyDo.wodFTPD.1 |
| Class ID |
{EA76360A-BC23-4C10-94DB-B0B31C8E67AB} |
| Events class
ID |
{0xC4C7E5F1,0x1F17,0x4A7C,{0xB4,0x8D,0x6D,0x1B,0x10,0x3D,0x17,0x19}} |
|
Compatibility |
VB 5.0 and above, VFP
5.0 and above |
| Built
with |
Microsoft Visual Studio 2008
C++, OpenSSL |
| Required
DLLs |
None required, wodKeys.dll and
wodCertificate.dll optional, only if Certificate and Key
generation/loading/saving is used. |
-
|
IFtpUser |
{086DC1CA-5219-441C-A89B-895931DB3CA6} |
|
IFtpUsers |
{4BC79AD2-2151-47AB-9B2F-962A8E6ECBD3} |
|
IVirtualFolder |
{77B9A746-E6E8-47BA-AC87-711F15D28454} |
|
IVirtualFolders |
{D277885B-9425-4510-B1E8-E90BD42E557D} |
|
IwodFTPDNotify |
{3F42ED34-2CC2-40bf-8547-CA97F5F29C33} |
-
| Help
filename |
wodFTPD.CHM |
Distribution note
When you develop and distribute an application that uses
this component:
1. Choose between COM object (wodFTPD.DLL/wodFTPD64.DLL) and the ActiveX
control (wodFTPD.OCX/wodFTPD64.OCX) to include into the installation
package. Both versions are independent on each other.
2. You should include wodCertificate.DLL/wodCertificate64.DLL for Certificate management
- if it is needed in your application. wodFTPD does not depend on it
- only uses it for client authentication with the private key and
the certificate ( suitable for FTPS protocol ).
3. Above binaries can be included royalty-free in your
application.
4. Use RegSvr32.EXE (or any other installer package
creator) to register both the OCX and the DLL. Usually,
installer software will do this for you
5. Install the component file(s) into the user's
Windows SYSTEM32 folder. The component file(s) has/have
version information built into it. So, during installation,
you should ensure that you are not overwriting a newer
version.
Using licensed version
To use retail (licensed) version in your code, put your
license key into LicenseKey property, immediately after
initializing the component. For ActiveX control, you cannot
do this (there is no LicenseKey property) because your
license key will be read internally by wodFTPServer.
|