[JBoss JIRA] (JBIDE-21059) Server Adapter does not connect in debug mode on WF in a Docker container
by Xavier Coulon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21059?page=com.atlassian.jira.plugi... ]
Xavier Coulon commented on JBIDE-21059:
---------------------------------------
I was discussing with [~maxandersen] this morning and he reminded me about JBIDE-20153. Wouldn't it be simpler to handle this feature in this issue ?
> Server Adapter does not connect in debug mode on WF in a Docker container
> --------------------------------------------------------------------------
>
> Key: JBIDE-21059
> URL: https://issues.jboss.org/browse/JBIDE-21059
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: server
> Affects Versions: 4.3.0.Final
> Reporter: Xavier Coulon
> Assignee: Rob Stryker
> Fix For: 4.4.1.S116
>
>
> I have a WF 9.0.2.Final in a Docker container, started with the debug flag in the command line :
> {code}
> CMD ["/opt/jboss/wildfly/bin/standalone.sh", "-c", "standalone.xml", "-b", "0.0.0.0", "-bmanagement", "0.0.0.0" , "--debug"]
> {code}
> I can connect to this server from the server adapter in Run mode but not in debug mode: the Debug view remains empty and the breakpoints are not hit.
> On the other side, I can connect using the plain Java remote debugger (in the launchers) and the same breakpoints are hit.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 9 months
[JBoss JIRA] (JBIDE-22469) Compilation problem in StructuredModelWrapperTest
by Rastislav Wagner (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22469?page=com.atlassian.jira.plugi... ]
Rastislav Wagner closed JBIDE-22469.
------------------------------------
verified on github both master aj 4.4.0.x branches. Eclipse doesnt complain
> Compilation problem in StructuredModelWrapperTest
> -------------------------------------------------
>
> Key: JBIDE-22469
> URL: https://issues.jboss.org/browse/JBIDE-22469
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: common/jst/core
> Affects Versions: 4.4.0.Alpha2
> Reporter: Viacheslav Kabanovich
> Assignee: Viacheslav Kabanovich
> Fix For: 4.4.0.Final
>
> Attachments: CompilationProblem.png
>
>
> Eclipse show error marker "The method execute(IFile, StructuredModelWrapper.ICommand) is ambiguous for the type StructuredModelWrapper". On the call
> {code}
> StructuredModelWrapper.execute(testFile, xmlDocument -> assertNotNull(xmlDocument));
> {code}
> There are 2 execute methods, with similar interfaces. Though compiler shoud resolve the method by assertNotNull having 'void' for the return type, and tycho build currently finds no problem with it, still this code looks on the verge of fault and better be improved by changing it to
> {code}
> StructuredModelWrapper.execute(testFile, xmlDocument -> { assertNotNull(xmlDocument); });
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 9 months