Petals-BC-SFTP 1.2.x

compared with
Key
This line was removed.
This word was removed. This word was added.
This line was added.

Changes (68)

View Page History
When using the SFTP service, you can optionnaly define the SFTP connection information in your XML request. If you don't, the service unit parameters are used.


To configure the SFTP connection in your XML message request, you have to provide a {{connection}} element.
\\ {code:lang=xml}
...
<!--Optional:-->
<!--
Note : you must use one of the above authentication modes when
using dynamic configuration (ie using SU configuration)
-->
<!-- When using user / password authentication -->
         <ver:connection>
            <ver:server>?</ver:server>
            <ver:port>?</ver:port>
            <ver:user>?</ver:user>
<ver:server>server</ver:server>
<ver:port>port</ver:port>
<ver:user>user</ver:user>
<ver:password>password</ver:password>
<ver:folder>folder</ver:folder>
</ver:connection>
<!-- When using private key authentication -->
<ver:connection>
<ver:server>server</ver:server>
<ver:port>port</ver:port>
<ver:user>user</ver:user>
<ver:password>pathtoprivatekey</ver:password>
<ver:folder>folder</ver:folder>
</ver:connection>

            <!--Optional:-->
            <ver:password>?</ver:password>
            <ver:folder>?</ver:folder>
            <ver:passphrase>?</ver:passphrase>
            <ver:private-key>?</ver:private-key>
         </ver:connection>
...
{code}
{info}Operation need to be call explicitely in the form : \{service-namespace}operation

When the put operation is set on the incoming IN message, the component write the XML message to the SFTP server.
\\

The IN message looks like :

{code:lang=xml}<?xml version="1.0" encoding="UTF-8"?>
<ver:put xmlns:ver="http://petals.ow2.org/components/sftp/version-1">
<ver:dir xmlns:ver="http://petals.ow2.org/componentss/sftp/version-1.0">
<!--Optional:-->
<ver:connection>
<ver:body>xml body</ver:body> ...
<ver:filename>file name on the server</ver:filename>
<!--Optional:-->
<ver:connection>
...
</ver:connection>
</ver:connection>
</ver:put> </ver:dir>

{code}
The service does not return a message.
The OUT message returned by the server is returned as follows:
{code}
<tns:dirResponse xmlns:tns="http://petals.ow2.org/components/sftp/version-1.0">
<tns:filename>file1</tns:filename>
<tns:filename>file2</tns:filename>
</tns:dirResponse>

The service might return an error when an element in the request is missing or if the SFTP connection failed.
{code}

The available exchange pattern is : *InOnly*.
\\
The service might return a Fault when an element in the request is missing or if the SFTP connection failed.
The available exchange patterns are: {{InOut}}.

h3. MPut Operation
When the mput operation is set on the incoming IN message, the component write the attachments on the SFTP server.

The IN message looks like :

{code:lang=xml}<?xml version="1.0" encoding="UTF-8"?>
<ver:mput xmlns:ver="http://petals.ow2.org/components/sftp/version-1">
<ver:put xmlns:ver="http://petals.ow2.org/components/sftp/version-1.0">
<!-- content to be put on the SFTP server -->
<ver:body>xml body</ver:body>
<!-- Name of the file to be created on the SFTP server -->
<ver:filename>filename</ver:filename>
<!--Optional:-->
<ver:connection>
...
</ver:connection>
<ver:attachments> </ver:put>
<ver:filename><xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" href="cid:test1.xml"/></ver:filename>
<ver:filename><xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" href="cid:test2.xml"/></ver:filename>
</ver:attachments>
<!--Optional:-->
<ver:connection>
...
</ver:connection>
</ver:mput>
{code}
The service does not return a message.
\\
The service might return an error when an element in the request is missing or if the SFTP connection failed
The available exchange patterns are: {{InOnly}}.

The service might return an error when an element in the request is missing or if the SFTP connection failed.

The available exchange pattern is : *InOnly*.
\\


h3. Get Operation

When the get operation is set on the incoming IN message, the component retrieve ONE file from the SFTP server and return it as an XML message content.
\\

The name of the file to retrieve is set in the XML {{IN}} content of the message.
\\

The IN message looks like :
\\
{code:lang=xml}<?xml version="1.0" encoding="UTF-8"?>
<ver:get xmlns:ver="http://petals.ow2.org/components/sftp/version-1.0">
<ver:filename>file name to retrieve</ver:filename>
<!--Optional:-->
<ver:connection>
...
</ver:connection>
</ver:get> <!--Optional:-->
<ver:connection>
...
</ver:connection>
{code} </ver:get>
The OUT message returned to the consumer is the content of the XML file
\\

The service might return a Fault when an element in the request is missing or if the SFTP connection failed
\\

{code}
The OUT message returned to the consumer is the content of the XML file.
The service might return a Fault when an element in the request is missing or if the SFTP connection failed.
The available exchange patterns is : *InOut*. are: {{InOut}}.

{info}Only xml file could be processed otherwise an error will be raised.{info}

h3. MGet Operation

When the mget operation is set on the incoming IN message, the component retrieves files from the SFTP server, according to the file names (or filters) set in the XML request.
\\
There is no recursivity, sub folders are ignored.

Each file is set in the OUT message as an attachment. The IN message looks like :
\\
{code:lang=xml}<?xml version="1.0" encoding="UTF-8"?>
<ver:mget xmlns:ver="http://petals.ow2.org/components/sftp/version-1.0">
<!--1 or more repetitions:-->
<ver:filename>*.xml</ver:filename>
<ver:filename>myFile.txt</ver:filename>
<!--Optional:-->
<ver:connection>
<ver:filename>*.xml</ver:filename>
<ver:filename>myFile.txt</ver:filename>
<!--Optional:-->
<ver:connection>
...
</ver:connection>
</ver:connection>
</ver:mget>

{code}
The OUT message returned to the consumer contains files, as attachments, and an XML message report :
\\
{code:lang=xml}<?xml version="1.0" encoding="UTF-8"?>
<tns:mgetResponse xmlns:tns="http://petals.ow2.org/components/sftp/version-1.0">
<tns:attachments>
<tns:filename><xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" href="cid:test1.xml"/></tns:filename>
<tns:filename><xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" href="cid:test2.xml"/></tns:filename>
</tns:attachments>
<tns:filename>source.xml</tns:filename>
<tns:filename>source2.xml</tns:filename>
<tns:filename>myFile.txt</tns:filename>
</tns:mgetResponse>

{code}
The service might return a Fault when an element in the request is missing or if the SFTP connection failed.
\\

The available exchange pattern is : *InOut*.

h3. Dir Operation