Had to add <sec:anonymous/> to the <http> section...
Type: Posts; User: jimbethancourt; Keyword(s):
Had to add <sec:anonymous/> to the <http> section...
Ok -- it looks like the exception is supposed to be happening. I remember seeing an exception being generated when I used Spring Security 3, but didn't take a close look at it. The code is falling...
Hi all,
I'm backporting Mike Weisner's great Kerberos / SPNEGO extension to work with Spring Security 2.0.4 to allow SPNEGO authentication for Atlassian Crowd products. I'd use NTLM, but I have the...
Hi Denis,
Thanks! That did the trick. Now I just need to figure out how to have the component scanner scan the classes from within the ANT task. :-) Two steps forward, one step back...
I have an ANT task that I've written that loads a bean config XML file, starts an application context with it, and fetches only the beans needed for the jBPM process that is currently being deployed....
Hi all,
Is there a sample jBPM 3.1 + jBPM spring module project available? I checked in https://springmodules.dev.java.net/source/browse/springmodules/samples/
and didn't see anything there. ...
It turns out that I was able to use a ClassPathXmlApplicationContext like this:
ApplicationContext ctx = new ClassPathXmlApplicationContext("/ch5/appContext/aware.xml");
to get access to the...
Thanks! I'll be sure to try that.
Jim
Hi all,
I'd like to load an ApplicationContext with an InputResourceStream with Maven, but I'm really not finding any constructors that accomodate an InputResourceStream the way an XMLBeanFactory...
Well, I figured out the answer to my question: In the bean itself, I needed to use a call to getClass().getResourceAsStream(filepath) instead of using new FileInputStream(filepath), but everything...
Hi all,
I'm working through Rob Harrop and Jan Machacek's book, and I'm also trying to "Mavenize" the project with Maven 2 for fun while I'm at it. I'm trying to specify a file path relative to my...