Back to product page
- Introduction
- License agreement
- Getting Started
- Objects
- Enumerations
- wodHttpDLX
- Methods
- Properties
- Authentication
- AutoRedirect
- BindIP
- Blocking
- CertErrors
- Certificate
- Compression
- Hostname
- HTTPversion
- IgnoreCertErrors
- KeepAlive
- LastError
- LastErrorText
- LocalCertBag
- Login
- MyHostname
- MyIP
- Notification
- Password
- Port
- ProxyAuthentication
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- Request
- Response
- Secure
- Socket
- SSLCipherList
- State
- Timeout
- URL
- UseIPv6
- Version
- Events
- wodHttpNotify
- HttpCookie
- HttpCookies
- HttpHeader
- HttpHeaders
- HttpRequest
- HttpRequestFormPost
- HttpRequestFormUpload
- HttpResponse
- How to get support?
- Technical information
- Fast notifications interface
- Error list
Technical information
General
wodHttpDLX component has two versions (both included in the package): wodHttpDLXCom is a COM object (wodHttp.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 withDim WithEvents Http1 as wodHttpDLXCom
and wodHttpDLX as ActiveX control (wodHttp.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 wodHttpDLX, of course), you need one more line to put in your code to license wodHttpDLX correctly:
Http1.LicenseKey = "put.your.key.here"
COM Object information | |
---|---|
Filename | wodHttp.DLL (wodHttp64.DLL for x64) |
Class name | WeOnlyDo.wodHttpDLXCom.1 |
Class ID | {29E269FC-2F9B-4BCD-8975-FFF13240C4D5} |
Events class ID | {0x23C89F41,0x17AC,0x4049,{0xBF,0x22,0xEC,0x15,0x8C,0xB1,0x7B,0xFF}} |
Compatibility | VB 5.0 and above, VFP 5.0 and above |
Built with | Microsoft Visual Studio 2008 C++, OpenSSL |
Required DLLs | None required, wodCertificate.dll optional, only if Certificates are used. |
ActiveX Control information | |
---|---|
Filename | wodHttp.OCX (wodHttp64.OCX for x64) |
Class name | WeOnlyDo.wodHttpDLX.1 |
Class ID | {A353B0AB-3DFD-44AD-AE21-0ADF6FAB1557} |
Events class ID | {0x0A6B11E2,0x7502,0x48B7,{0x98,0x87,0xAF,0xBD,0xA6,0x42,0x0E,0x4E}} |
Compatibility | VB 5.0 and above, VFP 5.0 and above |
Built with | Microsoft Visual Studio 2008 C++, OpenSSL |
Required DLLs | None required, wodCertificate.dll optional, only if Certificates are used. |
Interfaces | |
---|---|
IHttpCookie | {E74B1E88-2635-4605-9AF0-0E23FF947801} |
IHttpCookies | {9C0DDDFC-D330-487C-B5BC-19FBF0E42618} |
IHttpHeader | {C6014517-DB5A-4FC8-90AC-59EE3F0B0A31} |
IHttpHeaders | {2DD568CC-335D-400B-B559-C06B9868DDB1} |
IHttpRequest | {C42EDC68-33DA-4C94-BCE8-3588C050B555} |
IHttpRequestFormPort | {9D798EF5-8F1F-4E08-87A1-AF1C650820C9} |
IHttpRequestFormUpload | {8EB44747-FBB7-4221-B73C-97BC555A483D} |
IHttpResponse | {68FC56FF-3553-4D86-AAFD-CC9B54602FEA} |
IwodHttpNotify | {61352BF9-8082-4ce2-821A-FEBD8DC196BE} |
Documentation | |
---|---|
Help filename | wodHttp.CHM |
Distribution note
When you develop and distribute an application that uses this component:
1. Choose between COM object (wodHttp.DLL/wodHttp64.DLL) and the ActiveX control (wodHttp.OCX/wodHttp64.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. wodHttpDLX does not depend on it - only uses it for client authentication with the certificate.
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 wodHttpDLX.