Archived

This forum has been archived. Please start a new discussion on GitHub.

Ice:createStringConverter problem

Hi!

I'm trying to deploy auto convertation feature of Ice. In particular I use following line in my config.client file:

Ice.Plugin.Converter=Ice:createStringConverter windows=1251

When I do so I get Ice::PluginInitializationException

What could it be?

Comments

  • mes
    mes California
    Hi,

    You didn't say which version of Ice you are using, but I'm assuming that it's 3.4b and that your exception looks like this:

    unable to load entry point `Ice:createStringConverter'

    The createStringConverter function was renamed to createIceStringConverter in 3.4b, but we neglected to document this change. We will revert this change for the final 3.4 release, but for now you can use the following configuration:

    Ice.Plugin.Converter=Ice:createIceStringConverter windows=1251

    Thanks for reporting this issue.

    Regards,
    Mark
  • My apologies I didn't mention the version of ICE I use.

    It's 3.2.1

    So my guess is your solution won't work for me.
  • mes
    mes California
    Ice 3.2 does not support installation of a string converter using a plug-in. See here for more information on string conversion in Ice 3.2.

    Regards,
    Mark
  • Thanks for your reply! Anyway my problem is not solved. I decided to post it as different topic.