maxbareis
maxbareis

Reputation: 886

Working configuration for Seaside Rest with current Pharo Build (5.0

I am desperately trying to install Seaside Rest in Pharo 5. Is it recommended, or should I go back to Pharo 4? What I have done so far:

ConfigurationOfSeaside project stableVersion loaddoes not load the REST part.

Any ideas?

Regards

Max

Upvotes: 1

Views: 155

Answers (1)

Johan B
Johan B

Reputation: 2471

The ConfigurationOfSeasideRest is only for Seaside 3.0.x. Since Seaside 3.1, the REST group is included in the main configuration ConfigurationOfSeaside3.

Since this should work fine in Pharo 5, I suspect that you are hitting a Metacello issue. The recommended way to load any configuration with Metacello is with the new API:

Metacello new
   configuration:'Seaside3';
   repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
   version: #stable;
  load: #('REST')

Upvotes: 3

Related Questions