Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
8answers
409 views

Handling errors and feedback when performing bulk operations in a multi-tiered architecture

Let's say you have a business logic method that can perform some operation across a number of objects. Maybe you want to call a lottery number picking web service, once for each person selected from a ...
2
votes
1answer
57 views

Batch: how do you bulk rename files (getting close)?

I've seen people do this in Perl, but I'm wondering if there's a way to do it via batch? It's built into Windows, so I think it would be more useful to know how to do this with a batch script. It ...
2
votes
2answers
191 views

Business logic on multiple objects - where to put the loop?

...and how best to handle success/failure feedback to a view layer. Assuming that the business objects will be iterated over in the business logic method if the loop is put there (i.e. not a bulk ...