...
- Fragments
- ProtocolFragments
- FTPFragment name="ftp_demo_sos-berlin_cs"
- ....
- CredentialStoreFragmentRef ref ="ftp_demo"
- FTPFragment name="ftp_demo_sos-berlin_cs"
- CredentialStoreFragments
- CredentialStoreFragment name ="ftp_demo"
- CSFile file path %USERPROFILE%\jade_demo....
- CSAuthentication
- ...
- CSEntryPath
- CredentialStoreFragment name ="ftp_demo"
- ProtocolFragments
- Profiles
- ...
Addressing the information in the Credential Store
...
Depending on their operating system, users may find it necessary to modify this attribute before running the example.
XML Listing
The following code block can be opened to show the full XML configuration for the example:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<?xml version="1.0" encoding="utf-8"?> <Configurations xsi:noNamespaceSchemaLocation="http://www.sos-berlin.com/schema/jade/JADE_configuration_v1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Fragments> <ProtocolFragments> <FTPFragment name="ftp_demo_sos-berlin_cs"> <BasicConnection> <Hostname><![CDATA[cs://demo/ftp/demo_on_test.sos-berlin.com@url]]></Hostname> </BasicConnection> <BasicAuthentication> <Account><![CDATA[cs://demo/ftp/demo_on_test.sos-berlin.com@user]]></Account> <Password><![CDATA[cs://demo/ftp/demo_on_test.sos-berlin.com@password]]></Password> </BasicAuthentication> <CredentialStoreFragmentRef ref="ftp_demo" /> </FTPFragment> </ProtocolFragments> <CredentialStoreFragments> <CredentialStoreFragment name="ftp_demo"> <CSFile><![CDATA[%USERPROFILE%\jade_demo\keepass\demo_cred_store.kdbx]]></CSFile> <CSAuthentication> <PasswordAuthentication> <CSPassword><![CDATA[sos]]></CSPassword> </PasswordAuthentication> </CSAuthentication> <CSEntryPath /> </CredentialStoreFragment> </CredentialStoreFragments> </Fragments> <Profiles> <Profile profile_id="ftp_server_2_local_cs"> <Operation> <Copy> <CopySource> <CopySourceFragmentRef> <FTPFragmentRef ref="ftp_demo_sos-berlin_cs" /> </CopySourceFragmentRef> <SourceFileOptions> <Selection> <FileSpecSelection> <FileSpec><![CDATA[.*]]></FileSpec> <Directory><![CDATA[./]]></Directory> </FileSpecSelection> </Selection> </SourceFileOptions> </CopySource> <CopyTarget> <CopyTargetFragmentRef> <LocalTarget /> </CopyTargetFragmentRef> <Directory><![CDATA[${USERPROFILE}\jade_demo\transfer_receive]]></Directory> </CopyTarget> </Copy> </Operation> </Profile> </Profiles> </Configurations> |
Running the YADE Client with the Credential Store
...
Users of other operating systems may have to make minor configuration changes.
Advanced Configuration
Key File Authentication
Key file authentication can be used for the Credential Store either alone or together with the password authentication described in the example above.
Key file authentication has to be configured for the Credential Store and in the XML settings file.
Configuring key file authentication for the Credential Store
The...
Configuring key file authentication in the XML settings file
Key file authentication is configured in the XML settings file by specifying a KeyFileAuthentication element as a child of the Credential Store fragment CSAuthentication element
See Also:
...