Re: [MacRuby-devel] MacRuby and XML-RPC

2009-03-30 Thread Matt Aimonetti
You're welcome, please keep us posted, your project sounds pretty interesting :) Btw, I'm glad to see so many French speakers in the MacRuby community! - Matt On Mon, Mar 30, 2009 at 10:48 PM, Stéphane Wirtel wrote: > Thank you for the workaround and the patch. > > It works > > Stephane > > On

Re: [MacRuby-devel] MacRuby and XML-RPC

2009-03-30 Thread Stéphane Wirtel
Thank you for the workaround and the patch. It works Stephane On 31 Mar 2009, at 05:05, Matt Aimonetti wrote: There you go: $ macirb >> require 'rexml/xmltokens' => true >> module REXML >> class Attribute >> include ::REXML::XMLTokens >> end >> end => REXML::Attribute >> require "xmlr

Re: [MacRuby-devel] MacRuby and XML-RPC

2009-03-30 Thread Matt Aimonetti
There you go: $ macirb >> require 'rexml/xmltokens' => true >> module REXML >> class Attribute >> include ::REXML::XMLTokens >> end >> end => REXML::Attribute >> require "xmlrpc/client" => true >> server = XMLRPC::Client.new("tiny.my.odoo.com", "/xmlrpc/common", 8069) => ##-> tiny.my.odoo.

Re: [MacRuby-devel] MacRuby and XML-RPC

2009-03-30 Thread Stéphane Wirtel
Thank you so much, If you send me your patch, I send it to a friend of mine, because we want to start this project for the next week. Regards, Stephane On 31 Mar 2009, at 00:11, Matt Aimonetti wrote: If I can find 5 minutes tonight, I'll try to write a quick work around patch for you so y

Re: [MacRuby-devel] MacRuby and XML-RPC

2009-03-30 Thread Matt Aimonetti
If I can find 5 minutes tonight, I'll try to write a quick work around patch for you so you can start working on your project and not wait for Macruby to be fixed. - Matt On Mon, Mar 30, 2009 at 2:51 PM, Stéphane Wirtel wrote: > http://www.macruby.org/trac/ticket/134 > > Thank you > > But I hop

Re: [MacRuby-devel] MacRuby and XML-RPC

2009-03-30 Thread Stéphane Wirtel
http://www.macruby.org/trac/ticket/134 Thank you But I hope this bug will be resolved because I want to implement a native cocoa client for the OpenERP project On 30 Mar 2009, at 23:22, Matt Aimonetti wrote: Could you please create a ticket for this bug, it looks like a constant is being c

Re: [MacRuby-devel] MacRuby and XML-RPC

2009-03-30 Thread Matt Aimonetti
Could you please create a ticket for this bug, it looks like a constant is being called before being defined. It might be related to the load order in MacRuby (wild guess). - Matt On Mon, Mar 30, 2009 at 2:02 PM, Stéphane Wirtel wrote: > Hi all, > > I am trying to create a small xml-rpc client w