This adapter converts a URL or string to a URL and vice versa.
Properties
|
|
Operation executed by the adapter Possible values:
|
Status values
|
|
The operation was successful. |
|
|
The operation could not be performed. |
Input
The adapter expects an XML file with the string or URL to be converted as input.
-
Encodeoperation:Expected structure for the Encode operation
XML<?xml version="1.0" encoding="UTF-8" ?> <URL>http://www.softproject.de/search?q=Hellö Wörld@X4$</URL> -
Decodeoperation:Expected structure for the Decode operation
XML<?xml version="1.0" encoding="UTF-8" ?> <URL>http://www.softproject.de/search?q=Hell%C3%B6%20W%C3%B6rld@X4$</URL -
EncodePlainoperation:Expected structure for the EncodePlain operation
XML<?xml version="1.0" encoding="UTF-8"?> <Text>Hellö Wörld@X4$</Text> -
DecodePlainoperation:Expected structure for the DecodePlain operation
XML<?xml version="1.0" encoding="UTF-8"?> <Text>Hell%C3%B6%20W%C3%B6rld@X4$</Text>
Output
The adapter returns an XML document with the converted URL.
-
EncodeoperationSample output for the Encode operation
XML<?xml version="1.0" encoding="UTF-8" ?> <URL>http://www.softproject.de/search?q=Hell%C3%B6%20W%C3%B6rld@X4$</URL -
DecodeoperationSample output for the Decode operation
XML<?xml version="1.0" encoding="UTF-8" ?> <URL>http://www.softproject.de/search?q=Hellö Wörld@X4$</URL> -
EncodePlainoperation:Sample output for the EncodePlain operation
XML<?xml version="1.0" encoding="UTF-8"?> <Text>Hell%C3%B6%20W%C3%B6rld@X4$</Text> -
DecodePlainoperation:Sample output for the DecodePlain operation
XML<?xml version="1.0" encoding="UTF-8"?> <Text>Hellö Wörld@X4$</Text>