I saw same sort of error when I first used the Security3Helper class in my application just like it was used in the TestDrive. I exposed the bean as a remoting destination, as follows:
<bean...
Type: Posts; User: con19m31; Keyword(s):
I saw same sort of error when I first used the Security3Helper class in my application just like it was used in the TestDrive. I exposed the bean as a remoting destination, as follows:
<bean...
Seems like the known current limitation involving lazy/eager fetching for Hibernate. Please look at this thread.
http://forum.springsource.org/showthread.php?t=86093
Larry
Hi,
It turns out that in DefaultUrlMappingInfo class, method evaluateNameForValue(Object value), the code below has an instance of ServletRequestAttributes instead of a GrailsWebRequest, when the...
Thanks......I'm gradually adding sources so I can try and see what is going on behind the scenes.
It seems to center around the springSecurityFilterChain in web.xml. If I change the url-pattern...
I tried reverting to SpringSecurity 2 just in case there would be some difference, and same result.
Guess its time to dig into how everything gets initialized to figure out why I'm seeing a...
If I remove the Spring security filter chain, everything works fine as well, ie. by removing:
<filter>
<filter-name>springSecurityFilterChain</filter-name>...
Hi,
Thanks to anyone that has read about my issue.
In my flex-servlet.xml I had the following:
<flex:message-broker>
<flex:secured />
</flex:message-broker>
Note: I've edited title as old one was a little misleading based on recent investigation.
I've integrated BlazeDS with Grails, using Spring under the hood techniques. When I add a new servlet...
Hi,
It has been awhile since SpringSource acquired Grails. The various Spring forums are so invaluable. Many have asked when there will be a real forum (here) for Grails, as opposed to a...
Hi Martin,
I tried the same thing you did, including adding folders to the classpath, and after spending a bit of time on it, I switched to just adding the applicationContext-security.xml file...
My users and roles come from my database, so I implement my own authentication provider, and tell spring about it as described in the Spring Security reference documentation.
If you want to have...
Marten,
Based on your advice, I moved my applicationContext-security.xml reference into web.xml so it is a contextConfigLocation parameter and would hopefully load along with applicationContext,...
Hi,
I have seen many posts about this same problem I'm having, but I've read whatever I could find and tried any solutions proposed. If anyone can help I'd really appreciate it.
The twist is...
I have a Grails/Flex project that I want to secure, but based on everything I've seen, I think I'll fall back to standard Spring instead of the Grails Acegi plugin.
Perhaps that means I might have...
I was thinking of posting a question about why Grails doesn't have a forum like Spring now that it is under the SpringSource umbrella. I tried several times about a week ago to join the Grails...
Thanks very much :) .... it is all clear now.
Larry
I'm working through the test drive, and I can't seem to understand where the values for server.name etc. are stored. I searched the whole directory of the test drive and still didn't find them.
...
Thanks. One thing I'm trying to answer pertains to page 53 of the J2EE Development Without EJB, where it says "Only in the case of RMI/IIOP remoting are remote EJBs preferable". I'd like to...
I've read portions of J2EE Without EJB and J2EE Design and Development, and implemented a live web application using Spring. However, I still have some questions as to whether EJB or Spring is...
Thanks....I'll probably order a copy for some spare time reading, and I'll avoid lending it to anyone :)
I have Java Development with the Spring Framework, and J2EE Development Without EJB. I know J2EE Design and Development is a little older, but is there enough in it to warrant having it on my...
Is a server application that uses various J2EE APIs, but does not run under an app server, not a J2EE server application?
We currently have a server application that uses Corba between...
How common is the use of Spring for a J2EE server application that does not run within web or application server? In that scenario, what would the typical remoting choice be? Is it RMI so there...
I don't know this area really well, but I'd suggest you check the password and make sure there is one provided during login.
Hi,
I need to make LDAP work with Active Directory 2000 (or Novell eDirectory is an option too).
With regards to Active Directory, I see the configuration in this thread that will hopefully...