Langbinding over HTTP?

Alexander Nasonov <[email protected]>
Newsgroups gmane.comp.lib.boost.langbinding
Message-ID <[email protected]>
For my new project I need a mechanism for retrieving a result of function
execution over HTTP. I believe langbinding can be used here.
For example, if these classes are described in langbinding

struct FooResult {
  // ...
};

struct Foo {
    FooResult foo(int) const;
};

then one could implement HTTPServer to handle requests for method execution:

Foo obj;
HTTPServer server;
server.bind(obj, "obj");
server.run();

Client request could look like C++ call prefixed with a server address:
http://server/obj.foo(0);

The server answers with XML dump of FooResult.
Is it possible with a current version of langbinding?
-- 
Alexander Nasonov
Independent Developer and Consultant




-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.