[Acegisecurity-developer] Patch to fix NPE

2005-02-28 Thread Konstantin Shaposhnikov
Hello all, 

I am not sure where I should send my patch (I havesn't found any
bugtracking system for acegi), so I'll send it to mailing list.

If you enable DEBUG log level and define f.e. in FilterChainProxy
filterInvocationDefinitionSource pattern without any filter (something
like /**/*.css=), then NPE is thrown.

Following patch fixes exception.

Index: 
src/main/java/net/sf/acegisecurity/intercept/web/PathBasedFilterInvocationDefinitionMap.java
===
RCS file: 
/cvsroot/acegisecurity/acegisecurity/core/src/main/java/net/sf/acegisecurity/intercept/web/PathBasedFilterInvocationDefinitionMap.java,v
retrieving revision 1.2
diff -u -r1.2 PathBasedFilterInvocationDefinitionMap.java
--- 
src/main/java/net/sf/acegisecurity/intercept/web/PathBasedFilterInvocationDefinitionMap.java
   5 Dec 2004 05:04:52 -   1.2
+++ 
src/main/java/net/sf/acegisecurity/intercept/web/PathBasedFilterInvocationDefinitionMap.java
   28 Feb 2005 09:38:30 -
@@ -95,7 +95,7 @@

 if (logger.isDebugEnabled()) {
 logger.debug("Added Ant path: " + antPath + "; attributes: "
-+ attr.toString());
++ attr);
 }
 }

Best regards,
Konstantin.


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Home: http://acegisecurity.sourceforge.net
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer


Re: [Acegisecurity-developer] Turn On Subscribe Request Verification?

2005-02-28 Thread Seth Ladd
Ben Alex wrote:
On Saturday 26 February 2005 05:49, Seth Ladd wrote:
Hello,
Ben, is it possible to turn on the Subscribe Request Verification for
this mailing list?  It would stop the spam we see to this list.  It's a
mailman parameter, I believe.
Thanks!
Seth

I've switched on member_posting_only, which is the only spam-related parameter 
I could find which was not already on. Hope this helps.
Great, thanks!
Seth
--
http://www.picklematrix.net/foaf.rdf";>Seth Ladd's FOAF
http://www.foaf-project.org/";>What is FOAF?
---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Home: http://acegisecurity.sourceforge.net
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer


Re: [Acegisecurity-developer] Patch to fix NPE

2005-02-28 Thread Ben Alex
On Monday 28 February 2005 20:43, Konstantin Shaposhnikov wrote:
> Hello all,
>
> I am not sure where I should send my patch (I havesn't found any
> bugtracking system for acegi), so I'll send it to mailing list.
>
> If you enable DEBUG log level and define f.e. in FilterChainProxy
> filterInvocationDefinitionSource pattern without any filter (something
> like /**/*.css=), then NPE is thrown.
>
> Following patch fixes exception.

Thanks, committed to CVS.

Ben


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Home: http://acegisecurity.sourceforge.net
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer


[Acegisecurity-developer] AbstractSecurityInterceptor

2005-02-28 Thread Sean Radford
A thought...
When using a DefaultAdvisorAutoProxyCreator and an 
AbstractSecurityInterceptor (e.g. MethodSecurityInterceptor) with an 
AuthenticationManager and/or AccessDecisionManager (or their 
subcomponents) that need advising themselves (e.g. transactional advice) 
using the DefaulAdvisorAutoProxyCreator to apply it. They won't get it 
as the DefaulAdvisorAutoProxyCreator doesn't exist yet.

Would it be an idea as an option to specify the AuthenticationManager 
and AccessDecisionManager by id/name for later 'binding' on at the start 
of the 'invoke' method?

Regards,
Sean
--
Dr. Sean Radford, MBBS, MSc
[EMAIL PROTECTED]
http://bladesys.demon.co.uk/ 


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Home: http://acegisecurity.sourceforge.net
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer


[Acegisecurity-developer] Remember-me and releasing 0.8.0

2005-02-28 Thread Ben Alex
Hi everyone

I've just added pluggable remember-me services to CVS. You will also find 
corresponding tests, reference documentation, JavaDocs and a demonstration in 
the Contacts sample.

I believe we've accumulated sufficient additional features, improvements and 
fixes to warrant a new release. I had hoped to include configuration 
attribute aware AuthenticationEntryPoints, but I haven't got time to do so at 
persent. In any event, this feature doesn't pose any backward compatibility 
constraint.

I'd be grateful if people tried out the latest code from CVS (if they get a 
chance) and report any issues. Assuming there aren't any show-stoppers or 
other concerns, I'll release 0.8.0 in the next day or two.

Thanks
Ben


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Home: http://acegisecurity.sourceforge.net
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer


[Acegisecurity-developer] Re: Stable LDAP authentication DAO

2005-02-28 Thread Ben Alex
On Tuesday 01 March 2005 09:36, Baldwin, Richard wrote:
> Hello,
>
> My company's project requires an LDAP connection for access to company
> credentials.  I'd like to test the alpha version of the DAO, but I'm unable
> to cut through our firewall to CVS using pserver.  I wonder if there's a
> secondary way to access CVS to pick-up files I'd need?  (I know I can pick
> up this stuff from home, but I'd like to fetch these artifacts when I need
> them.)
>
> Thanks.
>
> Richard

Sorry Richard, LDAP is only in CVS due to it being of "sandbox" status.

Did you try CVSGrab, as per 
http://acegisecurity.sourceforge.net/cvs-usage.html?

Best regards
Ben


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Home: http://acegisecurity.sourceforge.net
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer


[Acegisecurity-developer] JIRA

2005-02-28 Thread Dmitriy Kopylenko
Ben,
so what's the story with Spring subproject? Acegi project desperately 
needs JIRA...

Regards,
Dmitriy.
---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Home: http://acegisecurity.sourceforge.net
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer


Re: [Acegisecurity-developer] JIRA

2005-02-28 Thread Scott McCrory
On Mon, 28 Feb 2005 21:56:34 -0500, Dmitriy Kopylenko wrote
> Ben,
> 
> so what's the story with Spring subproject?

+999 :-)


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Home: http://acegisecurity.sourceforge.net
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer


Re: [Acegisecurity-developer] JIRA

2005-02-28 Thread Scott Battaglia
just to make it an even one thousand...
+1 :-D
-Scott
Scott McCrory wrote:
On Mon, 28 Feb 2005 21:56:34 -0500, Dmitriy Kopylenko wrote
 

Ben,
so what's the story with Spring subproject?
   

+999 :-)
---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Home: http://acegisecurity.sourceforge.net
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer
 


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Home: http://acegisecurity.sourceforge.net
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer


Re: [Acegisecurity-developer] Re: Stable LDAP authentication DAO

2005-02-28 Thread Ben Alex
Ben Alex wrote:
Did you try CVSGrab, as per 
http://acegisecurity.sourceforge.net/cvs-usage.html?

 

I've put a nightly build up at http://acegisecurity.sourceforge.net/nightly/
Best regards
Ben

---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Home: http://acegisecurity.sourceforge.net
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer