Home
CSC4D Programmer`s Manual (Delphi)
Contents
1. NBR_LISTEN_SOCKS to 50 e Changed MAX_FILE_BUFFER_SIZE to 30000 e Changed DEFAULT_FILE_BUFFER_SIZE to 10000 e Added CSC_SET_PAD_TX_INDEX and CSC_SET_PAD_RX_INDEX e Added cscDataCRC and cscFileCRC cscGetInteger Chan CSC_GET_SOCKET returns actual socket Added cscCreateUDP cscGetUDP cscCreateUDP e Added cscNetToHost32 18 Version 6 1 September 8 2010 Fixed cscCreateUDP not saving socket so not closed later Changed default connect timeout from 60 seconds to 10 seconds Changed Pass RotateCount lt 0 to cscResponse to return rightmost 31 bits of encrypted binary value Fixed vSock slot freed when connect fails Added cscReadSize returns bytes ready to be read Added MakeDotted4 to make dotted IP address from its 4 components Added CONTROL example program Version 6 2 March 5 2012 Added support for Delphi XE2 Added function cscMakeDotted4 Corrected Julian date function Added additional diagnostics to detect congestion in csc vs c Fixed cscReadSize worked only for vSock 0 Fixed CSC_SET_TIMEOUT_VALUE not being passed to csc vs Fixed cscChallenge uses leading zeros to pad to 8 chars Changed DEFAULT_PACKET_TIMEOUT to 35000 Added error text for VS_ errors Added functions cscPutFileExt amp cscCryptoPutFileExt Added functions cscGetFileExt amp cscCryptoGetFileExt Fixed problem receiving file with same name from two clients Version 6 3 July 26 2013 Added support for Delphi XE3
2. 2007 e Added CSC_GET_DAYS_LEFT to cscGetInteger Added CSC_FILE_TOO_LARGE error code e Allow multiple listen sockets e Changed cscAttach cscAwaitConnect cscAcceptConnect cscServer e Removed cscSendMessage e Added cscDataMessage cscConnectMessage Increased NBR_DATA_SOCKS from 128 to 1024 e Modified CSC_SET_FILE_PATH to also set path for individual data socket e Append 1 2 etc to filename if file already exists for cscGetFile Added VS_SET_LINGER to cscSetInteger e Default linger time reduced to 200 ms e cscAttach now returns Days Left for evaluation version Version 5 0 October 9 2008 e _cscSetInteger Sock CSC_SET_LINGER LingerTime returns LingerTime e Added cscLaunch Increased NBR_LISTEN_SOCKS to 64 e Added GetPrice example program Added append mode CSC_SET_FILE_APPEND e Added overwrite mode CSC_SET_FILE_OVERWRITE e Added cscCryptoGetFile and cscCryptoPutFile e Added cscCryptoGetData and cscCryptoPutData e Added cscFillRandom e Added CSC_DATA_SIZE error code BufLen too big e Added CSC_SET_DELAY_TIME e Increased TCP buffer size to 1500 e Socket portion rewritten for significantly faster speed Version 6 0 August 5 2009 e Supports Win64 although Delphi thru 2010 does not e Added cscPutPacket and cscGetPacket e Added cscCryptoPutPacket and cscCryptoGetPacket e Added CSC_SET_MAX_PACKET_SIZE and CSC_GET_MAX_PACKET_SIZE e Changed NBR_DATA_SOCKS to 1000
3. CSC User s Manual CSC USR PDF e CSC Reference Manual CSC REF PDF The CSC_4D Programmer s Manual CSC_4D is the language specific Delphi manual All language dependent programming issues are discussed in this manual Information needed to compile programs in a Delphi environment is provided in this manual The CSC User s Manual CSC_USR discusses language independent issues Information on Client Server protocols as well as purchasing and license information is provided in the manual The CSC Reference Manual CSC_REF contains details on each individual CSC function The documentation is also provided on our web site at http www marshallsoft com csc4d htm 1 3 Example Program The following code segment attempts to connect to the server connect to server DataSock cscClient HostName HostPort if DataSock lt 0 then begin DisplayLine client mHistory cscClient fails DisplayError client mHistory DataSock exit end connected now wait 7 seconds for greeting message from server Call DisplayText client mHistory Awaiting greeting message Code cscAwaitData DataSock 7000 if Code 0 then begin DisplayLine client mHistory Greeting message not seen exit end Also see the example programs in the CSC4D APPS sub directory 1 4 Installation 1 Before installation of CSC4D a Delphi compiler should already be installed 2 Unzip CSC4D70 ZIP evalua
4. File_Client The File_Client example client program connects to the File_Server example server program in order to download files Files are decrypted when received See the comments in File_Client_Pgm pas or see PROTOCOL TXT for a description of the protocol used The File_Client project files are File Client PRJ DPR File Client PGM DFM File Client PGM PAS Delphi project file Delphi form file Program source code 15 4 1 8 Auth_Server The Auth_Server example program demonstrates how server side authentication challenge response is done in CSC4D Auth_Server accepts connections from Auth_Client The File_Server project files are Auth Server PRJ DPR Delphi project file Auth Server PGM DFM Delphi form file Auth Server PGM PAS Program source code 4 1 9 Auth_Client The Auth_Client example program demonstrates how client side authentication challenge response is done in CSC4D Auth_Server accepts connections from Auth_Client The File_Client project files are Auth Client PRJ DPR Delphi project file Auth Client PGM DFM Delphi form file Auth Client PGM PAS Program source code 4 1 10 Download Download is an example client that connects to the MarshallSoft web site HTTP server and downloads a file from the files directory The Download project files are Download PRJ DPR Delphi project file Download PGM DFM Delphi form file Download _PGM PAS Program source code 4 1 11 GetPri
5. Libraries The Client Server Communication Library component is a Win32 dynamic link library DLL A DLL is characterized by the fact that it need not be loaded until required by an application program and that only one copy of the DLL is necessary regardless of the number of application programs that use it Contrast this to the traditional static library that is bound to each and every application that uses it at link time An important advantage that DLLs have over other popular library formats such as VBX or OCX is that DLLs are callable by all Windows applications Since DLLs are the building blocks of the Windows Operating System they will not be replaced by a newer technology The following files can be found in the DLL sub directory when SETUP is run esc32 dll Win32 version of CSC csc64 dll Win64 version of CSC 2 2 Keycode CSC32 DLL has a keycode encoded within it The keycode is a 9 or 10 digit decimal number unless it is 0 and will be found in the file KEYCODE PAS The keycode for the evaluation version is 0 You will receive a new key code when registering The KEYCODE is passed to cscAttach If an error message value 74 is returned when calling escAttach it means that the keycode in the CSC application does not match the keycode in the DLL After registering it is best to remove the evaluation version of the CSC32 DLL and CSC64 DLL from the Windows search 2 3 Win32 STDCALL and DECLSPEC CSC is written in ANS
6. PRJ DPR Delphi project file SendUDP PGM DFM Delphi form file SendUDP PGM PAS Program source code 4 1 3 RecvUDP The RecvUDP example program receives multicast UDP data packets Test using the SendUDP program The RecvUDP project files are RecvUDP_PRJ DPR Delphi project file RecvUDP_PGM DFM Delphi form file RecvUDP_PGM PAS Program source code 14 4 1 4 CLIENT CLIENT is an example client program that operates as a client that connects to the example server program SERVER The CLIENT project files are CLIENT PRJ DPR Delphi project file CLIENT PGM DFM Delphi form file CLIENT PGM PAS Program source code 4 1 5 SERVER SERVER is an example server program that accepts connections from the example client program CLIENT SERVER accepts a maximum of 3 connections clients at any one time The SERVER project files are SERVER PRJ DPR Delphi project file SERVER PGM DFM Delphi form file SERVER PGM PAS Program source code 4 1 6 File_Server The File_Server example server program can accept multiple connections and allows clients to download files Files are encrypted when transmitted See the comments in File_Server_Pgm pas or see PROTOCOL TXT for a description of the protocol used The File_Server project files are File Server PRJ DPR File Server PGM DFM File Server PGM PAS Delphi project file Delphi form file Program source code 4 1 7
7. Platform window is displayed click 64 bit Windows 3 Click box to left of Target Platforms Win32 4 Right click on 32 bit Windows then click Remove Platform You must also convert display pas by replacing all reference to csc32 with csc64 The file x64 zip contains the example programs after modification to x64 12 3 2 Compiling Programs The example programs are compiled from the Delphi development environment using the provided Delphi project files DPR The example programs will compile and run with any version of Delphi They have each been tested using Delphi 1 through Delphi 5 Delphi 2005 through Delphi 2007 Embarcadero Delphi 2009 amp 2010 Embarcadero Delphi XE and Embarcadero Delphi XE2 through XE8 The file x64 zip contains the example programs after modification to x64 Respond with OK to the message Cannot find resource file and it will be properly rebuilt See Section 4 Example Programs for more details on each of the example programs 3 3 Compiling CSC Source The source code for the CSC DLL s is written in standard ANSI C CSC C and has been compiled using Microsoft Visual C Source code for the CSC library can be purchased at the same time as a CSC developer license is purchased CSC may also be compiled using Borland C C or Watcom C C compilers If CSC C is compiled using Borland or Watcom compilers the resulting DLL can only be used by applications compiled with the same
8. and XE4 Fixed cscCryptoGetFileExt and cscCryptoPutFileExt were not using local file path Added cscFillRandom Seed uses random seed if passed seed is zero Added cscSetInteger Port CSC_SET_CLOSE_TIMEOUT Tics sets max tics before socket is forced closed Added New example programs that use AES Advanced Encryption Standard Fixed cscResolve was sometimes returning bogus IP addresses after the first Version 7 0 April 15 2015 Added cscMulticast that receives multicast UDP packets Added cscClientExt that binds to a local IP address for multi homed computers Fixed CSC_BAD_OFFSET error sometimes incorrectly returned by crcCryptoPutFile 19
9. s Codegear latest Delphi product with support for both Win32 and Microsoft NET Framework Application programs written using Delphi 2005 2006 2007 2009 2010 and XE will use CSC32 DLL When loading Win32 Delphi projects with Delphi 2005 2006 2007 2009 2010 XE a window entitled Project Upgrade may be displayed In this case the project must be upgraded before it can be opened Please select which project type you wish to target Delphi for NET Delphi for Win32 3 1 6 Delphi XE2 XE3 XE4 XE5 XE6 XE7 XE8 Delphi XE2 through XE8 can create both 32 bit and 64 bit executables Note that although a 32 bit executable can run on both 32 bit and 64 bit Windows machines a 64 bit executable can run only on a 64 bit Windows machine Step 1 Edit Files 1 Open file _PGM PAS using any text editor 2 Replace CSC32 with CSC64 in the uses clause 3 Open file _PRJ DPR using any text editor 4 Replace CSC32 with CSC64 Step 2 Delete Win32 files 1 Delete all DCU files that may have been created under Win32 Delphi 2 Delete all DPROJ files that may have been created under Win32 Delphi Step 3 Change Win32 to Win64 in Delphi XE2 XE3 XE4 Project Manager Start Delphi XE2 XE3 XE4 XES XE6 XE7 or XE8 load the project _PRJ DPR then open the Project Manager found under View Project Manager on the Delphi menu bar 1 Right click on Target Platforms Win32 and click on Add Platform 2 When the Select
10. the application program to which you want to add CSC code The files will be in the APPS directory folder created when SETUP was run usually C CSC4D APPS Add CSC 64 and keycode to the uses clause in the application source program PAS For example uses csc64 keycode Alternatively the above keycode can be left out and instead the numerical keycode value found in keycode pas can be pasted directly into the call to cscAttach Also add csc64 to the project file DPR For example uses csc64 in csc64 pas pass the key code 0 for evaluation version Code cscAttach 1 0 123456789 2 6 Example Protocol Several of the Client Server Communications Library demonstration programs use the following example protocol 1 The server must be running first at a specified IP address using a specified port number known to both client and server A host name may be used instead of an IP address The server waits for a connection attempt by a client 2 The client attempts to connect to the server 3 The server accepts the connection from the client and then sends its greeting message such as CSC Example Server 4 The client receives the server s greeting message 5 The client sends a request command string to the server 6 The server receives the client s request 7 The server sends back its response string 8 Repeat steps 5 6 and 7 until done 9 The client closes its conne
11. time passwords for improved security Can encrypt decrypt data and files being transmitted Use with the MarshallSoft AES Encryption Library for strong encryption Supports challenge response authentication Can send a Windows message when a connection is ready to accept Can send a Windows message when incoming data is ready to be read Can send and receive data buffers or entire files Servers can handle multiple connections concurrently Supports secure and private messaging Create chat server and clients Create client server file transfer Create client programs to talk to TCP servers POP3 IMAP HTTP SMTP DNS Create SMTP proxy programs extracting a copy of all recipient addresses Create POP3 proxy programs that filter incoming email for Spam Create HTTP proxy used to filter content Can connect to a device such as a relay device scale device GPS device or embedded computer device that is controlled by sending commands to its TCP IP address Allows multiple servers and clients to run simultaneously Royalty free distribution with your compiled application Evaluation versions are fully functional No unlock code is required Is fully thread safe Supports Windows 95 98 Me NT 2000 2003 2012 XP Vista Windows 7 Windows 8 Works with all versions of Delphi including Delphi 2005 through 2007 Embarcadero Delphi 2009 2010 Embarcadero Delphi XE XE2 XE4 XE5 XE6 XE7 and XE8 Does not depend on support libraries Makes
12. Client Server Communications Library for Delphi Programmer s Manual CSC4D Version 7 0 April 15 2015 This software is provided as is There are no warranties expressed or implied Copyright C 2015 All rights reserved MarshallSoft Computing Inc Post Office Box 4543 Huntsville AL 35815 Voice 1 256 881 4630 Web www marshallsoft com MARSHALLSOFT is a registered trademark of MarshallSoft Computing TABLE OF CONTENTS el I i 1 1 1 I 1 1 CS 2 2 2 2 2 2 2 Cc 3 HADOPRPWNFPYQATNA OF WD l 32 323 ntroduction Features Documentation Set Example Program Installation Uninstalling Pricing Updates Library Overview Dynamic Link Libraries Keycode Win32 STDCALL and DECLSPEC Adding CSC4D to Your 32 bit Project Adding CSC4D to Your 64 bit Project Example Protocol Error Display ompiler Issues Delphi Versions Compiling Programs Compiling CSC Source 4 Delphi Example Programs 5 Revision History Page Page Page Page Page Page Page Page Page Page Page Page Page Page Page Page Page Page Page Page Page Page OMAWMDeAOAIATATNATAAHN HA WW PRPPRPRPRPRPR ORWWHEEROO 1 Introduction The Client Server Communications Library for Delphi CSC4D is a toolkit that allows software developers to quickly develop server client TCP IP and TCP UDP applications in Delphi for Win32 and Delphi for Win64 The Client Server Comm
13. Delphi 2010 Embarcadero Delphi XE Embarcadero Delphi XE2 XE3 XE4 XES XE6 XE7 XE8 3 1 Delphi Versions Applications written with Delphi link with the same identical DLL s as for applications written in all other supported languages such as C C and Visual Basic Beginning with Delphi 2003 Delphi has two personalities 1 Win32 Delphi and 2 Delphi for NET Win32 Delphi programs are a continuation of the Delphi language as seen in earlier versions of Delphi Delphi NET is a version of Delphi designed to use the Microsoft NET Framework 3 1 1 Delphi 1 Delphi version 1 generates Win16 code CSC32 DLL is a 32 bit DLL and cannot be called from 16 bit application programs such as those compiled by Delphi 1 3 1 2 Delphi 2 Delphi version 2 and above generates WIN32 code Therefore applications written using Delphi 2 will link with CSC32 DLL Strings can be much larger than 255 bytes Delphi 2 seems to have a problem with some of the string functions Although the default is large strings some of the string functions such as StrPas copy only 255 bytes 3 1 3 Delphi 3 4 5 and 6 There are no known Delphi problems impacting our example programs in Delphi version 3 and above Applications written using Delphi 3 and above will link with CSC32 DLL 3 1 4 Delphi 7 Beginning in Delphi 7 the filename of a unit must match the unit name 11 3 1 5 Delphi 2005 through 2010 Delphi 2005 though Delphi 2010 are Borland
14. I C and is compiled using the _stdcall and _declspec keywords This means that CSC uses the same calling conventions and file naming conventions as the Win32 Win64 API In particular function names are NOT decorated There are no leading underscores or trailing size strings added to function names The CSC32 DLL and CSC64 DLL functions may be called from any Windows application program capable of calling the Windows API provided that the proper declaration file is used 2 4 Adding CSC4D to Your 32 bit Project Copy CSC32 PAS to the same directory folder as the application program to which you want to add CSC code The files will be in the APPS directory folder created when SETUP was run usually C CSC4D APPS Add CSC32 and keycode to the uses clause in the application source program PAS For example uses csc32 keycode Alternatively the above keycode can be left out and instead the numerical keycode value found in keycode pas can be pasted directly into the call to cscAttach Also add csc32 to the project file DPR For example uses esc32 in csc32 pas pass the key code 0 for evaluation version Code cscAttach 1 0 123456789 2 5 Adding CSC4D to Your 64 bit Project If you are using Delphi XE2 XE3 XE4 XE5 XE6 XE7 XE8 to compile 64 bit projects unzip X64 ZIP in the CSC4D APPS directory that contains the 64 bit versions of the example programs Copy CSC64 PAS to the same directory folder as
15. ary SDK DLLs CSC32 DLL or CSC64 DLL can also be used from any language Visual C Visual Basic VB NET ACCESS EXCEL VBA Visual FoxPro COBOL Xbase dBase etc capable of calling the Windows API The Client Server Communications Programmer s Manual provides information needed to compile programs using CSC in a Delphi programming environment When comparing the Client Server Communications Library against our competition note that CSC is a standard Windows DLL NOT an OCX or ActiveX control CSC does NOT depend on ActiveX or Microsoft Foundation Class MFC or similar support libraries CSC is fully thread safe CSC functions can be called from applications not capable of using controls MarshallSoft also has versions of the Client Server Communications Library for C C CSC4C Visual Basic CSC4VB dBase CSC4DB Xbase CSC4XB and Visual FoxPro CSC4FP Each version of CSC uses the same DLLs CSC32 DLL or CSC64 DLL However the examples provided for each version are written for the specified programming language All versions of the Client Server Communications Library CSC can be downloaded from our web site at http www marshallsoft com client server communication htm 1 1 Features Some of the many features of the Client Server Communications Library SDK are as follows Supports both UDP and TCP protocols Supports both Win32 and Win64 Can be used to create both clients and servers Supports one
16. calls to core Windows API functions only Can be used with any program in any language capable of calling Windows API functions Can be purchased with or without ANSI C source code Updates are free for one year Source code updates are separate License covers all programming languages C C VB Delphi etc Free unlimited one year technical support for registered users Documentation online as well as in printable format A selection of Delphi Borland CodeGear Embarcadero example programs with full source code is included Refer to Section 6 for more details on each of the example projects SendUDP dpr RecvUDP dpr ver prj dpr client prj dpr server prj dpr auth client prj dpr auth_server prj dpr Control prj download prj File Server File Client GetPrice dpr POP3Stat dpr uNetTime dpr dpr dpr prj dpr prj dpr Transmits a UDP data packet to RecvUDP Receives multicast UDP packets from SendUDP Displays CSC version and build Example client program Example server program Authenticating client Authenticating server Controls device sends commands to its IP address Example download from web program Example file server Example file client Downloads stock price from finance yahoo com Returns the number of emails waiting on POP3 server UDP client gets Network Time 1 2 Documentation Set This is the first manual CSC_4D in the set e CSC4D Programmer s Manual CSC_4D PDF e
17. ce GetPrice is an example client that demonstrates how to download stock price quotes from Yahoo The GetPrice project files are GetPrice PRJ DPR Delphi project file GetPrice PGM DFM Delphi form file GetPrice PGM PAS Program source code 4 1 12 POP3Stat POP3Stat is an example client that logs onto a POP3 account and returns the number of emails waiting The POP3Stat project files are POP3Stat_PRJ DPR Delphi project file POP3Stat_PGM DFM Delphi form file POP3Stat_PGM PAS Program source code 16 4 1 13 uNetTime uNetTime is an example UDP client that connects to a Network Time Server on well known port 37 and gets the network time seconds since 1 January 1900 GMT from the server The default server is time A timefreq bldrdoc gov The uNetTime project files are uNetTime PRJ DPR Delphi project file uNetTime PGM DFM Delphi form file uNetTime PGM PAS Program source code 4 1 14 Control Control is an example console mode client that connects to a relay device that is controlled by sending commands to its TCP IP address The Control project files are Control PRJ DPR Delphi project file Control PGM DFM Delphi form file Control PGM PAS Program source code 17 5 Revision History CSC is written in ANSI C All language versions of CSC C C Visual Basic and Delphi use the same identical DLL Version 3 0 November 1 2005 e Initial Delphi release of CSC Version 4 0 April 25
18. compiler unless the STDCALL and DECLSPEC keywords are specified For more information on the C C version of CSC download the latest version of CSC4C from our web site athttp www marshallsoft com csc4c htm 13 4 Example Programs The DISPLAY PAS unit is used to display text in Delphi memos DISPLAY PAS contains 4 procedures DisplayChar Displays character DisplayString Displays string DisplayLine Displays line DisplayError Displays error message 4 1 Delphi Example Programs The example programs are designed to demonstrate the various capabilities of CSC4D The best way to become familiar with CSC4D is to study and run the example programs The example programs can be compiled with any version of 32 bit or 64 bit Delphi All example programs are located in the CSC4D APPS sub directory The CSC units used by the example programs are CSC32 PAS Win32 CSC unit CSC64 PAS Wino4 CSC unit 4 1 1 VERSION The VERSION example program displays the CSC version number build and registration string This is the first program to compile and build since it verifies that CSC32 DLL or CSC64 DLL is installed properly The VERSION project files are VER PRJ DPR Delphi project file VER_PGM DFM Delphi form file VER_PGM PAS Program source code 4 1 2 SendUDP The SendUDP example program transmits a UDP data packet It is used to test the RecvUDP program The SendUDP project files are SendUDP
19. ction to the server The server responds with the following response strings when presented with the corresponding requests REQ from the client REQ Response String Request Example Response Example WHO Sends name of the server WHO W_SERVER VER Sends server version VER 7 0 BYE OK then disconnects BYE OK The above protocol is just an example The programmer can create whatever protocol is required Request strings can be any length although it is best to keep them as short as possible Also refer to PROTOCOL TXT in the CSC4D APPS directory 2 7 Error Display The error message text associated with CSC error codes can be displayed by calling cscErrorText procedure DisplayError Memo TMemo ErrCode Integer var Code Integer Text String Ptr PChar begin if ErrCode lt 0 then begin GetMem Ptr 128 Code cscErrorText ErrCode Ptr 127 if Code gt 0 Then DisplayLine Memo StrPas Ptr Text Format CSC error d ErrCode FreeMem Ptr 128 DisplayLine Memo Text end end 10 3 Compiler Issues The Client Server Communications Library for Delphi component library supports all versions of Borland CodeGear Embarcadero Delphi for Win32 Win64 as follows Borland Delphi 2 3 4 5 6 7 and 8 Borland Delphi 2005 Delphi 9 Borland Delphi 2006 Borland Turbo Delphi CodeGear Delphi 2007 CodeGear Delphi 2009 CodeGear
20. tes The license can be updated for e 30 if the update is ordered within one year of the original purchase or previous update e 55 is the update is ordered between 1 and 3 years of the original purchase or previous update e 75 if the update is ordered after three years of the original purchase or previous update The update price includes technical support for an additional year Note that the registered DLLs CSC32 DLL and CSC64 DLL never expire If source code was previously purchased updates to the source code can be purchased for 40 along with the license update 2 CSC Library Overview The Client Server Communications Library CSC has been tested on multiple computers running Windows 95 98 Me 2003 2008 2012 XP Vista Windows7 Windows8 and Windows NT 2000 The CSC4D library will work with all versions of Delphi Borland CodeGear Embarcadero including Delphi for Win64 Delphi 2010 and Embarcadero Delphi XE through XE8 The CSC32 DLL CSC64 DLL functions may be called by any Windows program capable of calling the Windows API provided that the proper declaration file is used The SETUP installation program will copy the Lib s and DLLs to the Windows directory Refer to Section 1 4 Installation After SETUP is run the CSC4D files are copied to the directory specified default CSC4D Three sub directories are created as follows DOCS All documentation files APPS All example cod DLLS All DLL s 2 1 Dynamic Link
21. tion version or CSCxxxxx ZIP registered version xxxxx is the Customer ID using any Windows unzip program 3 Run the installation program SETUP EXE which will install all CSC4D files SETUP will also copy CSC32 DLL and CSC64 DLL to the Windows directory Note that no DLL registration is required 1 5 Uninstalling Uninstalling CSC4D is very easy First delete the CSC4D project directory created when installing CSC4D Second delete CSC32 DLL CSC64 DLL from the Windows directory typically C WINDOWS for Windows 95 98 Me 2003 2012 XP VISTA Win7 Win8 or C WINNT for Windows NT 2000 1 6 Pricing A developer license for the Client Server Communications Library can be purchased for 115 USD or 195 USD with source code ANSI C to the library DLL Purchasing details can be found in Section 1 4 How to Purchase of the CSC User s Manual CSC_USR CSC can also be purchased together with the MarshallSoft AES Encryption Library AES for 175 USD or 275 USD with ANSII C source code Also see INVOICE TXT or http www marshallsoft com order htm 1 7 Updates When a developer license is purchased for CSC the developer will be sent a registered DLL plus a license file CSCxxxxx LIC The license file can be used to update the registered DLL for a period of one year from purchase Updates can be downloaded from http www marshallsoft com oem htm After one year the developer license must be updated to be able to download upda
22. unications Library CSC is a component library that uses the Windows API to create client and server programs Win32 and Win64 that can communicate with each other across any TCP or UDP network such as the Internet or a private network intranet or LAN local area net The CSC library can be used to communicate with other CSC programs or they can be used to communicate with other TCP programs such as DNS POP3 SMTP FTP HTTP etc CSC can also be used to connect to devices such as a relay device scale device GPS device or embedded computer device that is controlled by sending commands to its TCP IP address CSC can also be used to encrypt and decrypt data and files and can also be used with the MarshallSoft AES Encryption Library AES for strong encryption The Client Server Communications Library for Delphi CSC4D component library supports and has been tested with all 32 bit and 64 bit versions of Delphi including Borland Delphi 2 0 3 0 4 0 5 0 6 0 and 7 0 Borland Delphi 2005 amp 2006 Borland Turbo Delphi Codegear Delphi 2007 Embarcadero Delphi 2009 amp 2010 Embarcadero Delphi XE XE2 XE3 XE4 XE5 XE6 XE7 and XE8 CSC4D includes multiple Delphi example programs demonstrating client server protocols including examples that connect to HTTP web and POP3 servers as well as encrypt files CSC4D runs under all versions of Windows 95 98 ME 2000 2003 2012 NT XP Vista Win7 Win8 The Client Server Communications Libr
Download Pdf Manuals
Related Search
Related Contents
optimización de periféricos de entrada en el manejo de programas Toshiba 36HF72 36" TV Manuale di riferimento Wavelink Avalanche Mobility Center Linux Reference Guide Saeco Coffee Makers 15000721 Espresso Maker User Manual CAPÍTULO I - REVIEW Blue Angels F-18 Hornet Fabricante: Revell MANUEL D`INSTRUCTIONS IBM Flex System FC3171 8Gb SAN Switch Copyright © All rights reserved.
Failed to retrieve file