[jboss-jira] [JBoss JIRA] Commented: (JBID-232) Seam authentication filter: create a standalone version
Marcel Kolsteren (JIRA)
jira-events at lists.jboss.org
Sat Dec 26 16:10:30 EST 2009
[ https://jira.jboss.org/jira/browse/JBID-232?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12501657#action_12501657 ]
Marcel Kolsteren commented on JBID-232:
---------------------------------------
Tested in PicketLink 1.0.1 whether the Seam authentication filter works if the PicketLink federation libraries are not copied to the lib folder of the server. Result: it works. The needed PicketLink jar files are automatically added to the Seam application via transitive dependencies. When using JDK 1.6, some transitive dependencies should be excluded because they are supplied by the JDK:
<dependency>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-seam</artifactId>
<version>...</version>
<exclusions>
<exclusion>
<groupId>sun-jaxb</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>sun-jaxb</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>stax</groupId>
<artifactId>stax-api</artifactId>
</exclusion>
</exclusions>
</dependency>
I changed the Seam example application (seam-sp) so that it can be used standalone. Now it uses the standalone IDP (idp-standalone), instead of the Tomcat valve based IDP (idp-sig-no-val).
> Seam authentication filter: create a standalone version
> -------------------------------------------------------
>
> Key: JBID-232
> URL: https://jira.jboss.org/jira/browse/JBID-232
> Project: JBoss Identity
> Issue Type: Feature Request
> Components: Identity-Federation
> Reporter: Marcel Kolsteren
> Assignee: Anil Saldhana
>
> Currently a Seam developer not only needs to add a dependency to the POM file, he also needs to add the JBoss Identity JAR files to the lib directory of his application server. The goal is to create a Seam artifact that contains all required (transitive) dependencies, so that nothing needs to be added to the application server any more.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list