Turbo-boost your C++ Development Experience

POCOPRO extends the POCO C++ Libraries with additional libraries and frameworks, plus commercial support.

POCO C++ Libraries

Open Source


  • Community support

  • FREE
     

POCOPRO C++ Frameworks

Commercial Source Code License


  • Professional support & maintenance

The POCOPRO C++ Frameworks are trusted by leading companies worldwide.

Remoting for C++

Web services, Microservices, REST APIs and Remote Methods/RPC for C++.

Web services, REST APIs and microservices have significantly changed the way complex software systems are designed, built and deployed. POCOPRO Remoting makes these technologies and concepts available to C++ developers.

Multi-Protocol Stack and Code Generator

Remoting for C++ is a web services and remote method call framework for C++. Remoting supports different communication protocols. This includes JSON-based REST APIs, JSON-RPC, SOAP and a highly efficient binary protocol.
Remote services are implemented as C++ classes, annotated with special comments. The Remoting code generator takes care of the rest. There is no need to maintain a separate interface definition using an interface definition language (IDL).

SOAP and WSDL/XSD-to-C++ Code Generation

Remoting also includes a tool for generating C++ code from WSDL 1.1 (document/literal wrapped) and XML Schema (XSD) documents. This makes it possible to build C++ clients for SOAP 1.1 and 1.2 web services built with Java, Microsoft .NET, or other middleware technologies.

Remoting Features

Cross-Platform & Interoperability

Easily communicate between different hardware and operating system platforms. Or clients and servers built in other programming languages and environments such as Java or .NET.

Multi Protocol Support

Remoting supports sockets, HTTP, REST, JSON-RPC and SOAP. Thanks to a flexible and modular design, other protocols can be added by implementing a new protocol library.

Code Generator

The RemoteGen code generator generates protocol independent, human-readable communication code from annotated C++ header files.

Extensive C++ Type Support

All standard C++ types and some STL collection types (including enumerations, std::string, std::vector, std::set and std::multiset), as well as user-defined classes and structures are supported as method arguments and return types.

REST APIs

Implement REST API endpoints in C++. Supporting different forms of parameter passing (path, query string, header, body, JSON) as well as authentication, CORS, etc. Or generate client code to call external REST APIs.

Microservices

Implement microservices in C++ exposing REST APIs for best interoperability. Or use the super efficient binary transport protocol for communication between C++ applications.

SOAP and WSDL

Generate C++ client and server code for SOAP web services from WSDL documents. Implement SOAP 1.1/1.2 web services in C++ that can be called from Java and .NET WCF applications with support for MTOM, HTTPS, HTTP compression (gzip content encoding) and HTTP Basic and Digest authentication.

Remote Events

Support for events in remote interfaces enables implementation of server-pushed asynchronous notifications or publish-subscribe messaging patterns.

REST API Sample

The following code snipped shows an example for how to define a RESTful API with Remoting. This definition is specific to the Remoting REST transport. Note how the method names correspond to HTTP methods. Also note the special comments. The Remoting code generator (RemoteGen) parses these definitions and generates C++ code that implements serialization, deserialization and remote invocation.

//@ serialize
struct User
{
    Poco::Optional<std::string> name;
    Poco::Optional<std::string> password;
    Poco::Optional<std::set<std::string>> permissions;
    Poco::Optional<std::set<std::string>> roles;
};

//@ remote
//@ path="/api/1.0/users"
class UserCollectionEndpoint
{
public:
    User post(const User& user);
        /// Create a new user.

    //@ $maxResults={in=query, optional}
    //@ $start={in=query, optional}
    std::vector<User> get(int maxResults = 0, int start = 0);
        /// Return a list of user objects, starting with
        /// the given start index, and return at most
        /// maxResults items.
};

//@ remote
//@ path="/api/1.0/users/{name}"
class UserEndpoint
{
public:
    //@ $name={in=path}
    User put(const std::string& name, const User& user);
        /// Update a user (calls patch()).

    //@ $name={in=path}
    User patch(const std::string& name, const User& user);
        /// Update a user.

    //@ $name={in=path}
    User get(const std::string& name);
        /// Retrieve a user by name.

    //@ $name={in=path}
    void delete_(const std::string& name);
        /// Delete a user.
};

Remote Method Sample

The following code snipped shows an example for a remote methods-based service that can use the efficient binary Remoting transport over sockets or HTTP, the JSON-RPC or the SOAP transport. Again, note the special comments. The Remoting code generator (RemoteGen) parses these definitions and generates C++ code that implements serialization, deserialization and remote invocation.

//@ serialize
struct User
{
    std::string name;
    Poco::Optional<std::string> password;
    Poco::Optional<std::set<std::string>> permissions;
    Poco::Optional<std::set<std::string>> roles;
};

//@ remote
class UserManager
{
public:
    void addUser(const User& user);
        /// Create a new user.

    void updateUser(const User& user);
        /// Update a user.

    User getUser(const std::string& username);
        /// Retrieve a user by name.

    //@ $maxResults={optional}
    //@ $start={optional}
    std::vector<User> getUsers(int maxResults = 0; int start = 0);
        /// Return a list of user objects, starting with
        /// the given start index, and return at most
        /// maxResults items.

    void deleteUser(const std::string& username);
        /// Delete a user.
};

Open Service Platform

Dynamic C++ module system, nanoservices and application server.

