[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
13 years, 12 months
[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
13 years, 12 months
[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
13 years, 12 months