metaframe presentation server client for 32 bit windows
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7291
Terminal Server Client 0.150
Terminal Server Client (tsclient) is a frontend for rdesktop and other remote desktop tools. more>>
Terminal Server Client (tsclient) is a frontend for rdesktop and other remote desktop tools.
Main features:
- GTK+-2 frontend for rdesktop and other remote desktop tools
- GNOME panel applet to quickly launch saved profiles
- reads and writes profiles in the Microsoft format (.rdp), maintaining compatability with the Microsoft client
- similar look and functionality to the Microsoft client
- written in C using GTK and GNOME
- features a profile launcher which launches saved profiles
- Translated to 20+ languages.
- support for rdesktop 1.3
- support for VNC clients (*vncviewer)
- supported vnc options are -fullscreen, -geometry, -depth and -viewonly (set by checking "no motion events"). for a vncpasswd file, put the full path to the file in the username field.
- support for X via Xnest
<<lessMain features:
- GTK+-2 frontend for rdesktop and other remote desktop tools
- GNOME panel applet to quickly launch saved profiles
- reads and writes profiles in the Microsoft format (.rdp), maintaining compatability with the Microsoft client
- similar look and functionality to the Microsoft client
- written in C using GTK and GNOME
- features a profile launcher which launches saved profiles
- Translated to 20+ languages.
- support for rdesktop 1.3
- support for VNC clients (*vncviewer)
- supported vnc options are -fullscreen, -geometry, -depth and -viewonly (set by checking "no motion events"). for a vncpasswd file, put the full path to the file in the username field.
- support for X via Xnest
Download (0.49MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
933 downloads
XML-RPC Client/Server C Library 0.9.10
XML-RPC Client/Server C Library supports persistent HTTP/1.1 conenctions over SSL. more>>
XML-RPC Client/Server C Library is a cross-platform software written in C that supports persistent HTTP/1.1 conenctions over SSL and comes with XML-RPC interface description language and client/server code compiler. Libxr depends on glib2 and libxml2.
Main features:
- Persistent connections over HTTP/1.1
- SSLv3/TLSv1 using OpenSSL.
- XML-RPC interface description language (XDL).
- XML-RPC client stubs/servlet skels compiler.
- Multiple servlets per server.
- Servlet lifetime (init -- call -- call -- fini).
- Multiplatform (linux, mingw32 on windows).
- IPV6 as soon as OpenSSL 0.9.9 is released.
<<lessMain features:
- Persistent connections over HTTP/1.1
- SSLv3/TLSv1 using OpenSSL.
- XML-RPC interface description language (XDL).
- XML-RPC client stubs/servlet skels compiler.
- Multiple servlets per server.
- Servlet lifetime (init -- call -- call -- fini).
- Multiplatform (linux, mingw32 on windows).
- IPV6 as soon as OpenSSL 0.9.9 is released.
Download (0.40MB)
Added: 2007-05-19 License: LGPL (GNU Lesser General Public License) Price:
894 downloads
Darwin Calendar Server
Darwin Calendar Server provides a CalDAV server. more>>
Darwin Calendar Server provides a CalDAV server.
The Darwin Calendar Server is a standards-compliant server that allows multiple users to collaboratively share calendaring information. It provides a shared location on the network to store schedules, and allows users to send each other and manage invitations.
In order to provide interoperability with multiple calendaring clients, the server implements the CalDAV protocol, which is an extension of WebDAV, which is in turn an extension of HTTP.
<<lessThe Darwin Calendar Server is a standards-compliant server that allows multiple users to collaboratively share calendaring information. It provides a shared location on the network to store schedules, and allows users to send each other and manage invitations.
In order to provide interoperability with multiple calendaring clients, the server implements the CalDAV protocol, which is an extension of WebDAV, which is in turn an extension of HTTP.
Download (MB)
Added: 2007-02-07 License: The Apache License Price:
1003 downloads
Pluto Request Action Library 2.0.0.36
Pluto Request Action Library is a library that makes it easy to create a client/server application. more>>
Pluto Request Action Library allows you to create a client/server application, where client sends requests, server replies with responses and optional actions. Very object oriented, and takes only minutes to get going. Same library used for both server & client side.
How does it work?
The client creates "Requests" which it sends to the server. The server will process the request, set some return variables, and can optionally add "Actions" it wants the client to execute in response. An example is a cashiers computer (the client) sends the central credit card processing server a request to "process a credit card", the server responds with the authorization code and also includes an action "give customer a message" which causes a message to appear on the cashiers computer.
Both the client and server use the same library. Both create an instance of RA_Processor.
The only difference is the server calls "ReceiveRequest" and the client creates the actual requests, and calls RA_Processors "SendRequest".
To create a request, just create a class derived from RA_Request. Add some member variables for the request and variables for the response. Your request must be derived from SerializeClass--a base class that facilitates taking an object (a request in this case), serializing the variables into a binary block, and then on the other end reconstructing the class with all the data. The framework handles everything. You just add the data members.
In the above example, the request variables would probably be the credit card information and maybe the customer ID, and the response variables would be the authorization code. RA_Request has a pure virtual function "ProcessRequest" which will be called on the server to handle the request. Both the client and the server have the same Request/Action classes. When the client side passes a request to the RequestProcessor, the framework handles serializing all the request member variables, making the socket connection to the server and sending the request to the server.
On the server, the framework will create an instance of the request class and deserialize all the data and call the "ProcessRequest" member function. That is the only function the server needs to implement. From within ProcessRequest, the server needs to set the response variables. When ProcessRequest returns, the framework will serialize the response variables, send them back to the client, update the clients original request with the response, and execution will continue. Less than 10 lines of code are required to make it work, and the project includes a sample client/server application you can extend.
<<lessHow does it work?
The client creates "Requests" which it sends to the server. The server will process the request, set some return variables, and can optionally add "Actions" it wants the client to execute in response. An example is a cashiers computer (the client) sends the central credit card processing server a request to "process a credit card", the server responds with the authorization code and also includes an action "give customer a message" which causes a message to appear on the cashiers computer.
Both the client and server use the same library. Both create an instance of RA_Processor.
The only difference is the server calls "ReceiveRequest" and the client creates the actual requests, and calls RA_Processors "SendRequest".
To create a request, just create a class derived from RA_Request. Add some member variables for the request and variables for the response. Your request must be derived from SerializeClass--a base class that facilitates taking an object (a request in this case), serializing the variables into a binary block, and then on the other end reconstructing the class with all the data. The framework handles everything. You just add the data members.
In the above example, the request variables would probably be the credit card information and maybe the customer ID, and the response variables would be the authorization code. RA_Request has a pure virtual function "ProcessRequest" which will be called on the server to handle the request. Both the client and the server have the same Request/Action classes. When the client side passes a request to the RequestProcessor, the framework handles serializing all the request member variables, making the socket connection to the server and sending the request to the server.
On the server, the framework will create an instance of the request class and deserialize all the data and call the "ProcessRequest" member function. That is the only function the server needs to implement. From within ProcessRequest, the server needs to set the response variables. When ProcessRequest returns, the framework will serialize the response variables, send them back to the client, update the clients original request with the response, and execution will continue. Less than 10 lines of code are required to make it work, and the project includes a sample client/server application you can extend.
Download (0.37MB)
Added: 2006-02-09 License: GPL (GNU General Public License) Price:
1354 downloads
YateClient 1.2.0
YateClient is a next-generation telephony engine. more>>
YateClient is a next-generation telephony engine.
While currently focused on Voice over Internet Protocol (VoIP) and PSTN, its power lies in its ability to be easily extended.
Voice, video, data, and instant messaging can all be unified under Yates flexible routing engine, maximizing communications efficiency and minimizing infrastructure costs for businesses.
Yate can be used as a:
- VoIP server
- VoIP client
- VoIP to PSTN gateway
- PC2Phone and Phone2PC gateway
- H.323 gatekeeper
- H.323 multiple endpoint server
- H.323SIP Proxy
- SIP session border controller
- SIP router
- SIP registration server
- IAX server and/or client
- IP Telephony server and/or client
- Call center server
- IVR engine
- Prepaid and/or postpaid cards system
<<lessWhile currently focused on Voice over Internet Protocol (VoIP) and PSTN, its power lies in its ability to be easily extended.
Voice, video, data, and instant messaging can all be unified under Yates flexible routing engine, maximizing communications efficiency and minimizing infrastructure costs for businesses.
Yate can be used as a:
- VoIP server
- VoIP client
- VoIP to PSTN gateway
- PC2Phone and Phone2PC gateway
- H.323 gatekeeper
- H.323 multiple endpoint server
- H.323SIP Proxy
- SIP session border controller
- SIP router
- SIP registration server
- IAX server and/or client
- IP Telephony server and/or client
- Call center server
- IVR engine
- Prepaid and/or postpaid cards system
Download (1.1MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
923 downloads
Net::Nessus::Client 0.09
Net::Nessus::Client is a Nessus client module. more>>
Net::Nessus::Client is a Nessus client module.
SYNOPSIS
# Connect to the Nessus Server
require Net::Nessus::Client;
my $client = Net::Nessus::Client->new(host => localhost,
port => 1241,
user => joe,
password => my_password);
The Nessus program is a Client/Server application offering a framework for lots of security related scanners, so-called plugins. The idea is not to create a separate scanner for any possible security hole, but to reimplement only the most important parts and let the Nessus Server (nessusd) do the most part of the work.
Clients are typically available as GUI applications, for example based on the GTK (nessus), Java or Win32 applications. This module is another Nessus client written in Perl, but without GUI.
You start using the module by opening a connection to a Nessus Server: This will create a Nessus client object for you. This object offers methods that you can later use, for example retrieving the list of available plugins, start a scan, set preferences and so on.
<<lessSYNOPSIS
# Connect to the Nessus Server
require Net::Nessus::Client;
my $client = Net::Nessus::Client->new(host => localhost,
port => 1241,
user => joe,
password => my_password);
The Nessus program is a Client/Server application offering a framework for lots of security related scanners, so-called plugins. The idea is not to create a separate scanner for any possible security hole, but to reimplement only the most important parts and let the Nessus Server (nessusd) do the most part of the work.
Clients are typically available as GUI applications, for example based on the GTK (nessus), Java or Win32 applications. This module is another Nessus client written in Perl, but without GUI.
You start using the module by opening a connection to a Nessus Server: This will create a Nessus client object for you. This object offers methods that you can later use, for example retrieving the list of available plugins, start a scan, set preferences and so on.
Download (0.016MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1199 downloads
Messa 1.01a (Server)
Messa is an instant messager client and server. more>>
Messa is an instant messager client and server. The client has a curses interface and works on the console.
Messa project supports multilingual messages and private messages. The server supports monoprocess operation (without threads), the ability to choose the listening port, and the ability to run under the console.
<<lessMessa project supports multilingual messages and private messages. The server supports monoprocess operation (without threads), the ability to choose the listening port, and the ability to run under the console.
Download (0.011MB)
Added: 2006-07-21 License: LGPL (GNU Lesser General Public License) Price:
1190 downloads
Other version of Messa
License:LGPL (GNU Lesser General Public License)
LineControl Server 2.1.21
LineControl allows you to remotely control the Internet connection of a Linux masquerading server using multiple clients. more>>
LineControl allows you to remotely control the Internet connection of a Linux masquerading server using multiple clients. It takes care with the number of clients using the connection and decides upon this number whether the connection should be up or down.
The clients show the time the connection is up and throughput statistics. Different connection types are supported, such as analog modems, ISDN, or even cable modems and ADSL devices.
Main features:
- user accounting using Linux-PAM or passwd/shadow file
- controlling multiple lines
- throughput measuring
- logging & analizing (view example)
- logging to a MySQL database (view example)
- html formatted status report via webserver (view example)
- different line types (analog, isdn, adsl, ... it should be possible to run LC with any line!)
- pinger (to avoid line-drops)
- reporting data (time, nr, ...) about incoming isdn calls to the clients (inclusive addressbook lookup)
- client dependant modifications of the NAT servers firewall (using an external script whenever a client goes on- or offline)
<<lessThe clients show the time the connection is up and throughput statistics. Different connection types are supported, such as analog modems, ISDN, or even cable modems and ADSL devices.
Main features:
- user accounting using Linux-PAM or passwd/shadow file
- controlling multiple lines
- throughput measuring
- logging & analizing (view example)
- logging to a MySQL database (view example)
- html formatted status report via webserver (view example)
- different line types (analog, isdn, adsl, ... it should be possible to run LC with any line!)
- pinger (to avoid line-drops)
- reporting data (time, nr, ...) about incoming isdn calls to the clients (inclusive addressbook lookup)
- client dependant modifications of the NAT servers firewall (using an external script whenever a client goes on- or offline)
Download (0.20MB)
Added: 2005-09-19 License: GPL (GNU General Public License) Price:
1496 downloads
pDonkey Server 0.01
pDonkeyS is Perl implementation of an eDonkey server. more>>
pDonkeyS is Perl implementation of an eDonkey server. The main goal of the server is to provide framework for further eDonkey protocol exploration, but it could be useful in testing of client software, since the server can be configured to output very detailed debugging info about eDonkey traffic.
This server was made to provide framework for further eDonkey protocol exploration, but it could be usefull in testing of client software, since the server can be configured to output very detailed debug info about eDonkey traffic.
<<lessThis server was made to provide framework for further eDonkey protocol exploration, but it could be usefull in testing of client software, since the server can be configured to output very detailed debug info about eDonkey traffic.
Download (0.011MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1228 downloads
DTLS Client/Server Example 0.2
DTLS Client/Server Example contains a simple DTLS client and DTLS server. more>>
DTLS Client/Server Example contains a simple DTLS client and DTLS server to show how to send UDP data over an encrypted channel using OpenSSL DTLSv1 support.
LIST OF FILES:
Directory: common - Contains callback functions and error reporting functions common to client and server
sslmgr.h
sslmgr.c
Directory: dtls_server
dtls_server.c - DTLS server part
Directory: dtls_client
dtls_client.c - DTLS client part
<<lessLIST OF FILES:
Directory: common - Contains callback functions and error reporting functions common to client and server
sslmgr.h
sslmgr.c
Directory: dtls_server
dtls_server.c - DTLS server part
Directory: dtls_client
dtls_client.c - DTLS client part
Download (0.010MB)
Added: 2006-11-03 License: Free For Educational Use Price:
1092 downloads
LoginServer 0.0.2
LoginServer provides a multi-client TCP server class with username/password access control. more>>
LoginServer provides a multi-client TCP server class with username/password access control.
A multi-client TCP server with username/password access control. This server binds to a port and waits for connections. It then spawns LoginServerThreads. In order to create your own server you have to extend the LoginServerThread class to your needs.
Field Details
ALLOW
public static final int ALLOW
This doubleLoginPolicy allows a user to be connected to this LoginServer several times at once.
Field Value:
0
DENY
public static final int DENY
This doubleLoginPolicy denies any additional connections to a particular user when he is already logged on at this LoginServer.
Field Value:
2
KICK
public static final int KICK
This doubleLoginPolicy will close the first (=old) connection when a user logs on twice at this LoginServer.
Field Value:
1
<<lessA multi-client TCP server with username/password access control. This server binds to a port and waits for connections. It then spawns LoginServerThreads. In order to create your own server you have to extend the LoginServerThread class to your needs.
Field Details
ALLOW
public static final int ALLOW
This doubleLoginPolicy allows a user to be connected to this LoginServer several times at once.
Field Value:
0
DENY
public static final int DENY
This doubleLoginPolicy denies any additional connections to a particular user when he is already logged on at this LoginServer.
Field Value:
2
KICK
public static final int KICK
This doubleLoginPolicy will close the first (=old) connection when a user logs on twice at this LoginServer.
Field Value:
1
Download (0.013MB)
Added: 2007-04-19 License: GPL (GNU General Public License) Price:
918 downloads
FUSE::Client 1.08
FUSE::Client is a Perl-FUSE client. more>>
FUSE::Client is a Perl-FUSE client.
SYNOPSIS
use FUSE::Client;
$c = FUSE::Client->new({
Port=>35008,
Quiet=>1,
});
$c->connect();
$c->send("COMMAND","parameter");
$c->disconnect();
The FUSE::Client module will create a TCP FUSE client to test sending messages to a FUSE server.
The external interface to FUSE::Client is:
$c = FUSE::Client->new( [%options] );
The object constructor takes the following arguments in the options hash:
Quiet = 0|1
Whether to be quiet. Default is to report all events to STDOUT (not Quiet).
Port = n
The port for the client to connect to. Default is 1024.
$c->connect();
This method connects the client to the server.
$c->disconnect();
This method disconnects the client from the server.
$c->send( $command, $parameter );
Send a FUSE formatted command message to the server, with the specified parameter.
<<lessSYNOPSIS
use FUSE::Client;
$c = FUSE::Client->new({
Port=>35008,
Quiet=>1,
});
$c->connect();
$c->send("COMMAND","parameter");
$c->disconnect();
The FUSE::Client module will create a TCP FUSE client to test sending messages to a FUSE server.
The external interface to FUSE::Client is:
$c = FUSE::Client->new( [%options] );
The object constructor takes the following arguments in the options hash:
Quiet = 0|1
Whether to be quiet. Default is to report all events to STDOUT (not Quiet).
Port = n
The port for the client to connect to. Default is 1024.
$c->connect();
This method connects the client to the server.
$c->disconnect();
This method disconnects the client from the server.
$c->send( $command, $parameter );
Send a FUSE formatted command message to the server, with the specified parameter.
Download (0.002MB)
Added: 2007-04-04 License: Perl Artistic License Price:
936 downloads
Distributed Checksum Clearinghouse 1.3.57
Distributed Checksum Clearinghouse is a system of clients and servers that collect and count checksums related to mail messages. more>>
Distributed Checksum Clearinghouse, in short DCC, is a system of clients and servers that collect and count checksums related to mail messages. The counts can be used by SMTP servers and mail user agents to detect and reject bulk mail.
DCC servers can exchange common checksums. The checksums include values that are "fuzzy", or constant across common variations in bulk messages.
Enhancements:
- This release improves the dccifd per-user whitelist default.
- It fixes the server database size estimate.
- Old installations really should upgrade to get the MIME decoding fix.
<<lessDCC servers can exchange common checksums. The checksums include values that are "fuzzy", or constant across common variations in bulk messages.
Enhancements:
- This release improves the dccifd per-user whitelist default.
- It fixes the server database size estimate.
- Old installations really should upgrade to get the MIME decoding fix.
Download (1.4MB)
Added: 2007-06-12 License: Freely Distributable Price:
864 downloads
iConnect Portal Server 1.1
iConnect Portal Server is a PHP 5 portal engine for IxAS. more>>
iConnect Portal Server is a data presentation and delivery system for building enteprise portals over the iConnect Web Application Server.
Users of the platform have a customized single point of access to the companys information system and resources.
Main features:
- Grid / slots / blocks logic
- Modular structure
- Encapsulation of pages, blocks and classes inside modules
- Separation between view and model
- PHP as template engine
- Localized templates
- Grid themes
- Sessions
<<lessUsers of the platform have a customized single point of access to the companys information system and resources.
Main features:
- Grid / slots / blocks logic
- Modular structure
- Encapsulation of pages, blocks and classes inside modules
- Separation between view and model
- PHP as template engine
- Localized templates
- Grid themes
- Sessions
Download (0.12MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1637 downloads
GPM client library 1.20.3.0
GPM client library (libgpm) package is an stand-alone version of GPMs client library. more>>
GPM client library (libgpm) package is an stand-alone version of GPMs client library, used by many console applications for mouse access.
Despite the (now quite aged) GPM package it contains just the client part (no server), and provides a pkgconfig descriptor (libgpm.pc) for easy importing.
Enhancements:
- This release pulls in some outstanding patches from upstream and Gentoo. It adds a Gentoo ebuild file.
<<lessDespite the (now quite aged) GPM package it contains just the client part (no server), and provides a pkgconfig descriptor (libgpm.pc) for easy importing.
Enhancements:
- This release pulls in some outstanding patches from upstream and Gentoo. It adds a Gentoo ebuild file.
Download (0.032MB)
Added: 2007-05-18 License: GPL (GNU General Public License) Price:
892 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above metaframe presentation server client for 32 bit windows search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed