Are all the servers that you need your app on part of your network? If so you should really be pointing to an existing email server I would think rather than installing a mail server on each...
Type: Posts; User: farrellr; Keyword(s):
Are all the servers that you need your app on part of your network? If so you should really be pointing to an existing email server I would think rather than installing a mail server on each...
Here are the appcontext and security policy.
If you need something else let me know.
Wouldn't you add the necessary roles that user A has to user B?
It seems like the solution here is in granting the access correctly (although temporarily) rather than in any code, wouldn't you agree?
I did manage to get this working with ldap, just not with an encrypted password. I'm using active directory, to use an encrypted password in the security token I think would require lessening the...
Can you post your web and app context xml here (as attachments perhaps?)
Attached is the applicationContext.xml from the sample.
Notice the bean in it:
<bean id="authenticationProcessingFilter" class="org.acegisecurity.ui.webapp.AuthenticationProcessingFilter">
...
I was wondernig the same thing.
I at least tried to vote - terrible for these threads, but they still show up as thumbs up.
http://forum.springframework.org/showthread.php?t=26169
What is your app context, particularly for bean etefitnessProtocol?
Error creating bean with name 'etefitnessProtocol' defined in class path resource [applica
tionContext-testmar.xml]:
Can you...
I think it is good to have your rowMapper be a class of its own (see attached for TopicRowMapper sample)
and then get back a list in your DAO, with something like this:
public List...
A few things come to mind
1st, I'd recommend you get a client working talking to your web service (either java, or .net) without any additional security.
Once you have that working I'd try adding...
What are you thinking for your web service authentication? Are you going to validate against a database? Against Ldap? Is it sufficient for now to prove validation works by using a memory dao?...
I'd also recommend looking at beandoc - it can help show where you have misconfigured beans etc.
Yes, there is a posting there - and a reply there:
http://forum.springframework.org/showthread.php?t=30661
I'd recommend getting it working with the memory configuration first. After that it is easy to switch.
Both use an authenticationManager which should be based on daoAuthenticationProvider, and...
Arjen,
The reason I was trying to work with the HttpSessionEventPublisher was so that I could try the concurrent session handling feature of Acegi from within my spring-ws enabled app.
Since the...
http://www.interface21.com/contact/
I know in my case it is because I don't know the dn of the user until I search on the field I want to match and find it.
So I authenticate first with the manager, and then once I have the dn that is...
having seen your post I thought I'd try and see if It worked for me.
I get the same error - maybe sourceforge has a problem at the moment?
Arejen,
Thanks for the reply. That does make sense, and I did suspect the issue with the filter was specific to spring-ws. It isn't a matter of just not working however, it does intefer with the...
As a follow up here, I've tried to add this filter to web.xml for the echo webservice sample, and get a similar problem.
I had echo running fine, all I did was add this listener to the config as...
Here's my web.xml - not much to it.
I'm not sure what I should look at regarding the session. I know that the web service will serve the app withou the listener, and after I add the listener I get...
I'm trying to use the acegi HttpSessionEventPublisher with spring-ws.
All I do is add it to my web.xml as a filter.
In fact in doing that, I have a local copy of the code for...
I'm trying to use the HttpSessionEventPublisher with spring-ws.
All I do is add it to my web.xml as a filter.
In fact in doing that, I have a local copy of the code for HttpSessionEventPublisher...
I had added the listener
[code]
<listener>
<listener-class>
org.acegisecurity.ui.session.HttpSessionEventPublisher>
</listener-class>
</listener>
[\code]
to my web.xml expecting to use it...