[JBoss JIRA] Created: (JBIDE-7832) there is a error report for ws topdown that is not required
by Feng Qian (JIRA)
there is a error report for ws topdown that is not required
-----------------------------------------------------------
Key: JBIDE-7832
URL: https://jira.jboss.org/browse/JBIDE-7832
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Webservices
Affects Versions: 3.2.0.Beta1
Environment: windows
Reporter: Feng Qian
Assignee: Feng Qian
Fix For: 3.2.0.CR1
when use ws module to generate web service from a wsdl, if you use jre, not jdk, there is a error report:
[ERROR] com.sun.tools.javac.Main is not available in the classpath, requires Suns JDK version 5.0 or latter.
unknown location
compilation failed, errors should have been reported
Failed to invoke WsImport
java.lang.IllegalStateException: WsImport invocation failed. Try the verbose switch for more information
at org.jboss.ws.tools.jaxws.impl.SunRIConsumerImpl.consume(SunRIConsumerImpl.java:220)
at org.jboss.wsf.spi.tools.cmd.WSConsume.importServices(WSConsume.java:223)
at org.jboss.wsf.spi.tools.cmd.WSConsume.main(WSConsume.java:81)
This is caused by ws runtime, which need jdk to complie these codes, but in jboss tools, we don't need ws runtime to compile.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[JBoss JIRA] Created: (JBIDE-7776) CDI tools core doesn't take into account disabled beans while resolving beans.
by Alexey Kazakov (JIRA)
CDI tools core doesn't take into account disabled beans while resolving beans.
------------------------------------------------------------------------------
Key: JBIDE-7776
URL: https://jira.jboss.org/browse/JBIDE-7776
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi (jsr-299)
Affects Versions: 3.2.0.Beta2
Reporter: Alexey Kazakov
Assignee: Alexey Kazakov
Fix For: 3.2.0.CR1
5.1.2. Enabled and disabled beans
A bean is said to be enabled if:
• it is deployed in a bean archive, and
• it is not a producer method or field of a disabled bean, and
• it is not specialized by any other enabled bean, as defined in Section 4.3, "Specialization", and either
• it is not an alternative, or it is a selected alternative of at least one bean archive.
org.jboss.tools.cdi.core.test.tck.ResolutionByNameTest.testAmbiguousELNamesResolved() should pass.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[JBoss JIRA] Created: (JBIDE-7932) New Seam EAR project fails to deploy to JBoss AS 6 CR1
by Jozef Hartinger (JIRA)
New Seam EAR project fails to deploy to JBoss AS 6 CR1
------------------------------------------------------
Key: JBIDE-7932
URL: https://issues.jboss.org/browse/JBIDE-7932
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Seam
Affects Versions: 3.2.0.Beta2
Environment: Linux 64bit
JDK 1.6.0_23
JBoss Tools 3.2.0 Beta 2 (20101206)
Seam 2.2.1.CR2
Reporter: Jozef Hartinger
Assignee: Alexey Kazakov
Priority: Critical
Steps to reproduce:
1) Unzip JBoss AS 6 CR1
2) Add the server to JBoss Tools
3) Create new Seam 2.2 project (select EAR project and either HSQLDB or MySQL)
4) Start the application server
5) An exception is thrown during deployment of the project (see the attached file for the stacktrace)
Note that an WAR project deploys without problems. Also, and EAR or WAR project generated via seam-gen works as expected.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[JBoss JIRA] Created: (JBIDE-8019) Injection point is not resolved to producer from jar.
by Alexey Kazakov (JIRA)
Injection point is not resolved to producer from jar.
-----------------------------------------------------
Key: JBIDE-8019
URL: https://issues.jboss.org/browse/JBIDE-8019
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi (jsr-299)
Affects Versions: 3.2.0.CR1
Reporter: Alexey Kazakov
Assignee: Viacheslav Kabanovich
Fix For: 3.2.0.CR1
1. Project A has weld-se-core-1.1.0.Beta1-sources.jar in its class path.
2. weld-se-core-1.1.0.Beta1-sources.jar has ParametersFactory.class:
@Produces
@Parameters
public List<String> getArgs()
{
return argsList;
}
and Parameters.class:
@Qualifier
@Retention(RUNTIME)
@Target({ PARAMETER, METHOD, FIELD, TYPE })
public @interface Parameters {}
3. Project A also has the following class:
public class ShellImpl {
@Inject
@Parameters
private List<String> parameters;
}
4. But private List<String> parameters; is not resolved to getArgs() producer.
This example is from froge-shell (seam-forge) project.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months