cancel
Showing results for 
Search instead for 
Did you mean: 

temp files prevent communication

Former Member
0 Kudos

hi,

i have a weird situation. I produce temp files in my file structure, which prevent furder communction. Looks like the syncronisation thread waits and waits and waits....

After deleting my temp files i can get data from R3.

Does anyone know a solution in this. Do i have to free my inbound data in the process() of my inboundprocessing?

Thx for any help

Cheers

Christian

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

ok i got it. Didn't anyone else come across this problem?

So the reason for this temp files was the way i designed my

application. I designed it with a transaction layer. The TransactionManager and TransactionHandler class handled all out and in communication. This is wrong. Design one seperate InboundListener for each MethodName, you need to call. And this InboundListener is not allowed to be part of the out-process. for sending data.

Christian