Search:

Type: Posts; User: MmarcoM; Keyword(s):

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    0
    Views
    257

    Spring Security 3 + Kerberos + SPN

    hi all
    i am trying to configure my Spring 3 app for kerberos authentication, but i cannot get my head around Service Principal Names.
    At the moment i have a working webapp that authenticates using...
  2. Replies
    0
    Views
    181

    SpringSecurity + Kerberos + XP

    hi all
    i have followed instructions to configure Kerberos authentication for my app here
    http://blog.springsource.com/2009/09/28/spring-security-kerberos/

    I have setup a linux host for...
  3. Replies
    4
    Views
    584

    Hell ok it was incorrect configuration this ...

    Hell
    ok it was incorrect configuration
    this

    <security:custom-filter position="BASIC_AUTH_FILTER" ref="ntlmFilter" />

    should have been

    <security:custom-filter...
  4. Replies
    4
    Views
    584

    Hello ok i am now using spring 3.0.7 release...

    Hello
    ok i am now using spring 3.0.7 release plus spring-security-3.0.7.
    have this http section configured



    <security:http create-session="never"...
  5. Replies
    4
    Views
    584

    thanks a lot Martin!

    thanks a lot Martin!
  6. Replies
    4
    Views
    584

    Spring Security 3 and NTLM

    Hello all
    i am moving my app to Spring Security 3 and, as our current code uses an ntlm Filter, i have checked this website

    http://aloiscochard.blogspot.com/2010/03/spring-security-ntlm-3.html...
  7. Spring Batch / parallel execution and multiple threads per task

    Hello all
    i have the following job which is comprised of 5 tasks (all independent between them).


    <batch:split id="generateChanges" task-executor="myConcurrentTaskExecutor">
    <batch:flow>
    ...
  8. hello michael, good point! i didnt' know about...

    hello michael,
    good point! i didnt' know about the databaseType

    i m using MSSQL

    thanks, i'll give it ago

    rgds
    marco
  9. Hello ok this is my config

    Hello
    ok this is my config



    <property name="queryProvider">
    <bean class="org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean">
    <property...
  10. Hello michael thanks for the reply i have...

    Hello michael
    thanks for the reply

    i have problem using distinct

    i just got an exception when i used a distinct clause

    my sql was literally
  11. JdbcPagingItemReader not supporting distinct clause in select property

    is the PagingItemREader supposed to support the distinct clause?

    if not, why?

    are there any workaround (other than using CursorItemReader) ?

    w/kindest regards
    marco
  12. Replies
    17
    Views
    5,020

    hi, sorry for hijacking this thread i am...

    hi, sorry for hijacking this thread

    i am having same problem

    - reading 40K rows table
    - do some processign with each item (call a service which will retrieve extra data)
    - output the data to...
  13. Replies
    0
    Views
    631

    Multithreading and CursorItemReader

    Hi all
    i need to use mthreadign wtih my batch as it runs too slow (~ least 50 mins)..
    reason of that is that it's selecting data from a 40K row table, and it is then calling a service (via a...
  14. Replies
    0
    Views
    262

    ItemProcdessor / parallel execution

    HI ALL
    i would like to implement a parallelExecution for my ItemProcessor.
    My batch consists of
    - jdbcItemREader which will read two columns from a db table
    - an ItemProcessor which will use...
  15. Replies
    1
    Views
    247

    Hi ok i thought about it, and i believe with...

    Hi
    ok i thought about it, and i believe with a jdbcItemREader (which select data from db), an ItemProcessor (which queries my service) and an ItemWriter should do it

    sorry for bothering
    ...
  16. Replies
    1
    Views
    247

    Implemeting a CustomItemReader / help

    hello all
    i have this particular usecase that i need to implement using spring batch.

    I Have to export a set of data to a file.

    THe data that i need to export will come from a database,...
  17. DelimitedLineTokenizer not escaping delimited characters when writing to a file?

    Hello all
    i tried the following test, hoping that the delimiter would be escaped if it was present in one of the fields to be sent to output, but it failed instead


    @Test
    public void...
  18. escaping tabs and new lines when writing to a flat file

    hi all
    i have to write a job where i read data from the database and output it to a tab-delimted file.
    I have two problems which i cannot find solution for:

    1 - how can i escape the \t...
  19. Replies
    4
    Views
    578

    Hello i forgot to mention one thing. I am...

    Hello
    i forgot to mention one thing.
    I am actually reading data from a database and writing it to a flat file.

    I want to write one database record per line, but i need to be able to handle...
  20. Replies
    4
    Views
    578

    DelimitedLineTokenizer question

    hi all
    i was reading javadocs for DelimitedLInetokenizer, and it says that This implementation also supports the use of an escape character to escape delimiters and line endings..

    So, if i...
  21. Replies
    2
    Views
    1,054

    Dynamic SQL in JdbcCursorItemReader

    Hello all
    i was wondering if i can build, for my jdbcCursorItemReader, a sql like this .
    Assuming i defined in my jobParameters a parameter name



    <bean id="itemReader" scope="step"
    ...
  22. Replies
    0
    Views
    599

    FlatFileHeaderCallback

    HI all
    i have to write a job which reads data from a db and dump it to a file.

    each field in the output will be separated by a tab character, and i need to write header for all fields i will be...
  23. programmatically shutting down retryTemplate

    HI all
    how can i programmatically shut down a REtryTemplate so that it does not attempt to retry any operations?

    I am guessing that behind the scene REtryTemplate uses a ScheduledTask...
  24. Replies
    1
    Views
    917

    RetryTemplate and JUnit test

    Hi all
    i have a tasklet that, as part of its execution, invokes a RetryTemplate.
    I am trying to write a Mock test for that, but i cannot get around mocking the retry logic, simply because...
  25. Thread: RetryTemplate

    by MmarcoM
    Replies
    0
    Views
    463

    RetryTemplate

    HI all
    i have a Springbatch app in when i have a WaitForCompletion tasklet,w hich in its executes method does something like this


    while(myMonitor.isNotReady()) {
    assert(TimeOutNotExpired) ...
Results 1 to 25 of 311
Page 1 of 13 1 2 3 4