Re: [Pharo-users] XMLRPC?

2015-07-12 Thread Max Mattone
I know that PhaROS project, developed at Mines Douai for robotic purposes,
does successfully load XMLRPC.
Here is the web site of the team:
http://car.mines-douai.fr/2014/11/live-programming-ros/
Maybe they can help.

max

Le dim. 12 juil. 2015 à 01:00, Arturo Zambrano 
a écrit :

> Hi all,
>   I tried this:
> Gofer it
> url: 'http://ss3.gemstone.com/ss/XMLRPC';
> package: 'ConfigurationOfXMLRPC';
> load.
> ConfigurationOfXMLRPC project latestVersion load: 'All'.
>
> And got this message:
>
>
> This package depends on the following classes:
>
>   BlockContext
>
>   ContextPart
>
> You must resolve these dependencies before you will be able to load these
> definitions:
>
>   forkWithBindings
>
>   forkWithBindings:
>
>   forkWithClampedBindings
>
>   forkWithClampedBindings:
>
>   forkWithIsolatedBindings
>
>   forkWithIsolatedBindings:
>
>   newProcessWithBindings
>
>   newProcessWithBindings:
>
>   newProcessWithClampedBindings
>
>   newProcessWithClampedBindings:
>
>   newProcessWithIsolatedBindings
>
>   newProcessWithIsolatedBindings:
>
>   valueWithBindings:
>
>   valueWithBindingsContext:
>
>   bindings
>
>
> Is XMLRPC supported in Pharo 4/Moose 5?
>
>
> best
> art
>


Re: [Pharo-users] XMLRPC?

2015-07-12 Thread p...@highoctane.be
BlockContext got merged into BlockClosure.

and ContextPart got merged into MethodContext (not sure about that last
one).

HTH
Phil

On Sun, Jul 12, 2015 at 4:54 PM, Max Mattone  wrote:
>
> I know that PhaROS project, developed at Mines Douai for robotic
purposes, does successfully load XMLRPC.
> Here is the web site of the team:
http://car.mines-douai.fr/2014/11/live-programming-ros/
> Maybe they can help.
>
> max
>
> Le dim. 12 juil. 2015 à 01:00, Arturo Zambrano 
a écrit :
>>
>> Hi all,
>>   I tried this:
>> Gofer it
>> url: 'http://ss3.gemstone.com/ss/XMLRPC';
>> package: 'ConfigurationOfXMLRPC';
>> load.
>> ConfigurationOfXMLRPC project latestVersion load: 'All'.
>>
>> And got this message:
>>
>>
>> This package depends on the following classes:
>>
>>   BlockContext
>>
>>   ContextPart
>>
>> You must resolve these dependencies before you will be able to load
these definitions:
>>
>>   forkWithBindings
>>
>>   forkWithBindings:
>>
>>   forkWithClampedBindings
>>
>>   forkWithClampedBindings:
>>
>>   forkWithIsolatedBindings
>>
>>   forkWithIsolatedBindings:
>>
>>   newProcessWithBindings
>>
>>   newProcessWithBindings:
>>
>>   newProcessWithClampedBindings
>>
>>   newProcessWithClampedBindings:
>>
>>   newProcessWithIsolatedBindings
>>
>>   newProcessWithIsolatedBindings:
>>
>>   valueWithBindings:
>>
>>   valueWithBindingsContext:
>>
>>   bindings
>>
>>
>> Is XMLRPC supported in Pharo 4/Moose 5?
>>
>>
>> best
>> art


Re: [Pharo-users] XMLRPC?

2015-07-12 Thread Stephan Eggermont

On 12-07-15 00:59, Arturo Zambrano wrote:

Hi all,
   I tried this:
Gofer it
 url: 'http://ss3.gemstone.com/ss/XMLRPC';
 package: 'ConfigurationOfXMLRPC';
 load.
ConfigurationOfXMLRPC project latestVersion load: 'All'.


I'm afraid 1.0-alpha4 might be larger than 1.0.2
Did you try #stable?

Stephan





Re: [Pharo-users] XMLRPC?

2015-07-13 Thread Luc Fabresse
Hi Arturo,

for our PhaROS project, we use XMLRPC.
When I had a look at it, started to clean it up...
So far, the ConfigurationOfPhaROS uses the bleeding edge version of XMLRPC
because it was moving a lot.
Here what I use:


Gofer it
   url: 'http://ss3.gemstone.com/ss/XMLRPC';
   package: 'ConfigurationOfXMLRPC';
   load.

