[JBoss JIRA] Created: (JBIDE-8547) Exception in CDIProblemMarkerResolutionGenerator
by Viacheslav Kabanovich (JIRA)
Exception in CDIProblemMarkerResolutionGenerator
------------------------------------------------
Key: JBIDE-8547
URL: https://issues.jboss.org/browse/JBIDE-8547
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi (jsr-299)
Affects Versions: 3.2.0.Final
Reporter: Viacheslav Kabanovich
Assignee: Daniel Azarov
Fix For: 3.3.0.M1
I have created method
@Inject
public String getX( @Named String a) { return a; }
which was the last method in a class file.
Then I manually reformatted it to
@Inject
public String getX(
@Named
String a) { return a; } }
with 10 empty lines instead of 1 left here for readability.
Then I deleted each set of spaces by selecting it all and using Delete button.
Finally, I started quickly repeat Undo-Save-Redo-Save with fast keys. Several rounds resulted in the exception.
That kind of intensive 'work' may result in other exceptions as well.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 9 months
[JBoss JIRA] Created: (JBIDE-8325) Injection point should be re-validated automatically if any bean with the same bean type created.
by Alexey Kazakov (JIRA)
Injection point should be re-validated automatically if any bean with the same bean type created.
-------------------------------------------------------------------------------------------------
Key: JBIDE-8325
URL: https://issues.jboss.org/browse/JBIDE-8325
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.3.0.M1
1. Create ITestBean interface.
2. Create public class TestBeanImpl implements ITestBean {...}
3. Add @Inject ITestBean foo; field to any bean but TestBeanImpl.
4. Validate the project. @Inject ITestBean foo; is valid since there is the only bean TestBeanImpl to be injected.
5. Create public class TestBeanImpl2 implements ITestBean {...}. Save the file, build the project (using the incremental builder).
6. @Inject ITestBean foo; is not valid anymore because there are two beans TestBeanImpl and TestBeanImpl2 to be injected. But CDI validator doesn't re-validate @Inject ITestBean foo; We have to change/validate the file with the injection to re-validate it and have a marker on this invalid injection.
Slava, let's add
IInjectionPoint getInjections(String fullyQuilifeidTypeName);
method to IBeanManager interface and its implementation. Then assign the issue to me and I will fix this bug in CDI validator.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 9 months
[JBoss JIRA] Created: (JBIDE-8794) Smooks editor does't work with Abstract classes
by Ganesh Puri (JIRA)
Smooks editor does't work with Abstract classes
-----------------------------------------------
Key: JBIDE-8794
URL: https://issues.jboss.org/browse/JBIDE-8794
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: smooks
Affects Versions: 3.2.0.Final, 3.1.1, 3.1.0.GA, 3.0.3.GA, 3.0.2.GA, 3.0.1.GA, 3.0.0.GA, 2.1.2, 2.1.1, 2.1.0.GA, 2.0.1, 2.0.0.GA
Reporter: Ganesh Puri
Assignee: Brian Fitzpatrick
When you have an abstract class and couple of extended classes e.g. one abstract Address class and couple of extended classes say AddressStructured and AddressFreeForm, the smooks editor doesn't parse it. The error shown on the Smooks Processing screen is "Check Input Task configuration.Error creating Input Model from Sample Input Data. Error: "Error build project classpath."
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 9 months
[JBoss JIRA] Created: (JBIDE-6942) Prompt for Basic Auth when accessing secured WSDL
by Juergen Zimmermann (JIRA)
Prompt for Basic Auth when accessing secured WSDL
-------------------------------------------------
Key: JBIDE-6942
URL: https://jira.jboss.org/browse/JBIDE-6942
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: Webservices
Affects Versions: 3.2.0.M1
Reporter: Juergen Zimmermann
Assignee: Brian Fitzpatrick
A SOAP based Web Service can be defined as follows:
@WebService(name = "MyService")
@WebContext(contextRoot = "/myRoot", authMethod = "BASIC", secureWSDLAccess = true)
@EndpointConfig(configName = "Standard WSSecurity Endpoint")
Now the WSDL cannot be accessed without BASIC authentication.
Therefore, it would be fine, if you could provide a checkbox within the dialog "Select WSDL", so that username and password could be prompted. Just as the checkbox below "Request details" in the main window.
--
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, 9 months