I Am reading files with file adapter.
I have two adapters in my composite.
ReadAdapter (FileAdapter)
WriteAdapter (FileAdapter)
ReadAdapter Reads a file content and pass it to WriteAdapter the WriteAdapter writes it to an other file.
The content of a file is CSV .
Here is the problem
As long as i configure ReadAdapter to read .txt files all goes well (It reads files and pass to WriteAdapter and then it got written to another file)
but when i configure my adapters to read .csv files with same content the following happens.
1:-ReadAdapter Reads the .csv file and deletes it (as configuration)
2:-WriteAdapter does nothing (no output file created)
Please help
P.S i am using transform inside bpel to assign values
-Usman