New package for FPC built-in TCP and HTTP transport protocols (client/server).

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6001 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
inoussa
2017-08-15 18:37:35 +00:00
parent fcf442a847
commit 6055234ef7
2 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<Package Version="4">
<PathDelim Value="\"/>
<Name Value="wst_fcltransport"/>
<Type Value="RunAndDesignTime"/>
<Author Value="Inoussa OUEDRAOGO"/>
<CompilerOptions>
<Version Value="11"/>
<PathDelim Value="\"/>
<SearchPaths>
<OtherUnitFiles Value="..\.."/>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)\"/>
</SearchPaths>
</CompilerOptions>
<Description Value="Web Services Toolkit transport layer making use of the FPC built-in transport protocols for client and server.
The &quot;Web Service Toolkit” (WST) is a web-services consumption and authoring toolkit for FPC/Lazarus and Delphi developers. WST has support for SOAP,XMLRPC, JSON-RPC, a custom binary serialization formats and WSDL for services description. The supported transport protocols include HTTP, TCP and a library-base (for an in-process communication) tranport."/>
<License Value="Modified LGPL"/>
<Version Minor="8"/>
<Files Count="4">
<Item1>
<Filename Value="..\..\fpc_http_protocol.pas"/>
<UnitName Value="fpc_http_protocol"/>
</Item1>
<Item2>
<Filename Value="..\..\fpc_tcp_protocol.pas"/>
<UnitName Value="fpc_tcp_protocol"/>
</Item2>
<Item3>
<Filename Value="..\..\fpc_http_server.pas"/>
<UnitName Value="fpc_http_server"/>
</Item3>
<Item4>
<Filename Value="..\..\fpc_tcp_server.pas"/>
<UnitName Value="fpc_tcp_server"/>
</Item4>
</Files>
<RequiredPkgs Count="2">
<Item1>
<PackageName Value="wst_core"/>
</Item1>
<Item2>
<PackageName Value="FCL"/>
</Item2>
</RequiredPkgs>
<UsageOptions>
<UnitPath Value="$(PkgOutDir)"/>
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
</PublishOptions>
</Package>
</CONFIG>

View File

@ -0,0 +1,22 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit wst_fcltransport;
{$warn 5023 off : no warning about unused units}
interface
uses
fpc_http_protocol, fpc_tcp_protocol, fpc_http_server, fpc_tcp_server,
LazarusPackageIntf;
implementation
procedure Register;
begin
end;
initialization
RegisterPackage('wst_fcltransport', @Register);
end.