The below code gave me an error message from swift telling me my output file didn't exist.  As I understand my code, the file shouldn't need to exist.  Can someone explain what happened?<br><br>code:<br>type messagefile;<br>
<br>app (messagefile o) max(messagefile i) {<br>     java "MaxTemperature" @filename(i) stdout=@filename(o);<br>}<br>messagefile input <"1901">;<br>messagefile out <"out.txt">;<br>
out = max(input);<br><br>Error<br>RunID: 20130311-1410-5i605r58<br>Progress:  time: Mon, 11 Mar 2013 14:10:39 -0400<br>Progress:  time: Mon, 11 Mar 2013 14:10:42 -0400  Stage in:1<br>Execution failed:<br>    File not found: /var/tmp/example2.2-20130311-1410-5i605r58/shared/out.txt<br>
<br><br>I'm writing this code as an example so although I'm very interested in how to make this work, I'm more interest in how to figure out the problem based on the error message.  Thank you for your time.<br>