05-05-2009 02:47 PM
05-05-2009 03:35 PM
05-05-2009 04:22 PM
url = Alfresco.constants.PROXY_URI + "api/node/" + nodeRefAsLink + "/content/thumbnails/" + preview + argsNoCache + "&alf_ticket=" + Alfresco.constants.ALF_TICKET;
http://<server>:8080/share/proxy/alfresco/api/node/workspace/SpacesStore/<bigLongNodeRefrenceNumberIThinkItsCalledAUUID>/content/thumbnails/webpreview?c=force&noCacheToken=1241552512508&alf_ticket=TICKET_<stringOfNumbersAndLettersThatAlfGaveMeWhenILoggedIn>
05-05-2009 04:36 PM
GET /share/proxy/alfresco/api/node/workspace/SpacesStore/fdfcb8f0-9929-42c8-8589-4158dfe6e319/content/thumbnails/webpreview?c=force HTTP/1.1
http://10.0.0.1:8080/share/proxy/alfresco/api/node/workspace/SpacesStore/fdfcb8f0-9929-42c8-8589-415...
05-07-2009 01:27 PM
so.addVariable("url", previewCtx.url);
so.addVariable("url", escape(previewCtx.url));
05-22-2009 04:33 PM
05-22-2009 10:30 PM
"alf_ticket=TICKET_f7ebbb176309c35b53acabcc2e3378bc720c9a24"
http://server:8080/alfresco/some/api/path?alf_ticket=TICKET_f7ebbb176309c35b53acabcc2e3378bc720c9a24
http://server:8080/alfresco/some/api/path?something=data&somethingElse=arguement&alf_ticket=TICKET_f...
http://10.0.0.1:8080/share/proxy/alfresco/api/node/workspace/SpacesStore/fdfcb8f0-9929-42c8-8589-415...
05-27-2009 01:12 PM
05-27-2009 01:38 PM
http://server:8080/alfresco/service/api/login?u=username&pw=password
?alf_ticket='.$this->getTicket()
protected function getXml($uri)
{
$result = null;
try
{
$client = new Zend_Http_Client($uri, array(
'maxredirects' => 0,
'timeout' => 30));
//$client->setAuth($this->_profile->username, $this->_profile->password);
$response =& $client->request();
if ($response->isSuccessful()) {
$result = new SimpleXMLElement($response->getBody());
} else {
JError::raiseError($response->getStatus(), "Could not connect to server : ".$response->responseCodeAsText($response->getStatus()));
}
}
catch (Zend_Http_Client_Exception $e)
{
JError::raiseError(500, $e->getMessage());
}
return $result;
}
05-27-2009 01:58 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.