I'm trying to create a Mashup using EMML. How can I define inputs to my Mashup such that it can take multiple inputs something similar to MERGE operations in JackBe actions. In the JackBe Wires I should be able to feed mulitple inputs to my Mashup.

Posted 10/11/2008 - 08:28 by guruprasad.ks

Include inputs in the EMML script:

<code>

<output name="result" type="document" />

<input name="feed1" type="document"  />

<input name="feed2" type="document"  />

<merge inputvariables="feed1, feed2" outputvariable="result" />

</code>

2
Your rating: None Average: 2 (1 vote)