Questions tagged [wm-flow]

webMethods (wM) flow language is simple yet powerful language lets you encapsulate a sequence of services within a single service and manage the flow of data among them

From "service development" document:

webMethods (wM) flow language is simple yet powerful language lets you encapsulate a sequence of services within a single service and manage the flow of data among them.

https://en.wikipedia.org/wiki/WebMethods_Flow

4 questions
3
votes
1 answer

How can I add, in a webMethods flow service, documents from a document list as rows to a string table

In a webMethods flow service I have a document list with (n) documents. Each document have 3 values. Each doc have to be a new row (with 3 columns) in a string table. How I can do this with webMethods flow? Input: Output: DocList …
Mario
  • 45
  • 1
  • 7
3
votes
1 answer

webMethods loop over Document list

I am creating a flow service, and inside it, I inserted another flow, which has document list as output and contains 5 string fields. Problem is that I can't loop over that document list, whatever I put in Input array (getPropertyOutput,…
Urosh
  • 95
  • 1
  • 2
  • 10
0
votes
1 answer

How to get the JDBC Adapter service (SelectSQL) result in a DocumentList in webmethods?

I am trying to query the database and make an xml document out of the resultSet received and write the same to a file. But it is not executing properly. The flow I have designed is: Adapter Service LOOP over /results Copy result[] to a tempDoc…
Mainak Nath
  • 1
  • 1
  • 2
0
votes
1 answer

How to concatenate two document lists in a webMethods flow service?

I have sequence of two steps. In both of them I get some data from sql database and trying to save them in document list. only problem is that when the second step of sequence is executing it override my document list instead of adding new…
MDaniluk
  • 62
  • 2
  • 2
  • 16