FeatureThe FTP component is a Binding Component (BC) which supports FTP command. This component provide a set of 5 operation:
These operations are described in an embedded WSDL.
Exposing a FTP connection as a serviceIn provide mode, the component expose an external service in the JBI environment to send FTP commands on an FTP server. The component can expose directly a generic FTP service without deploying a service unit (Generic mode) or use a service-unit (Service-unit mode). In generic mode, parameter for the FTP connection are set in the XML message request in a connection node (see [Generic Mode configuration]). Usage
Put OperationWhen the put operation is set on the incoming IN message, the component write the XML message to the FTP server.
The IN message looks like : <?xml version="1.0" encoding="UTF-8"?> <ver:put xmlns:ver="http://petals.ow2.org/components/ftp/version-3"> <ver:body>xml body</ver:body> <ver:filename>file name on the FTP server</ver:filename> <!--Optional:--> <ver:connection> ... </ver:connection> </ver:put> The service does not return a message. The service might return an error when an element in the request is missing or if the FTP connection failed. The available exchange pattern is : InOnly.
MPut OperationWhen the mput operation is set on the incoming IN message, the component write the attachments on the FTP server. The IN message looks like : <?xml version="1.0" encoding="UTF-8"?> <ver:mput xmlns:ver="http://petals.ow2.org/components/ftp/version-3"> <ver:attachments> <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> </ver:mput> The service does not return a message.
The service might return an error when an element in the request is missing or if the FTP connection failed. The available exchange pattern is : InOnly.
Get OperationWhen the get operation is set on the incoming IN message, the component retrieve ONE file from the FTP 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 :
<?xml version="1.0" encoding="UTF-8"?> <ver:get xmlns:ver="http://petals.ow2.org/components/ftp/version-3"> <ver:filename>file name to retrieve</ver:filename> </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 FTP connection failed
The available exchange patterns is : InOut.
GetAsAttachment OperationWhen the get operation is set on the incoming IN message, the component retrieve ONE file from the FTP server and return it as an attachment. The name of the file to retrieve is set in the XML IN content of the message. The IN message looks like : <?xml version="1.0" encoding="UTF-8"?> <ver:getAsAttachment xmlns:ver="http://petals.ow2.org/components/ftp/version-3"> <ver:filename>file name to retrieve</ver:filename> </ver:getAsAttachment> The OUT message returned to the consumer contains the retrieved file, as attachment: <?xml version="1.0" encoding="UTF-8"?> <tns:getAsAttachmentResponse xmlns:tns="http://petals.ow2.org/components/ftp/version-3"> <tns:attachment> <tns:filename><xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" href="cid:test1.xml"/></tns:filename> </tns:attachment> </tns:getAsAttachmentResponse> The service might return a Fault when an element in the request is missing or if the FTP connection failed The available exchange pattern is : InOut. MGet OperationWhen the mget operation is set on the incoming IN message, the component retrieves files from the FTP server, according to the file names (or filters) set in the XML request.
Each file is set in the OUT message as an attachment. The IN message looks like:
<?xml version="1.0" encoding="UTF-8"?> <ver:mget xmlns:ver="http://petals.ow2.org/components/ftp/version-3"> <!--1 or more repetitions:--> <ver:filename>*.xml</ver:filename> <ver:filename>myFile.txt</ver:filename> </ver:mget> The OUT message returned to the consumer contains files, as attachments:
<?xml version="1.0" encoding="UTF-8"?> <tns:mgetResponse xmlns:tns="http://petals.ow2.org/components/ftp/version-3"> <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:mgetResponse> The service might return a Fault when an element in the request is missing or if the FTP connection failed
The available exchange pattern is : InOut. Dir OperationWhen the dir operation is set on the incoming IN message, the component returns the file names listed from the FTP <?xml version="1.0" encoding="UTF-8"?><ver:dir xmlns:ver="http://petals.ow2.org/components/ftp/version-3> </ver:dir> The OUT message returned to the consumer is defined as follow : <tns:dirResponse xmlns:tns="http://petals.ow2.org/components/ftp/version-3"> <!--Zero or more repetitions:--> <tns:filename>file1.txt</tns:filename> <tns:filename>linux.jpg</tns:filename> </tns:dirResponse> The service might return a Fault when an element in the request is missing or if the FTP connection failed The available exchange pattern is : InOut. Del OperationWhen the del operation is set on the incoming IN message, the component delete the remote file. <?xml version="1.0" encoding="UTF-8"?><ver:del xmlns:ver="http://petals.ow2.org/components/ftp/version-3> <ver:filename>?</ver:filename> </ver:del> The service does not return a message. ConfigurationGeneric ModeTo allow the component to provide his generic service, the component must have a wsdl with the name : component.wsdl. An example of this file is available in the component. To deactivate the generic service supplies by the component,simply erase the file : component.wsdl. To configure the FTP connection in your XML message request, you have to provide a connection element.
... <ver:connection> <ver:server>?</ver:server> <ver:port>?</ver:port> <ver:user>?</ver:user> <ver:password>?</ver:password> <!--Optional:--> <ver:folder>?</ver:folder> <ver:transfer-type>ascii|binary</ver:transfer-type> <ver:connection-mode>active|passive (optional, default is active)</ver:connection-mode> <ver:delete-processed-files>true|false(optional, default is active)</ver:delete-processed-files> <ver:encoding>?</ver:encoding> </ver:connection> ... Example of a PUT request : <?xml version="1.0" encoding="UTF-8"?> <ftp:put xmlns:ftp="http://petals.ow2.org/components/ftp/version-3"> <ftp:body>xml body</ftp:body> <ftp:filename>file name on the FTP server</ftp:filename> <ftp:connection> <ftp:server>192.168.1.206</ftp:server> <ftp:port>21</ftp:port> <ftp:user>user1</ftp:user> <ftp:password>test</ftp:password> <ftp:folder>/home/user1/integration</ftp:folder> <ftp:transfer-type>binary</ftp:transfer-type> <ftp:connection-mode>active</ftp:connection-mode> <ftp:delete-processed-files>false</ftp:delete-processed-files> <ftp:encoding>UTF-8</ftp:encoding> </ftp:connection> </ftp:put> Service Unit ModeAn example of a Service Unit descriptor to provide an FTP service:
<?xml version="1.0" encoding="UTF-8"?> <jbi:jbi xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jbi="http://java.sun.com/xml/ns/jbi" xmlns:ftp="http://petals.ow2.org/components/ftp/version-3" xmlns:petalsCDK="http://petals.ow2.org/components/extensions/version-5" version="1.0"> <jbi:services binding-component="true"> <jbi:provides interface-name="ftp:Ftp" service-name="ftp:myFTPSUServiceName" endpoint-name="myFTPSUEndpointName"> <!-- CDK specific elements --> <petalsCDK:timeout>30000</petalsCDK:timeout> <petalsCDK:validate-wsdl>true</petalsCDK:validate-wsdl> <petalsCDK:wsdl>FtpService.wsdl</petalsCDK:wsdl> <!-- Component specific elements --> <ftp:server>192.168.1.206</ftp:server> <ftp:port>21</ftp:port> <ftp:user>user1</ftp:user> <ftp:password>test</ftp:password> <ftp:folder>/home/user1/integration</ftp:folder> <ftp:transfer-type>binary</ftp:transfer-type> <ftp:connection-mode>active</ftp:connection-mode> <ftp:delete-processed-files>false</ftp:delete-processed-files> <ftp:encoding>UTF-8</ftp:encoding> <ftp:max-idle-time>10000</ftp:max-idle-time> <ftp:max-connection>-1</ftp:max-connection> </jbi:provides> </jbi:services> </jbi:jbi> Configuration of a Service Unit to provide a service (JBI)
Configuration of a Service Unit to provide a service (CDK)
Configuration of a Service Unit to provide a service (FTP)
InterceptorExample of an interceptor configuration: <?xml version="1.0" encoding="UTF-8"?> <!--...--> <petalsCDK:su-interceptors> <petalsCDK:send> <petalsCDK:interceptor name="myInterceptorName"> <petalsCDK:param name="myParamName">myParamValue</petalsCDK:param> <petalsCDK:param name="myParamName2">myParamValue2</petalsCDK:param> </petalsCDK:interceptor> </petalsCDK:send> <petalsCDK:accept> <petalsCDK:interceptor name="myInterceptorName"> <petalsCDK:param name="myParamName">myParamValue</petalsCDK:param> </petalsCDK:interceptor> </petalsCDK:accept> <petalsCDK:send-response> <petalsCDK:Interceptor name="myInterceptorName"> <petalsCDK:param name="myParamName">myParamValue</petalsCDK:param> </petalsCDK:Interceptor> </petalsCDK:send-response> <petalsCDK:accept-response> <petalsCDK:Interceptor name="myInterceptorName"> <petalsCDK:param name="myParamName">myParamValue</petalsCDK:param> </petalsCDK:Interceptor> </petalsCDK:accept-response> </petalsCDK:su-interceptors> <!--...--> Interceptors configuration for SU (CDK)
Service Unit contentThe Service Unit has to contain the following elements, packaged in an archive:
service-unit.zip
+ META-INF
- jbi.xml (as defined above)
- service.wsdl (optional)
Component ConfigurationConfiguration of the component (CDK)
Definition of CDK parameter scope :
InterceptorInterceptors can be defined to inject some post or pre processing in the component during service processing. Using interceptor is very sensitive and must be manipulate only by power users. An non properly coded interceptor engaged in a component can lead to uncontrolled behaviors, out of the standard process. Example of an interceptor configuration: <?xml version="1.0" encoding="UTF-8"?> <!--...--> <petalsCDK:component-interceptors> <petalsCDK:interceptor active="true" class="org.ow2.petals.myInterceptor" name="myInterceptorName"> <petalsCDK:param name="myParamName">myParamValue</petalsCDK:param> <petalsCDK:param name="myParamName2">myParamValue2</petalsCDK:param> </petalsCDK:interceptor> </petalsCDK:component-interceptors> <!--...--> Interceptors configuration for Component (CDK)
|
Table of contents Contributors
No contributors found for: authors on selected page(s)
|