Files
luos/workflow/engine/methods/services/Rest/SimpleMessage.php
Ralph Asendeteufrer 2a416c6e31 BUG 9855 REST services for ProcessMaker Solved
PROBLEM there were not any documentation of Rest using Curl, and using rest with Java.
SOLVED There were add classes to help to use Rest by Curl, and examples to use rest with Java were added.
2012-10-02 17:28:12 -04:00

43 lines
1.1 KiB
PHP

<?php
/**
* Class defined to set enough curl configuration.
*
*
* @category Zend
* @package ProcessMaker
* @subpackage workflow
* @copyright Copyright (c) ProcessMaker Colosa Inc.
* @version Release: @2.0.44@
* @since Class available since Release 2.0.44
*/
require_once("CURLMessage.php");
/**
* Class defined to set enough curl configuration
*/
class SimpleMessage extends CURLMessage
{
public function SimpleMessage()
{
parent::__construct();
}
/**
* Set the message in order to follow the message format, empty caused this class should not be instanced
*/
protected function format(array $message)
{
}
/**
* Setting CURL Url, enough to attach a message.
*/
protected function setMoreProperties($messageFormated)
{
//Please, remove this comment, is only for looging proposes.
//
echo "Request: " . $this->server_method . PATH_SEP . $messageFormated . " <br>";
//
curl_setopt($this->ch,CURLOPT_URL,$this->server_method.$messageFormated);
}
}
?>