Thanks I will take care of using the code syntax
Were will I register the delegates as InutStreams. Because my code is
Code:
<property name="steps">
<bean id="step1" parent="simpleStep">
<property name="streams">
<list>
<ref bean="fileItemReader" />
<ref bean="fileItemWriter" />
<ref bean="fileItemWriter1" />
</list>
</property>
<property name="itemReader" ref="fileItemReader" />
<property name="itemProcessor">
<bean class="org.springframework.batch.item.validator.ValidatingItemProcessor">
<constructor-arg ref="fixedValidator" />
</bean>
</property>
<property name="itemWriter" ref="compositeWriter" />
</bean>
</property>
The other code is the one I posted in my last post configuring compositeWriter and configuring the flatFileItemWriter.
What I found is. When i ran the same test with 1.0.0 release it is working properly writing the output to both the file. I can understand there is some configuration that I will have to do with InputStream, but unable to figure this out, as I even tried to check the API and the documentation
Regards
Jainendra