(ConfigurationOfXMLRPC project version: #bleedingEdge)
load: #('XMLRPC-Client-Core' 'XMLRPC-Client-Tests' 'XMLRPC-Server-Core'
'XMLRPC-Server-Tests').
"1738 run, 1738 passes, 11 skipped, 0 expected failures, 0 failures, 0
errors, 0 unexpected passes"

Best,

#Luc

2015-07-12 19:13 GMT+02:00 Stephan Eggermont :

> On 12-07-15 00:59, Arturo Zambrano wrote:
>
>> Hi all,
>>I tried this:
>> Gofer it
>>  url: 'http://ss3.gemstone.com/ss/XMLRPC';
>>  package: 'ConfigurationOfXMLRPC';
>>  load.
>> ConfigurationOfXMLRPC project latestVersion load: 'All'.
>>
>
> I'm afraid 1.0-alpha4 might be larger than 1.0.2
> Did you try #stable?
>
> Stephan
>
>
>
>


Re: [Pharo-users] XMLRPC?

2015-07-21 Thread Arturo Zambrano
Thanks Luc, that version loaded without problems.

 cheers.

arturo

On Mon, Jul 13, 2015 at 6:49 AM, Luc Fabresse 
wrote:

> Hi Arturo,
>
> for our PhaROS project, we use XMLRPC.
> When I had a look at it, started to clean it up...
> So far, the ConfigurationOfPhaROS uses the bleeding edge version of XMLRPC
> because it was moving a lot.
> Here what I use:
>
>
> Gofer it
>url: 'http://ss3.gemstone.com/ss/XMLRPC';
>package: 'ConfigurationOfXMLRPC';
>load.
>
> (ConfigurationOfXMLRPC project version: #bleedingEdge)
> load: #('XMLRPC-Client-Core' 'XMLRPC-Client-Tests' 'XMLRPC-Server-Core'
> 'XMLRPC-Server-Tests').
> "1738 run, 1738 passes, 11 skipped, 0 expected failures, 0 failures, 0
> errors, 0 unexpected passes"
>
> Best,
>
> #Luc
>
> 2015-07-12 19:13 GMT+02:00 Stephan Eggermont :
>
>> On 12-07-15 00:59, Arturo Zambrano wrote:
>>
>>> Hi all,
>>>I tried this:
>>> Gofer it
>>>  url: 'http://ss3.gemstone.com/ss/XMLRPC';
>>>  package: 'ConfigurationOfXMLRPC';
>>>  load.
>>> ConfigurationOfXMLRPC project latestVersion load: 'All'.
>>>
>>
>> I'm afraid 1.0-alpha4 might be larger than 1.0.2
>> Did you try #stable?
>>
>> Stephan
>>
>>
>>
>>
>


Re: [Pharo-users] XMLRPC?

2015-08-11 Thread Ben Coman
I'm not a user of XMLRPC, but anyone consider it worth saving the
project pages for...
https://code.google.com/p/pharo-xmlrpc/
to github ?

cheers -ben

On Mon, Jul 13, 2015 at 5:49 PM, Luc Fabresse  wrote:
> Hi Arturo,
>
> for our PhaROS project, we use XMLRPC.
> When I had a look at it, started to clean it up...
> So far, the ConfigurationOfPhaROS uses the bleeding edge version of XMLRPC
> because it was moving a lot.
> Here what I use:
>
>
> Gofer it
>url: 'http://ss3.gemstone.com/ss/XMLRPC';
>package: 'ConfigurationOfXMLRPC';
>load.
>
> (ConfigurationOfXMLRPC project version: #bleedingEdge)
> load: #('XMLRPC-Client-Core' 'XMLRPC-Client-Tests' 'XMLRPC-Server-Core'
> 'XMLRPC-Server-Tests').
> "1738 run, 1738 passes, 11 skipped, 0 expected failures, 0 failures, 0
> errors, 0 unexpected passes"
>
> Best,
>
> #Luc
>
> 2015-07-12 19:13 GMT+02:00 Stephan Eggermont :
>>
>> On 12-07-15 00:59, Arturo Zambrano wrote:
>>>
>>> Hi all,
>>>I tried this:
>>> Gofer it
>>>  url: 'http://ss3.gemstone.com/ss/XMLRPC';
>>>  package: 'ConfigurationOfXMLRPC';
>>>  load.
>>> ConfigurationOfXMLRPC project latestVersion load: 'All'.
>>
>>
>> I'm afraid 1.0-alpha4 might be larger than 1.0.2
>> Did you try #stable?
>>
>> Stephan
>>
>>
>>
>