Re: Re[Haskell-cafe] mote invocations in Haskell?

2010-03-24 Thread Håkon Lorentzen
Hi On Tue, Mar 23, 2010 at 9:46 PM, Yves Parès limestr...@gmail.com wrote: Is there a way to perform some kind of remote method invocation in haskell? (Or, remote object, but I prefer not to use this term, as there are no objects strictly speaking in Haskell) I would like to use a higher

Re[Haskell-cafe] mote invocations in Haskell?

2010-03-23 Thread Yves Parès
Hello, Is there a way to perform some kind of remote method invocation in haskell? (Or, remote object, but I prefer not to use this term, as there are no objects strictly speaking in Haskell) I would like to use a higher level API than sockets for network programing. - Yves Parès Live long

Re: Re[Haskell-cafe] mote invocations in Haskell?

2010-03-23 Thread Michael Snoyman
You could use a webserver and have a RESTful interface, though I'm not sure if that's what you're looking for. On Tue, Mar 23, 2010 at 1:46 PM, Yves Parès limestr...@gmail.com wrote: Hello, Is there a way to perform some kind of remote method invocation in haskell? (Or, remote object, but I

Re: Re[Haskell-cafe] mote invocations in Haskell?

2010-03-23 Thread Roman Cheplyaka
* Yves Parès limestr...@gmail.com [2010-03-23 13:46:25-0700] Is there a way to perform some kind of remote method invocation in haskell? (Or, remote object, but I prefer not to use this term, as there are no objects strictly speaking in Haskell) I would like to use a higher level API than

Re: Re[Haskell-cafe] mote invocations in Haskell?

2010-03-23 Thread Yves Parès
Okay, I tried to make the sample here: http://www.haskell.org/haskellwiki/HaXR But I can't get it working... Is there an external XML-RPC server that must be running? Maybe even an external HTTP server? The server launches without complaining about anything, whereas the client tells:

Re: Re[Haskell-cafe] mote invocations in Haskell?

2010-03-23 Thread Yves Parès
Okay, well, apparently I have to rely on an external HTTP server. This is not very simple, is there another more suitable way to get RPC working in haskell? Yves Parès wrote: Okay, I tried to make the sample here: http://www.haskell.org/haskellwiki/HaXR But I can't get it working... Is

Re: Re[Haskell-cafe] mote invocations in Haskell?

2010-03-23 Thread zaxis
Maybe erlang is more suitable for you as rpc is built in function in erlang. Yves Parès wrote: Okay, well, apparently I have to rely on an external HTTP server. This is not very simple, is there another more suitable way to get RPC working in haskell? Yves Parès wrote: Okay, I