[JBoss JIRA] (JBIDE-18040) Weinre doesn't work OOTB
by Ilya Buziuk (JIRA)
Ilya Buziuk created JBIDE-18040:
-----------------------------------
Summary: Weinre doesn't work OOTB
Key: JBIDE-18040
URL: https://issues.jboss.org/browse/JBIDE-18040
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: browsersim
Affects Versions: 4.2.0.Beta3
Reporter: Ilya Buziuk
Assignee: Konstantin Marmalyukov
Fix For: 4.2.0.CR1
Attachments: weinre-error.png
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 8 months
[JBoss JIRA] (JBIDE-17825) Cannot initialize JBoss DND
by Snjezana Peco (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17825?page=com.atlassian.jira.plugi... ]
Snjezana Peco reassigned JBIDE-17825:
-------------------------------------
Assignee: Denis Golovin (was: Snjezana Peco)
Could you please verify this patch.
> Cannot initialize JBoss DND
> ---------------------------
>
> Key: JBIDE-17825
> URL: https://issues.jboss.org/browse/JBIDE-17825
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: central
> Affects Versions: 4.2.0.Beta3
> Environment: Fedora 20,
> Reporter: Radim Hopp
> Assignee: Denis Golovin
> Fix For: 4.2.0.CR1
>
>
> Almost allways (if not allways), when Central is started on fresh forkspace, "Cannot initialize JBoss DND" error appears in error log.
> I don't know what's causing this message, but Drag'n'Drop installation from Central works.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 8 months
[JBoss JIRA] (JBIDE-17825) Cannot initialize JBoss DND
by Snjezana Peco (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17825?page=com.atlassian.jira.plugi... ]
Snjezana Peco edited comment on JBIDE-17825 at 8/5/14 5:25 AM:
---------------------------------------------------------------
Could you please verify this patch?
was (Author: snjeza):
Could you please verify this patch.
> Cannot initialize JBoss DND
> ---------------------------
>
> Key: JBIDE-17825
> URL: https://issues.jboss.org/browse/JBIDE-17825
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: central
> Affects Versions: 4.2.0.Beta3
> Environment: Fedora 20,
> Reporter: Radim Hopp
> Assignee: Denis Golovin
> Fix For: 4.2.0.CR1
>
>
> Almost allways (if not allways), when Central is started on fresh forkspace, "Cannot initialize JBoss DND" error appears in error log.
> I don't know what's causing this message, but Drag'n'Drop installation from Central works.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 8 months
[JBoss JIRA] (JBIDE-17825) Cannot initialize JBoss DND
by Snjezana Peco (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17825?page=com.atlassian.jira.plugi... ]
Snjezana Peco commented on JBIDE-17825:
---------------------------------------
The issue can happen if there is the MPC (Marketplace Client) plugin.
There is a bug in MPC (https://bugs.eclipse.org/bugs/show_bug.cgi?id=418196).
I have created a workaround so that JBT's DND for the main Eclipse shell isn't initialized if the central plugin is started before the MPC plugin. DND works partially in that case. It will work from the Central editor, but won't from the Eclipse main shell (the toolbar area, for instance).
Since the bug has been fixed, I have removed the workaround.
If you don't have MPC installed, there is a bug in SWT.
> Cannot initialize JBoss DND
> ---------------------------
>
> Key: JBIDE-17825
> URL: https://issues.jboss.org/browse/JBIDE-17825
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: central
> Affects Versions: 4.2.0.Beta3
> Environment: Fedora 20,
> Reporter: Radim Hopp
> Assignee: Snjezana Peco
> Fix For: 4.2.0.CR1
>
>
> Almost allways (if not allways), when Central is started on fresh forkspace, "Cannot initialize JBoss DND" error appears in error log.
> I don't know what's causing this message, but Drag'n'Drop installation from Central works.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 8 months
[JBoss JIRA] (JBIDE-17391) Provide JAX-RS Resource fields type validation
by Radoslav Rábara (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17391?page=com.atlassian.jira.plugi... ]
Radoslav Rábara closed JBIDE-17391.
-----------------------------------
Verified with JBDS 8.0.0 Beta3-v20140722-2011-B194
> Provide JAX-RS Resource fields type validation
> ----------------------------------------------
>
> Key: JBIDE-17391
> URL: https://issues.jboss.org/browse/JBIDE-17391
> Project: Tools (JBoss Tools)
> Issue Type: Sub-task
> Components: webservices
> Affects Versions: 4.1.0.Final
> Reporter: Xavier Coulon
> Assignee: Xavier Coulon
> Labels: new_and_noteworthy
> Fix For: 4.2.0.Beta3
>
>
> From JAX-RS 1.1 spec (chap 3.2):
> {quote}
> 1. Primitive types.
> 2. Types that have a constructor that accepts a single String argument.
> 3. Types that have a static method named valueOf or fromString with a single String argument that return an instance of the type. If both methods are present then valueOf MUST be used unless the type is an enum in which case fromString MUST be used.
> 4. List<T>, Set<T>, or SortedSet<T>, where T satisfies 2 or 3 above.
> {quote}
> JAX-RS 2.0 introduced the notion of ParamConverterProvider:
> {quote}
> Valid parameter types for each of the above annotations are listed in the corresponding Javadoc, however in general (excluding @Context) the following types are supported:
> 1. Types for which a ParamConverter is available via a registered ParamConverterProvider. See Javadoc for these classes for more information.
> 2. Primitive types.
> 3. Types that have a constructor that accepts a single String argument.
> 4. Types that have a static method named valueOf or fromString with a single String argument that return an instance of the type. If both methods are present then valueOf MUST be used unless the type is an enum in which case fromString MUST be used1.
> 5. List<T>, Set<T>, or SortedSet<T>, where T satisfies 3 or 4 above.
> {quote}
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 8 months