Today's applications are becoming ever more complex. A large part of this complexity stems from the need to support different configurations, e.g. for different devices, operating system environments or customer needs. Huge monolithic applications like the ones developed in the past do not (or only at an enormous cost) provide the necessary flexibility required today.

Build, deploy and manage dynamic, modular C++ applications

Open Service Platform (OSP) enables the creation, deployment and management of dynamically extensible, modular applications, based on a powerful plug-in and (nano-) services model. Applications built with OSP can be extended, upgraded and managed even when deployed in the field. At the core of OSP lies a powerful software component (plug-in) and services model based on the concept of bundles. A bundle is a deployable entity, consisting of both executable code (shared libraries) and the required configuration, data and resource files.

Plug-in and service-based architecture

Bundles extend the functionality of an application by providing certain services. A central Service Registry allows bundles to discover the services provided by other bundles. Bundles can be installed, upgraded, started, stopped or removed from an application (programmatically, or using a web- or console based administration utility) without the need to terminate and restart the application.

Open Service Platform

Simplify large-scale C++ application development and deployment

This component-based architecture of OSP addresses an increasing problem in software development: The large number of application configurations that need to be developed and maintained. The standardized OSP component architecture simplifies this configuration and deployment process significantly.

Open Service Platform Features

Plug-In and Services Architecture

Create dynamically extensible C++ applications based on a powerful plug-in/component and services architecture. Combine executable code (shared libraries), configuration files and other resources like web pages or images in bundles - easily manageable deployment units.

Dynamic Deployment & Lifecycle Management

Install, start, stop, upgrade or uninstall an application's bundles dynamically, at run-time. Without the need to restart the entire application.

Dependency Management

Automatically manage version dependencies between bundles. OSP makes sure that all dependencies are satisfied and that bundles are started or stopped in correct order.

Service Registry

Provide and find services in an application through a central ServiceRegistry. Dynamically react to availability of services through events or ServiceListener objects.

Management Console & CLI

Manage an application's bundles through a built-in web-based Bundle Administration Utility or through an extensible console based shell (CLI) administration service.

Web Application Server

An integrated web application server enables powerful dynamic C++ web applications. Routing, sessions, authentication, access permissions and CSRF protection can be configured using metadata and are handled by the framework, without the need for extra code.

Signed Bundles

Bundles can be cryptographically signed. Make sure bundles installed in your system come from a known publisher and have not been tampered with.

Standard Services

Readily available services for user authentication and authorization (including LDAP integration), preferences and configuration data, extension points, database access, email, network environment change detection, web events, etc.

Licensing & Pricing

The POCOPRO C++ Frameworks are available under a commercial source code license.

Please contact us for licensing and purchasing inquiries.

Contact Applied Informatics

Please contact us for a quote, to order licenses, or with any questions regarding the POCOPRO C++ Frameworks.

Download Free Trial

Download a free trial version of the POCOPRO C++ Frameworks to try out the included demo applications or build your own programs.

Getting Started

Please read the Getting Started Guide before downloading and installing the software. This document contains valuable information that will help you get the best out of the POCOPRO C++ Frameworks, including setup instructions and tips to get you started.

The Windows trial version is available for Visual Studio 2017, 2019 and 2022. Only 64-bit builds are supported by the trial version. The full version supports both 32-bit and 64-bit builds.
Need an trial version for a different platform? Please let us know.

A license file is required for running applications (including the samples) built with the POCOPRO C++ Frameworks trial version. Receive the license file via email by filling out the form on the right.

No license file will be required once you purchase a source code license.

Get Your License File

Requests for license files are processed automatically. You should receive the license file via email within a few minutes after submitting the form. If not, please check your junk mail folder.

Download Release 2023.1

Platform   Toolchain Hash (SHA-256)
Microsoft Windows
Windows 10/11 (x64) Visual C++ 2017 78a22a154d67c6b325830b66abd856704d6d810f66e8896ddb0c22d17f8dc128
Windows 10/11 (x64) Visual C++ 2019 25487ff040faed12dffe103651bda0f65a907993f854fddbce126482cefcfd75
Windows 10/11 (x64) Visual C++ 2022 ff97faa5c3a323c01ca3a85f86b203b086dda076402cd937b99a7e9979853277
Apple macOS
macOS 12.x/13.x (x86_64) Clang/Apple LLVM 14.0.0 (Xcode 13) 4afe2fa46b1ae333880ed7807a921625c0241e8e04fe6ff851db85bf531a6e4d
macOS 12.x/13.x (arm64) Clang/Apple LLVM 14.0.0 (Xcode 13) 300a7927efb7735b88e9ebff6e66107ac064eff68ed5042f9e81aa1dfaa5076d
GNU/Linux
Ubuntu 20.04 (x86_64) GCC 9.3.0 c4e2ec049bb6a2de9db34dce5c530a5082718900d4632aef8db595736c37e252
Ubuntu 22.04 (x86_64) GCC 11.2.0 fb0a8b5b8122966030d7edb71ee42aa3fc1710a28e7645d2d82b41eb4fb1df5a
Debian 11 (x86_64) GCC 10.2.1 cc3bfbc9f816d0bf7b20ba9e65107c0c3e4d5cd987a93a38a34a75ff24ebf39a
RedHat 9 (x86_64) GCC 11.3.1 3fde9be62c3081c28d8114ea9e51797ca77d66df3db256394c8cc17f49436fd1