[JBoss JIRA] Created: (JBIDE-9448) EL tooltip doesn't work
by Alexey Kazakov (JIRA)
EL tooltip doesn't work
-----------------------
Key: JBIDE-9448
URL: https://issues.jboss.org/browse/JBIDE-9448
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: jsp/jsf/xml source editing
Affects Versions: 3.3.0.M3
Reporter: Alexey Kazakov
Assignee: Victor Rubezhny
Priority: Critical
Fix For: 3.3.0.M3
EXECUTE: Create a seam web project
EXECUTE: Open home.xhtml
EXECUTE: Add #{authenticator.authenticate()} to any place of the page
EXECUTE: Point mouse to the EL
FAILURE: No tooltip appears.
--
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-9518) WebPortPoller #onePing swallows Exceptions without any logging
by Andre Dietisheim (JIRA)
WebPortPoller #onePing swallows Exceptions without any logging
--------------------------------------------------------------
Key: JBIDE-9518
URL: https://issues.jboss.org/browse/JBIDE-9518
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: JBossAS
Affects Versions: 3.3.0.M3
Reporter: Andre Dietisheim
Assignee: Rob Stryker
Fix For: 3.3.x
{code}
private static boolean onePing(String url) {
try {
URL pingUrl = new URL(url);
URLConnection conn = pingUrl.openConnection();
((HttpURLConnection)conn).getResponseCode();
return true;
} catch( FileNotFoundException fnfe ) {
return true;
} catch( Exception e) {
}
return false;
}
{code}
--
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-9520) LocalJBossBehaviorDelegate#canChangeState should not swallow Exception
by Andre Dietisheim (JIRA)
LocalJBossBehaviorDelegate#canChangeState should not swallow Exception
----------------------------------------------------------------------
Key: JBIDE-9520
URL: https://issues.jboss.org/browse/JBIDE-9520
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Reporter: Andre Dietisheim
LocalJBossBehaviorDelegate#canChangeState swallows an Exception can would occur when getting the jboss runtime for a given server:
{code}
public IStatus canChangeState(String launchMode) {
try {
if( getServer() != null
&& getServer().getRuntime() != null
&& RuntimeUtils.checkedGetJBossServerRuntime(getServer()).getVM() != null )
return Status.OK_STATUS;
} catch(Exception e) {
// ignore
}
return new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID,
MessageFormat.format(Messages.ServerHasNoRuntime, getServer().getName()));
}
{code}
RuntimeUtils#checkedGetJBossServerRuntime throws a CoreException if fetching failed. We should not swallow this exception but return it instead of a general purpose error status.
--
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-9632) compile failed in org.jboss.ide.eclipse.as.ui.mbeans/src/org/jboss/ide/eclipse/as/ui/mbeans/project/SarArtifactAdapter.java :: method getModule() of type SarArtifactAdapter.MBeanNullArtifact must override a superclass method
by Nick Boldt (JIRA)
compile failed in org.jboss.ide.eclipse.as.ui.mbeans/src/org/jboss/ide/eclipse/as/ui/mbeans/project/SarArtifactAdapter.java :: method getModule() of type SarArtifactAdapter.MBeanNullArtifact must override a superclass method
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Key: JBIDE-9632
URL: https://issues.jboss.org/browse/JBIDE-9632
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: JBossAS
Affects Versions: 3.3.0.M4
Reporter: Nick Boldt
Assignee: Rob Stryker
Fix For: 3.3.0.M4
Building locally:
cd ~/trunk/as/plugins/org.jboss.ide.eclipse.as.ui.mbeans; mvn clean install
[INFO] Using compile source roots from build.properties
[INFO] Compiling 32 source files to /home/nboldt/eclipse/workspace-jboss/jbosstools_trunk/as/plugins/org.jboss.ide.eclipse.as.ui.mbeans/target/classes
----------
1. ERROR in /home/nboldt/eclipse/workspace-jboss/jbosstools_trunk/as/plugins/org.jboss.ide.eclipse.as.ui.mbeans/src/org/jboss/ide/eclipse/as/ui/mbeans/project/SarArtifactAdapter.java (at line 35)
public IModule getModule() {
^^^^^^^^^^^
The method getModule() of type SarArtifactAdapter.MBeanNullArtifact must override a superclass method
----------
1 problem (1 error)
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years