wt

Reloading a FastCGI app

Hi, I'm using FastCGI to expose a C++ binary (written using the Wt framework) as a web app. However, after I have modified the app and recompiled it, in order for new sessions to see the changes (active sessions keep using the old version until they expire), I have to reload Apache. Is it possible to configure the system in such a way t...

Experiences using Wt C++ framework?

Has anyone actually used Wt? Did it work well? Did you experience certain limitations? Or advantages? Note: Please avoid the discussion of whether C++ is suited to be a web development language. I just want to give Wt a try because it seems like a fun thing to do. ...

Strange error occured while using cmake

Does anyone knows what "The C compiler "cl" is not able to compile a simple test program." means? I am trying to compile Wt using CMake on MSVC 9. The OS is Windows XP. Here is the full log: Check for working C compiler: cl Check for working C compiler: cl -- broken CMake Error at I:/Program Files/CMake 2.8/share/cmake-2.8/Mo...

How do I create a WT project in MSVC ?

Hi, if anyone has used WT successfully with MSVC (mine is 2005), could you please provide some details on how this can be done? I have installed WT fine , then ran some examples. The problems begin when I try to create a project of my own, as simple as hello.C. I get a thousand compiler errors like this one : C:\Program Files\Microsoft...

How to tell the controller what view to call?

I have a virtual function that is called handlePathChange() in my Controller class. It checks the current URL and should dispatch the right view for it. Here's the code I have so far: void Controller::handlePathChange() { if ( app->internalPathMatches(basePath) ) { string path = app->internalPathNextPart(basePath); ...

Can someone help me figure out this class from documentation?

I have no experience with sockets and I need to implement a process that notifies a user interface of inputs from another process that takes his values from stdin. This is the class' documentation, what should the socket parameter be? It's just an int, is it a handle? I was told it doesn't play nice with boost.asio. Can you guys help me ...

why c++wt is not integrated with ExtJs 3.x ? and how is it possible to integrate it with that?

hi , I just wondering why wt (the WebToolkit for c++) is not integrated with ExtJs 3.x whereas it is still using extJs 2.x. and how is it possible to integrated it with the updated version of extjs I want to use some updated widget out of extjs 3.0 with the help of wt but unfortunately there is no chance :( regards. ...

How can I get cmake to find my boost installation

I have installed the most recent version of boost in /usr/local (with includes in /usr/local/include/boost and libraries in /usr/local/lib/boost) and I am now attempting to install Wt from source, but cmake (version 2.6) can't seem to find the boost installation. It tries to give helpful suggestions about setting BOOST_DIR and Boost_LIB...

How to 'web enable' a legacy C++ application

I am working on a system that splits users by organization. Each user belongs to an organization. Each organization stores its data in its own database which resides on a database server machine. A db server may manage databases for 1 or more organizations. The existing (legacy) system assumes there is only one organization, however I ...