[Cppcms-users] Mixing different types of applications
Brought to you by:
artyom-beilis
From: Christian G. <chr...@gm...> - 2012-11-20 12:54:40
|
try { cppcms::service srv(argc,argv); // instantiate SSE application booster::intrusive_ptr<SSE> sse = new SSE(srv); srv.applications_pool().mount(sse); srv.applications_pool().mount(cppcms::applications_factory<Tssw>()); srv.run(); } catch(std::exception const &e) { std::cerr<<e.what()<<std::endl; } As you can see I want to mount a long running app with all my other "normal" apps. I only "normal" apps are working but not the long running once.. any hints? -- Christian Gmeiner, MSc |