Home » Eclipse Projects » Remote Application Platform (RAP) » [ANN] Equinox 3.6M4 needed for CVS HEAD
|
Re: [ANN] Equinox 3.6M4 needed for CVS HEAD [message #507975 is a reply to message #507496] |
Fri, 15 January 2010 06:47   |
Eclipse User |
|
|
|
Hi,
the new mechanism works perfectly. I guess the next milestone release of RAP will be bundled with the necessary equinox bundles?
as already mentioned, when working with CVS RAP, it is necessary to replace the equinox bundles (or at least the equinox.registry)
in the target platform with the 3.6M4 bundles available here: http://download.eclipse.org/equinox/drops/S-3.6M4-2009121013 01/index.php
i have one question. when running the application from eclipse, i add the -Declipse.registry.MultiLanguage=true to the VM arguments
in the running configuration. but where would i put this system property when i deploy the application as a WAR file? for now, i put
"eclipse.registry.MultiLanguage=true" in the launch.ini file and it works. is this the appropriate way for setting system properties
for the osgi environment in a servlet container?!
greetings,
-ben
Am 13.01.2010 17:36, schrieb Benjamin Muskalla:
> Hi folks,
>
> in order to support a native multi-language extension registry, we've
> introduced a LocaleProvider for Equinox. This requires at least Equinox
> M4 in your target platform in case you're working against CVS HEAD of RAP.
>
> See bug 295630 for more information.
>
> Regards,
> Benny
>
|
|
|
Re: [ANN] Equinox 3.6M4 needed for CVS HEAD [message #507979 is a reply to message #507975] |
Fri, 15 January 2010 07:04   |
Eclipse User |
|
|
|
Hi Ben,
besides the system property, equinox also introduced a new command line
option to enable the multi locale feature.
In the web.xml you can do it this way:
<!-- Enable multi-language support for the extension registry -->
<init-param>
<param-name>commandline</param-name>
<param-value>-registryMultiLanguage</param-value>
</init-param>
Regards,
Benny
Benjamin Wolff wrote:
> Hi,
>
> the new mechanism works perfectly. I guess the next milestone release of
> RAP will be bundled with the necessary equinox bundles?
>
> as already mentioned, when working with CVS RAP, it is necessary to
> replace the equinox bundles (or at least the equinox.registry)
> in the target platform with the 3.6M4 bundles available here:
> http://download.eclipse.org/equinox/drops/S-3.6M4-2009121013 01/index.php
>
> i have one question. when running the application from eclipse, i add
> the -Declipse.registry.MultiLanguage=true to the VM arguments
> in the running configuration. but where would i put this system property
> when i deploy the application as a WAR file? for now, i put
> "eclipse.registry.MultiLanguage=true" in the launch.ini file and it
> works. is this the appropriate way for setting system properties
> for the osgi environment in a servlet container?!
>
> greetings,
> -ben
>
>
>
> Am 13.01.2010 17:36, schrieb Benjamin Muskalla:
>> Hi folks,
>>
>> in order to support a native multi-language extension registry, we've
>> introduced a LocaleProvider for Equinox. This requires at least Equinox
>> M4 in your target platform in case you're working against CVS HEAD of
>> RAP.
>>
>> See bug 295630 for more information.
>>
>> Regards,
>> Benny
>>
--
Benjamin Muskalla | EclipseSource Karlsruhe
http://www.eclipsesource.com | http://twitter.com/eclipsesource
|
|
|
Re: [ANN] Equinox 3.6M4 needed for CVS HEAD [message #507991 is a reply to message #507979] |
Fri, 15 January 2010 08:20  |
Eclipse User |
|
|
|
Hi Ben,
yes, that also works fine. where would i get such informations? does equinox has a new & noteworthy or something?
i couldn't find anything on the eclipse page (www.eclipse.org/equinox). for being the foundation of eclipse i think
the information on the page are very rare :P.
greetings,
-ben
Am 15.01.2010 13:04, schrieb Benjamin Muskalla:
> Hi Ben,
>
> besides the system property, equinox also introduced a new command line
> option to enable the multi locale feature.
> In the web.xml you can do it this way:
>
> <!-- Enable multi-language support for the extension registry -->
> <init-param>
> <param-name>commandline</param-name>
> <param-value>-registryMultiLanguage</param-value>
> </init-param>
>
> Regards,
> Benny
>
> Benjamin Wolff wrote:
>> Hi,
>>
>> the new mechanism works perfectly. I guess the next milestone release
>> of RAP will be bundled with the necessary equinox bundles?
>>
>> as already mentioned, when working with CVS RAP, it is necessary to
>> replace the equinox bundles (or at least the equinox.registry)
>> in the target platform with the 3.6M4 bundles available here:
>> http://download.eclipse.org/equinox/drops/S-3.6M4-2009121013 01/index.php
>>
>> i have one question. when running the application from eclipse, i add
>> the -Declipse.registry.MultiLanguage=true to the VM arguments
>> in the running configuration. but where would i put this system
>> property when i deploy the application as a WAR file? for now, i put
>> "eclipse.registry.MultiLanguage=true" in the launch.ini file and it
>> works. is this the appropriate way for setting system properties
>> for the osgi environment in a servlet container?!
>>
>> greetings,
>> -ben
>>
>>
>>
>> Am 13.01.2010 17:36, schrieb Benjamin Muskalla:
>>> Hi folks,
>>>
>>> in order to support a native multi-language extension registry, we've
>>> introduced a LocaleProvider for Equinox. This requires at least Equinox
>>> M4 in your target platform in case you're working against CVS HEAD of
>>> RAP.
>>>
>>> See bug 295630 for more information.
>>>
>>> Regards,
>>> Benny
>>>
>
>
|
|
|
Re: [ANN] Equinox 3.6M4 needed for CVS HEAD [message #508001 is a reply to message #507991] |
Fri, 15 January 2010 04:28  |
Eclipse User |
|
|
|
Hi,
it not documented (yet). They added the information to the Platform Help
but this is only available in newer Eclipse builds. We had the same
problem as you and looked it up in the implementation ;)
Regards,
Benny
Benjamin Wolff wrote:
> Hi Ben,
>
> yes, that also works fine. where would i get such informations? does
> equinox has a new & noteworthy or something?
> i couldn't find anything on the eclipse page (www.eclipse.org/equinox).
> for being the foundation of eclipse i think
> the information on the page are very rare :P.
>
> greetings,
> -ben
>
>
>
> Am 15.01.2010 13:04, schrieb Benjamin Muskalla:
>> Hi Ben,
>>
>> besides the system property, equinox also introduced a new command line
>> option to enable the multi locale feature.
>> In the web.xml you can do it this way:
>>
>> <!-- Enable multi-language support for the extension registry -->
>> <init-param>
>> <param-name>commandline</param-name>
>> <param-value>-registryMultiLanguage</param-value>
>> </init-param>
>>
>> Regards,
>> Benny
>>
>> Benjamin Wolff wrote:
>>> Hi,
>>>
>>> the new mechanism works perfectly. I guess the next milestone release
>>> of RAP will be bundled with the necessary equinox bundles?
>>>
>>> as already mentioned, when working with CVS RAP, it is necessary to
>>> replace the equinox bundles (or at least the equinox.registry)
>>> in the target platform with the 3.6M4 bundles available here:
>>> http://download.eclipse.org/equinox/drops/S-3.6M4-2009121013 01/index.php
>>>
>>> i have one question. when running the application from eclipse, i add
>>> the -Declipse.registry.MultiLanguage=true to the VM arguments
>>> in the running configuration. but where would i put this system
>>> property when i deploy the application as a WAR file? for now, i put
>>> "eclipse.registry.MultiLanguage=true" in the launch.ini file and it
>>> works. is this the appropriate way for setting system properties
>>> for the osgi environment in a servlet container?!
>>>
>>> greetings,
>>> -ben
>>>
>>>
>>>
>>> Am 13.01.2010 17:36, schrieb Benjamin Muskalla:
>>>> Hi folks,
>>>>
>>>> in order to support a native multi-language extension registry, we've
>>>> introduced a LocaleProvider for Equinox. This requires at least Equinox
>>>> M4 in your target platform in case you're working against CVS HEAD of
>>>> RAP.
>>>>
>>>> See bug 295630 for more information.
>>>>
>>>> Regards,
>>>> Benny
>>>>
>>
>>
--
Benjamin Muskalla | EclipseSource Karlsruhe
http://www.eclipsesource.com | http://twitter.com/eclipsesource
|
|
|
Goto Forum:
Current Time: Sun Jul 13 11:46:11 EDT 2025
Powered by FUDForum. Page generated in 0.07652 seconds
|