Applied Informatics Remoting

Remoting Limitations

Following is a list of limitations of Remoting. When designing and building remote services with Remoting, knowing the limitations of Remoting is recommended to avoid troubles later on.

bool method(Poco::SharedPtr<int> i)
    // Although changes to i are visible outside this is not serialized back.

bool method(Poco::SharedPtr<int>& i)
    // Non-const reference: this will be serialized back to the caller.