cancel
Showing results for 
Search instead for 
Did you mean: 

Queue Management per FTP -> XI -> Soap Scenario

Former Member
0 Kudos

Hi Guru.

My Scenario is the following:

XI reads a lot of files (more or less 15000) from some FTP servers, then Xi sends them to a WebService.

The problem is: the scenario is slow because XI sends the SOAP message one at a time. Can I put the message in more "outbound" queues?

Thanks

Manuel Chiarelli

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Why not? Make sure you select the QoS as EO (Exactly Once) in Sender File adapter.

Regards,

Jai Shankar

Former Member
0 Kudos

> Why not? Make sure you select the QoS as EO (Exactly

> Once) in Sender File adapter.

>

> Regards,

> Jai Shankar

Hi Jai.

So, now the FTP adapter (sender) is with QoS as EO.

But Exactly Once means that the messages are sent one after one?

How does the Qos as Best Effort woek?

Former Member
0 Kudos

>>But Exactly Once means that the messages are sent one after one?

No. Exactly Once delivers all the source msg to the target but the order of which is not maintained.

BE is for synchronous message processing.

Regards,

Jai Shankar

vikas_agarwal
Contributor
0 Kudos

Hi,

Best Effort is used for Sysnchronous calls, here you are using file adapters so, you have 2 options for QoS

1) EO ( Exactly Once) : This Qos is used when you dont want to the messages in sequence, it uses different Queues for outbound.

2) EOIO( exactly Once In Order) : It uses single queue, to maintain the messages in order.

Hope yr doubt is clear

Regards,

Vikas

Former Member
0 Kudos

Thanks for the information:

Can the parameter EO_OUTBOUND_PARALLEL help me?

Answers (0)