how can i turn this in FME????
login and get cookie:
curl -k -i -X POST -d j_username=xxx -d j_password=xx -c cookies.txt https://<host>/Webcontrols/xmlsql
login with cookie:
curl -k -i -X POST -d j_username=xxx -d j_password=xx -b cookies.txt https://<host>/Webcontrols/j_security_check
echo "Get data from iprotect"
query results to get data:
curl -k -X POST -d @$base_dir/sql/acceskey.xml -b cookies.txt https://<host>/Webcontrols/xmlsql --output acceskey_iprotect.xml
in the acceskey.xml is an xml format query select * from <table>
output gives the data in xml format