Belaran,

On 5/23/05, belaran <[EMAIL PROTECTED]> wrote:
> well the module exist because when i do :
> 
> List silver = registry.getConfiguration("UserProfilService.Silver");
> bob = (UserProfile)silver.get(0);
> // here it's okay, i get the configuration
> List gold = registry.getConfiguration("UserProfileService.User");
> alice = (UserProfile)gold.get(0);
> // here it's failed with precedent error message...
> 

Note the extraneous letter 'e' (after "UserProfil") in the second
getConfiguration() call. It should read:

List gold = registry.getConfiguration("UserProfilService.User");

--knut

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to