Description
I have a grid machine with Gram server but no GridFTP server. I tried to customize gfac-config.xml for a application to have a custom chain like below. Logic is calling GridFTP input/output handlers also after calling the SCP handlers. Work around this problem is to create a copy of GramProvider and then add that to application tag.
<Application name="Echo_carter" class="org.apache.airavata.gfac.provider.impl.GramProvider" host="org.apache.airavata.schemas.gfac.impl.GlobusHostTypeImpl">
<InHandlers>
<Handler class="org.apache.airavata.gfac.handler.SCPDirectorySetupHandler"/>
<Handler class="org.apache.airavata.gfac.handler.SCPInputHandler"/>
</InHandlers>
<OutHandlers>
<Handler class="org.apache.airavata.gfac.handler.SCPOutputHandler"/>
</OutHandlers>
</Application>