RecentlyI make same tests with -> PageCompiler, and I like a lot, than I decide make one small web application using it.
But in this application I need maintain session between pages (like any other web app), then I did see this in doc ->
^
session (OSP only)
An instance of Poco~058~~058~OSP~058~~058~Web~058~~058~WebSession::Ptr for accessing the
Poco~058~~058~OSP~058~~058~Web::WebSession object for the current session.
Only available with the POCO Open Service Platform, and if the
<[session]> page attribute has been specified.
^
Then I use -> cpspcd.exe to generate class to me, and this did generated ->
- Code: Select all
#include "Poco/Net/HTTPRequestHandler.h"
#include "Poco/OSP/Web/WebRequestHandlerFactory.h"
#include "Poco/OSP/BundleContext.h"
class TimeHandler: public Poco::Net::HTTPRequestHandler
{
public:
TimeHandler(Poco::OSP::BundleContext::Ptr);
void handleRequest(Poco::Net::HTTPServerRequest& request, Poco::Net::HTTPServerResponse& response);
protected:
Poco::OSP::BundleContext::Ptr context() const
{
return _pContext;
}
private:
Poco::OSP::BundleContext::Ptr _pContext;
};
class TimeHandlerFactory: public Poco::OSP::Web::WebRequestHandlerFactory
{
public:
Poco::Net::HTTPRequestHandler* createRequestHandler(const Poco::Net::HTTPServerRequest& request);
};
But I can find OSP in anywhere in POCO.
Anyone can help-me to understand what direction of this project go, it is stopped, or have this imp(OSP) in any other place.
Thanks





