[JBoss JIRA] (GTNWSRP-338) RichFaces fileUpload fix results in NullPointerException
by Martin Weiler (JIRA)
Martin Weiler created GTNWSRP-338:
-------------------------------------
Summary: RichFaces fileUpload fix results in NullPointerException
Key: GTNWSRP-338
URL: https://issues.jboss.org/browse/GTNWSRP-338
Project: GateIn WSRP
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Affects Versions: 2.2.0.CR03
Reporter: Martin Weiler
Assignee: Chris Laprun
The fix that was committed to fix GTNWSRP-323 leads to a NullPointerException in MultiPartUtil.MultiPartResult:
{code}
public List<NamedString> getFormParameters()
{
if (formParameters != null)
{
formParameters = new ArrayList<NamedString>();
}
return formParameters;
}
public List<UploadContext> getUploadContexts()
{
if (uploadContexts != null)
{
uploadContexts = new ArrayList<UploadContext>();
}
return uploadContexts;
}
{code}
This should be changed to have the lists properly initialized:
{code}
if (formParameters == null)
...
if (uploadContexts == null)
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 1 month
[JBoss JIRA] (GTNPORTAL-2728) Remove unused ClusteredSSOFilter from web.xml
by Marek Posolda (JIRA)
Marek Posolda created GTNPORTAL-2728:
----------------------------------------
Summary: Remove unused ClusteredSSOFilter from web.xml
Key: GTNPORTAL-2728
URL: https://issues.jboss.org/browse/GTNPORTAL-2728
Project: GateIn Portal
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Affects Versions: 3.5.0.Beta01
Reporter: Marek Posolda
Fix For: 3.5.0.Final
Class ClusteredSSOFilter is no longer needed. Cluster SSO is handled by JBoss AS ClusteredValve and PortalClusteredSSOSupportValve.
ClusteredSSOFilter is based on reauthenticating based on session attribute, added by PortalLoginModule. But PortalLoginModule is not used, so this filter is redundant as attribute in session never exist.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 1 month
[JBoss JIRA] (GTNPORTAL-2727) Packaging for picketlink federation
by Marek Posolda (JIRA)
Marek Posolda created GTNPORTAL-2727:
----------------------------------------
Summary: Packaging for picketlink federation
Key: GTNPORTAL-2727
URL: https://issues.jboss.org/browse/GTNPORTAL-2727
Project: GateIn Portal
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: Packaging, SSO
Affects Versions: 3.5.0.Beta02
Reporter: Marek Posolda
Fix For: 3.5.0.Final
Currently SAML2 integration doesn't work with JBoss AS 7.1.1 due to old version of Picketlink Federation library.
GateIn packaging needs to be updated to use newer version of Picketlink federation. It needs to use version 2.1.4.Final, which is also used by AS 7.1.3.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 1 month