After receiving the response and having the message created, I then
use a new Message Construct and Transform shape to transform the
message recieved from the WS into another message type. Here is where
the problems begin...
If the message returned from the web service is large (say 1000
records), then the Transform shape works just fine. Output is similar
to:
<RootNode>
<EntityName>
<Row>...</Row>
<Row>...</Row>
{1000 records}
</EntityName>
<RootNode>
If the message returned from the web service is small (say 100
records), then the Transform shape does not work correctly. Output is:
<RootNode>
<EntityName>
</EntityName>
<RootNode>
No rows are created in the Transform...
Has anyone encountered this before...I know I haven't?