(New page: == The Connector Responses == All Connector responses have the same base XML structure, like this: <pre><?xml version="1.0" encoding="utf-8" ?> <Connector resourceType=" Re...) |
m (moved CKFinder/Server Side Integration/The Connector Responses to CKFinder 1.x/Server Side Integration/The Connector Responses) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
+ | {{CKFinder_SSI_Warning}} | ||
+ | |||
== The Connector Responses == | == The Connector Responses == | ||
Latest revision as of 07:46, 28 May 2010
The Connector Responses
All Connector responses have the same base XML structure, like this:
<?xml version="1.0" encoding="utf-8" ?> <Connector resourceType=" RequestedResourceType"> <CurrentFolder path="CurrentFolderPath" url="CurrentFolderUrl" acl="CompitedACL" /> <Error number="ErrorNumber" text="CustomErrorMessage" /> <!-- Here goes all specific command data --> </Connector>
Some important things must be considered when building the response:
- The response encoding must be set to "text/xml".
- The "Cache-Control" HTTP header must be set to "no-cache". This is needed because the browsers usually cache the requests for XML files and this is not wanted in this case.
- The Path and the URL must always start and finish with a slash (/).