There is a Retry handling that I think it work for you. Do a search for Retry in the spring batch documentation.
Type: Posts; User: rhodebump; Keyword(s):
There is a Retry handling that I think it work for you. Do a search for Retry in the spring batch documentation.
If a service used to process the messages is down, then how would the messages be moved off the queue in the first place?
I would design your system so that the process that is processing the...
sorry but I don't understand the nature of your problem.
It sounds like you have 2 web applications, the quartz web application and the spring batch admin application.
Each of these web...
I am considering how best to design a process that will need to process millions of records into several several thousands of invoices.
This cannot be accomplished in a single thread, and I want it...
Awesome, exactly what I was looking for.
Competing Consumers Pattern.
Hi,
It's been a while since I've played with messaging in Java, so forgive me;)
I want multiple subscribers (remote instances) to process messages. Each message should only be processed one...
However, say there is a 10gb xml file (yes, they exist) and each "order" element needs to be inserted into a database.
I would be nice to be able to implement parallel work for each "order" fragment...
Why do you want to remove the xmlns from your xml document?
If you are trying to process your xml data using xsl, you just need to get your stylesheet right.
Phillip
I am new myself, but since you are hitting a database, you have some sort of understanding of your data, so why are you using "Chucks" over partitioning your data?
Given your problem, I would...
I currently am using a spring/hibernate application to store data into an Oracle database. I need to convert the database to SQL Server (a 1x migration)
Generating the DDL for the db is a...
Couldn't you just declare your ObjectDefinitionSource as a bean in the spring config file, and implement a "reloadRolesFromDb" method in your custom ObjectDefinitionSource, and inject this object...
Yes, that's authsum, the project that I am working on.
Pretty functional, as I said, using it with 22k users and a whole bunch of different applications (healthcare, tourism).
The last things I...
Ray,
Is this something that you plan to do , or would it be okay if I did this? My thought is that I would rather have only one person do this acegi openid work.
Thanks
Ray,
This is the last piece of what I need to implement for my product, so I would be happy to contribute this module to acegi.
The project is called authsum, and is based upon acegi. I have...
I am interested if there were a particular reason why it is using janrain vs. openid4java?
Thanks!
Hi everyone,
I hear that there is openid support in the sandbox.
Are there compiled binaries for the sandbox? Is acegi using CVS or Subversion, since I see references to both repositories. ...
I will try it out, hopefully it works on http posts.
Besides catching it in a filter via some type of match, there is no way of throwing an exception or programmatically requesting a login...
Hi everyone,
I would normally use patterns defined in a objectDefinitionSource to protect url's from unauthorized access. However, I have a case in which I can't do this since the url is is open...
I am thinking of migrating my xfire/springframework web service to hessian. I am interested in knowing if anyone has used springframework/hessian services from dotnet?
No problems with xfire, it's...
I am using BeanNameAutoProxyCreator for transactional services for my beans.
My problem is that some of my calls to my beans to save to the database silently fail. I think these beans that they...
I am trying to get my new instance of a UserDetails object read from the database. I removed the user from the Cache, but acegi is not reinitializing the UserDetails from my UserDetails service. I...
The problem with that is that I only want to do this redirecting when they login (j_acegi_security_check)
If I do this redirect everytime they go through the filter, they can not accomplish the...
I need control over where the user is directed to upon successful authentication. Perhaps, the user needs to fill out a form, or do further registration, before going to their intended destination. ...
Hi,
First off, i am just very appreciate of folks helping me run with acegi. It's been wonderful not to be stuck.
I have written a filter that does some additional login processing that I added...
Can someone point out how I can map an accountlocked exception to a page? For example, if an account is locked, I would like the user to be directed to an unlock page.
Thanks