Hello all,
Okay, I'm pretty comfortable with syncronous remoting using several methods. However, I'm not as familiar with asynchronous remoting.
Here's a simply case study: I have 10...
Type: Posts; User: jpwinans; Keyword(s):
Hello all,
Okay, I'm pretty comfortable with syncronous remoting using several methods. However, I'm not as familiar with asynchronous remoting.
Here's a simply case study: I have 10...
Hey,
Well, I even tried changing the WSDL to a static document. Even then, just after the server app deploys, I cannot access the url from a browser. This is the time that the client app is...
Hello,
Well, that was something I considered. I've actually got the server deploying before the client. And although I can bring up the WSDL url from a browser once everything is up, I can't...
Hello,
I have one application setup to serve an Axis web service, and I have one application that I'm trying to set up as a client to access that service. Both are Spring. I've done my best...
Hey,
The problem was in using the org.apache.commons.dbcp.BasicDataSource for my connection pooling. If a connection would be broken by a user hitting refresh in the middle of a transaction,...
Hello,
Yeah, I'm using the jTDS driver for SQL Server. I never had any problems, and then all of the sudden I start getting connection issues. I'm looking into with them, but in the mean...
Hey all,
I'm having a problem pop up, and I don't remember it popping up before. When I run a query, SOMETIMES it gives me the following exception...
16:33:29,046 WARN ...
See that's what it looks like to me as well. However, I've re-created the cert and keystore several times, per the contacts example, using the IP. When I view the cert that is received from the...
Yeah, it says
DEBUG [net.sf.acegisecurity.ui.AbstractProcessingFilter] Authentication request failed: net.sf.acegisecurity.AuthenticationServiceException: HTTPS hostname wrong: should be <[my ip...
Hello,
I have CAS working perfectly on a single server, as long as the casValidate property of the casProxyTicketValidator uses "localhost":
<bean id="casProxyTicketValidator"...
Yeah, I'm basing it on the contacts app. I've got it working like gold on a single server. I guess I just need to figure out which IP's go where.
Thanks,
James
Hey All,
I have and application on my development server that I'd like to authenticate against the CAS I have on my production server.
Can anyone tell me how I might configure my...
Hey,
Thanks for the info. I got the tag handler to work, however I had to figure out a way to parse the "${}" expression language. Fortuantely, Spring had already done the work with their...
This looks very promissing. However, do you have any ideas how I pass the values of my objects into the tag handler class?
Thanks,
James
Hello All,
I am passing a collection of objects down to my view that have a TimeStamp of their creation. In my view, I'd rather show that value as the objects age - the difference between Now...
Hey All,
Is there a way to get the FilterSecurityInterceptor that gets plugged into SecurityEnforcementFilter to accept ACL voting?
I've tried plugging an ACL voter in as a...
Well, if anyone is interested, here is my applicationContext-acegi-security.xml for version 0.8.0 Contacts using CAS...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC...
Hey all,
I've gotten the CAS version of contacts to work in the pervious versions, and I'm currently using it in all of my apps.
However, with the changes in 0.8.0 I'm not clear on...
Hey Dreed,
Yes, this certainly helps. Thank you very much! I'll let you know if I have any further questions.
Take care,
James
Oh yeah, I'm also up for any other suggestions on how to do this besides that above tag.
Thanks,
James
Hey All,
I've got a ITEM_OWNED_BY_CURRENT_USER role voter, and I'd like to display a delete submit button in the item's details page if the current user owns the item. How do I get Acegi to...
Okay,
After talking to myself here for a while, I figured out it was all a stupid error on my part. I didn't have my controller mapped from a secure context. :? I guess I got all caught up...
Okay, I'm getting closer....
When I've first opened a browser and I invoke my controller, the AutoIntegrationFilter recognizes the Authentication object and calls ContextHolder.setContext()....
Okay, here's what I've got so far...
When I first open a browser window, log in, and make a call to my controller, the ContextHolder.setContext() gets called. However, when I log out with the...
Well shoot,
Okay, I'm confused on this ThreadLocal stuff in the context of CAS and Acegi. I can retrieve the Authentication object if I log in from a fresh Internet Explorer window. However,...