[JBoss JIRA] Created: (JBIDE-7279) Provide support for JAX-WS 2.2 APIs
by Lukas Jungmann (JIRA)
Provide support for JAX-WS 2.2 APIs
-----------------------------------
Key: JBIDE-7279
URL: https://jira.jboss.org/browse/JBIDE-7279
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: Webservices
Affects Versions: 3.2.0.Beta1
Reporter: Lukas Jungmann
Assignee: Brian Fitzpatrick
[this is to be checked against JBossAS 6.0M5 or newer]
for a project which has target runtime set to JBossAS6/uses JBossWS 3.3.x
-user should be allowed to set JAX-WS spec version in a top-down web service and web service client wizards to 2.2
-editor should not show errors for following generated type of constructor:
public Info(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
(in the other words editor/ide has to know about APIs from $JBOSS_HOME/lib/endorsed)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 12 months
[JBoss JIRA] Created: (JBIDE-830) JSF support: linked folders
by Petr Lindovsky (JIRA)
JSF support: linked folders
---------------------------
Key: JBIDE-830
URL: http://jira.jboss.com/jira/browse/JBIDE-830
Project: JBoss Tools
Issue Type: Bug
Affects Versions: 2.0.0.Beta3
Environment: Windows XP
Reporter: Petr Lindovsky
I have a Web project (originally developed in another IDE) where the META-INF and WEB-INF directories are located directly under the root of the project (e.g. next to src).
So I can't take the project root as the web content directory. To make this work with Europa, I created a new WebConent directory under the root and added folder links there pointing to the existing META-INF and WEB-INF. This now works in Europa.
Is it possible to add RedHat JSF support to this? This wizard doesn't seem to take this into account.
I created a project where you can see the problem: It works in Europa (you can use Export > WAR file and Run As > Run On Server) but I don't know hat to make it work with the RedHat JSF support.
(Note: I used absolute paths in the links in the project; in reality we used path variables to enable sharing.)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years
[JBoss JIRA] Created: (JBIDE-8435) JPA: validation of generic generator strategy class uses Arrays.binarySearch for non-sorted string array
by Dmitry Geraskov (JIRA)
JPA: validation of generic generator strategy class uses Arrays.binarySearch for non-sorted string array
--------------------------------------------------------------------------------------------------------
Key: JBIDE-8435
URL: https://issues.jboss.org/browse/JBIDE-8435
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Hibernate
Affects Versions: 3.2.0.CR1
Reporter: Dmitry Geraskov
Assignee: Dmitry Geraskov
Fix For: 3.3.x
The validator could add wrong error messages
Test case:
1. Create <generator_class> class which implements several interfaces and "org.hibernate.id.IdentifierGenerator"
1. create @GenericGenerator(strategy="<generator_class>")
2. where generator class
3. change places of the interfaces and the error will occur
FAILURE: wrong error appeared
Also it check only direct(or superclasses) interfaces
Test case2:
1. create interface MyInterface implements "org.hibernate.id.IdentifierGenerator"
2. create @GenericGenerator(strategy="<generator_class>")
3. where <generator_class> is a class which implements interface MyInterface
FAILURE: wrong error appeared
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years
[JBoss JIRA] Created: (JBIDE-7030) HTML highlighting and code assist in JS editor inside string variables
by Dzianis Sheka (JIRA)
HTML highlighting and code assist in JS editor inside string variables
----------------------------------------------------------------------
Key: JBIDE-7030
URL: https://jira.jboss.org/browse/JBIDE-7030
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: Visual Page Editor core
Reporter: Dzianis Sheka
Assignee: Maxim Areshkau
When we develop something on JavaScript,sometimes we use the next constructions:
function insert_tree_base(data) {
eval("window.items=" + data + ";");
if (items && (items.length > 0)) {
var s = "<table cellspacing='0' cellpadding='5' class='tree'>";
for (var i=0; i < items.length; i++) {
s = s + "<tr><td valign='top' align='left'>" + window.insert_tree_build(window.items[i], 0) + "</td></tr>";
}
s = s + "</table>";
jQuery("#treeFragment").append(s);
}
And in VPE we don't have a html highlighting inside s = s + "<tr><td valign='top' align='left'>" + window.insert_tree_build(window.items[i], 0) + "</td></tr>";
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years