Hi Mike,
XFire sure can handle contract first web services. Xfire supports various binding mechanisms. While its true that Xfire's default "Aegis" binding does not support contract first, there...
Type: Posts; User: mediaslave; Keyword(s):
Hi Mike,
XFire sure can handle contract first web services. Xfire supports various binding mechanisms. While its true that Xfire's default "Aegis" binding does not support contract first, there...
Hey Ben,
One thing that I would like to add is my LDAP DAO extends InitialDirContextFactoryBean, so to add my LDAP/Active Directory code to AbstractUserDetailsAuthenticationProvider would not be...
I too am authenticating against a ldap server. I was wondering how far you got refactoring your ldap code to use AbstractUserDetailsAuthenticationProvider. I was going to give it a shot tomorrow....
Ah Thanks Ben. :)
Does the Ldap code in the sandbox use AbstractUserDetailsAuthenticationProvider also?
-Tyler
Hi,
I upgraded to 0.9.0 and noticed that PasswordAuthenticationDao is missing. Has it been renamed or removed?
Thanks,
Tyler
Hi,
I had to do something similar. It wasn't in Acegi for that project b/c I was dealing with one of the those "God" hands on Architects that Rod likes to talk about. Too many jars indeed.
...
I'm extending LdapPasswordAuthenticationDao to use our applications own versions of GrantedAuthority and UserDetails and noticed a couple things.
I can extend toGrantedAuthority easily to...
I am using Acegi 0.9.0 from cvs and extending net.sf.acegisecurity.providers.dao.jdbc.JdbcDaoImpl to return my own userdetails and grantedauthority impls. However I have hit a little snag.
I need...
Yeah I could do that. But I agree its not the prettiest xml in the world.
Other thing I could do is to change my code that pulls out the DAO from the map by using myObject.getClass().getName() Or...
Hello,
Is it possiable to have a Class object be a key for a map. Currently when I inject it with spring , my key is a String rather than a Class.
I believe there was a recent fix to allow non...
I have been playing around with BeanNameAutoProxyCreator it looks like it does not work with ProxyFactoryBean or any FactoryBeans for that matter.
Also if you use parent beans it will not work...
When will TouchingAfterReturningAdvice be added to the a spring modules release jar? I notice it is in cvs however it does not seem to be in the 0.2 release.
Thanks,
Tyler
Yeah I did find those and they do work well . However it does tend to make the xml file a little more complicated. Here is basic example that I used for TreeMaps as an inner bean.
<bean...
I was thinking that a nice feature to be added to spring would be a way Inject different type of collections (sets,maps,lists).
It looks like currently you can can use LinkedHashMap/HashMap for...
Costin is correct it is [[D. Here is the thread that I started about the byte[] in case you are interested.
http://forum.springframework.org/showthread.php?t=17523
--Tyler
Ok I'm a little slow today :)
byte[].class, etc work a little different than byte.class
Rather than passing it in as the string byte[] you need to pass it in as the string [B
which is the...
Looks like it is a feature that needs to be added.
Here is the Array of primitives classes. as you can see there are no entries for byte[].class. boolean[].class etc
private static Class[]...
I'm trying to inject a byte[].class via IOC into a custom class. However it it looks like ClassUtils does not handle primitive arrays. It does work with primitives, just not primitive arrays like...
Hello,
I have been starting to use Spring MVC instead of Struts in my new web apps with OpenSessionInViewInterceptor and noticed something weird. Basically my command class is a hibernate domain...
Hello, I have a scenario where I have two types of users that need to be authenticated in different ways. User type A needs to be authenticated via Active Directory, and User Type B needs to be...