Hey Takashi, 2009/9/21 Takashi Yamamoto <[email protected]>: > 1. The examples have a .wt extension. Is it possible to use another > extension instead of .wt (if yes, please state how this can be achieved)
As Zhimin already replied, you are free to rename your applications in any way. > 2. I have scientific graphs which I (currently implemented in C++). > Naturally, I don't want the implementation of the graph drawing made > available at the client side (for IP reasons), but I would like some > responsive UI at the clientside (like displaying a dynamic menu on right > hand mouse clicks etc). Is this possible using wt?. It is not clear (from > the wx Docs), where the actual image generation is done (i.e. server/client > side). I would be grateful if someone could clarify that. It depends on your definition of 'rendering'. The charts (Wt/Charts/*) are rendered at the server side, down to vector graphics (lines, points, circles, curves, etc...), like for example SVG. These are then rasterized in the browser (converted to pixels) to be displayed. Thus, the data in your model is not transmitted, but the raw painting information is. > 3. Last but not the least, it is still not clear to me (after reading the > docs), how a developed binary is deployed using say an Apache server (which > I am familiar with). Specifically, how do I match a resource (URL) to a > "page" (or in "wt parlance" - a wtApplication) ? You have two options: - deploy your application as a FastCGI application (by linking with wtfcgi), using mod_fastcgi or mod_fcgid - configure apache as a reverse proxy for certain URLs using 'ProxyPass', forwaring those requests to your application that runs using the built-in httpd (by linking with wthttp). Regards, koen ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
