Hey Alex, > 2010/7/19 Alex Sadovsky <[email protected]>: >> Hello, >> In my application I need to generare a number of RSS feeds so that they >> could be accessible using urls like "http://host/feed1.rss", >> "http://host/feed2.rss" ect. >> I'm trying to use WMemoryResource and WServer::addResource for this. >> The problem is that it seems it is only possible to add resources before the >> server is started and it is not possible to unregister and delete a static >> resource at all.
Actually, I am having second doubts about the need for this. A resource can also handle internal paths (Request::pathInfo()). Thus, you can easily deploy one static resource (e.g. at /rss) which handles many rss feeds: /rss/feed1.rss, /rss/feed2.rss, etc...). This also allows for some possible efficiency benefits. Would that not be a solution to your problem ? Regards, koen ------------------------------------------------------------------------------ The Palm PDK Hot Apps Program offers developers who use the Plug-In Development Kit to bring their C/C++ apps to Palm for a share of $1 Million in cash or HP Products. Visit us here for more details: http://ad.doubleclick.net/clk;226879339;13503038;l? http://clk.atdmt.com/CRS/go/247765532/direct/01/ _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
