简体   繁体   English

在汇总介体中出现错误?

[英]Getting error in Aggregate Mediator?

I am using iterate mediater and aggregate mediator. 我正在使用迭代介体和聚合介体。 My request is: 我的要求是:

<p:GetPersonDataOperation xmlns:p="http://tempuri.org">
  <!--1 or more occurrences-->
  <xs:ID xmlns:xs="http://tempuri.org">1</xs:ID>
 </p:GetPersonDataOperation>

and response is : 响应是:

<GetPersonDataCollection xmlns="http://tempuri.org">
 <GetPersonData>
  <AppInstanceID>1</AppInstanceID>
  <RecordID>349</RecordID>
  <ID>1</ID>
  <Name>name</Name>
  <LastName>lastname</LastName>
  <Descr>description</Descr>
  <Address>Park Street</Address>
 </GetPersonData>
</GetPersonDataCollection>

If i don't use Aggregate mediator then i get the above response, But if i use Aggregate mediator i get request timeOut Exception 如果我不使用Aggregate中介,那么我会收到上述响应;但是,如果我使用Aggregate中介,我会得到请求超时异常

My in Sequence is : 我的顺序是:

<sequence xmlns="http://ws.apache.org/ns/synapse" name="GetPersonDataOperationSeq">
   <iterate xmlns:xs="http://tempuri.org" xmlns:ns="http://org.apache.synapse/xsd" xmlns:p="http://tempuri.org" preservePayload="true" attachPath="//p:GetPersonData" expression="//p:GetPersonData/xs:ID" id="Iterator1">
      <target>
         <sequence>
            <property name="ID" expression="//xs:ID" scope="default" type="STRING"/>
            <payloadFactory>
               <format>
                  <p:GetPersonData>
                     <xs:ID>$1</xs:ID>
                  </p:GetPersonData>
               </format>
               <args>
                  <arg expression="get-property('ID')"/>
               </args>
            </payloadFactory>
            <send receive="AggregatorSeq">
               <endpoint key="GetPersonDataEP"/>
            </send>
         </sequence>
      </target>
   </iterate>
</sequence>

And From The above in sequence i am redirecting to another Sequence called AggregatorSeq and my AggregatorSeq is: 从上面的序列中,我将重定向到另一个名为AggregatorSeq的序列,而我的AggregatorSeq是:

<sequence xmlns="http://ws.apache.org/ns/synapse" name="AggregatorSeq">
   <log level="custom">
      <property name="CamHereProp" value="*******************Yes??????????????**********************************************"/>
   </log>
   <aggregate>
      <completeCondition>
         <messageCount min="-1" max="-1"/>
      </completeCondition>
      <onComplete xmlns:ns="http://org.apache.synapse/xsd" xmlns:p="http://tempuri.org" expression="//p:GetPersonDataCollection">
         <send/>
      </onComplete>
   </aggregate>
</sequence>

What am i doing wrong.Looking forward to your answers.Thanks in advance 我在做什么错。期待您的答复。谢谢

Try adding the ID of the iterator to your aggregator. 尝试将迭代器的ID添加到聚合器中。 In your case it should be like, 就您而言,应该是

<aggregate id="Iterator1">

Also, if each of your response body starts with <GetPersonData> then you need to add that to the expression in onComplete. 另外,如果每个响应主体都以<GetPersonData>开头,则需要将其添加到onComplete中的表达式中。

<onComplete xmlns:ns="http://org.apache.synapse/xsd" xmlns:p="http://tempuri.org" expression="//p:GetPersonData">

Can you specify the issue with the code you have given. 您能用给出的代码指定问题吗? You can use <log level="full"/> to debug till what level is your configuration gets executed. 您可以使用<log level="full"/>进行调试,直到执行配置的级别。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM