Commit Graph

24 Commits

Author SHA1 Message Date
Victor Saisa Lopez
ebd1a4747c BUG 8596 "Web Services needs a userInfo() function" SOLVED
- New feature
- Web Services for getting information of user
- Added functions "PMFInformationUser, WSInformationUser" in "class.pmFunctions.php"
- Added function "informationUser" in "class.wsBase.php"
- Added functionality for applications using Web Services
* Available from version 2.0.46
2012-11-15 12:56:33 -04:00
jennylee
665fd4d25d CODE STYLE, workflow/engine/methods/services/
FILES:
cases_StartExternal.php
demoSoap.php
login_getStarted.php
processHeartBeat_Ajax.php
soap.php
soap2.php
unavailableService.php
upload.php
webdav.php
wsdl.php
wsdl2.php
wso2.php
xpdl.php
2012-10-17 14:21:55 -04:00
Julio Cesar Laura
85e1756a11 BUG 9842 Incorporar en webservice, taskList y caseList, el id del proceso al que pertenece SOLVED
- Added the field processId on these webs services
2012-10-12 12:16:19 -04:00
Hector Cortez
f8268dc6e4 BUG 6210 Request for web service to retrieve all the case variables SOLVED
- The getVariables() web service is not very useful, if you don't know which case variables have been defined.
- Changed name from getAllVariables to getVariablesNames.
2012-10-08 09:09:08 -04:00
Hector Cortez
ce45c7a392 BUG 6210 Request for web service to retrieve all the case variables SOLVED
- The getVariables() web service is not very useful, if you don't know which case variables have been defined.
- Added a new function for web services getAllVariables.
2012-10-05 16:38:14 -04:00
Victor Saisa Lopez
3fc8719472 BUG 5494 "Request for a web service function to cancel..." SOLVED
- New feature
- Web Services for pause and unpause case
- Added functions "PMFPauseCase, PMFUnpauseCase, WSPauseCase, WSUnpauseCase" in "class.pmFunctions.php"
- Added function "pauseCase, unpauseCase" in "class.wsBase.php"
- Added functionality for applications using Web Services
- Cancel case it's solved in bug 7385
- Function "pauseCase" from "class.pmFunctions.php" has changed its name to "PMFPauseCase"
* Available from version 2.0.44
2012-09-12 14:46:26 -04:00
Victor Saisa Lopez
128b193768 BUG 7385 "PMF functions required for handling cases..." SOLVED
- New feature
- Web Services for delete and cancel case
- Added functions "PMFDeleteCase, PMFCancelCase, WSDeleteCase, WSCancelCase" in "class.pmFunctions.php"
- Added function "deleteCase, cancelCase" in "class.wsBase.php"
- Added functionality for applications using Web Services
* Available from version 2.0.44
2012-09-11 16:41:05 -04:00
Victor Saisa Lopez
3ffa50d602 BUG 4119 "Need web service for updating user accounts" SOLVED
- New feature
- Web Services for updating user accounts
- Added functions "PMFCreateUser, PMFUpdateUser, WSCreateUser, WSUpdateUser" in "class.pmFunctions.php"
- Added function "updateUser" in "class.wsBase.php"
- Added functionality for applications using Web Services
2012-07-25 18:27:48 -04:00
Victor Saisa Lopez
31f8bcdfd4 BUG 9291 "Formatting files to PSR2" SOLVED
- Formatting files to PSR2
2012-07-11 15:24:11 -04:00
Victor Saisa Lopez
5e6f4ad09b BUG 9291 "Creating user via web services - no option to set..." SOLVED
- Creating user via web services, no option to set expiry date
- Create user via web services, can now be set parameters:
  expiry date and status (in the functions: createUser, WSCreateUser and PMFCreateUser)
- These changes in functions must be documented in the wiki.processmaker.com
2012-07-11 12:52:43 -04:00
Fernando Ontiveros
17c9554dde formating soap2.php using the PSR2 coding standard 2012-07-04 10:21:13 -04:00
Marco Antonio Nina
80045f99df BUG 9043 Variable for Case Notes content needed SOLVED
- Se crearon varias funciones para este caso.
- La funcion getCaseNotes en la class.case.php con los parametros applicationID, type que es la forma que quiere que se devuelvan los datos, puede ser array, objetc, string por defecto esta en array, y userID que nos daria solo las notas de ese usuario, por defecto nos devuelve de todos los usuarios.
- Se modifico la funcion getNotesList para poder traer las notas por un determinado usuario y por defecto recupera las notas de todos los usuarios.
- en class.pmFunctions.php se creo la funcion PMFGetCaseNotes con los parametros applicationID, type que es la forma que quiere que se devuelvan los datos, puede ser array, objetc, string por defecto esta en array, y userID que nos daria solo las notas de ese usuario, por defecto nos devuelve de todos los usuarios.
- En class.wsBase.php la funcion getCaseNotes con los parametros applicationID, userID que nos daria solo las notas de ese usuario, por defecto nos devuelve de todos los usuarios, esta funcion nos devuelve un array con los fieds en minuscula.
- En soap2.php getCaseNotes donde se tienen los siguiente parametros: sessionId, se necesita iniciar una session para poder utilizarlo, applicationID, userID que nos daria solo las notas de ese usuario, por defecto nos devuelve de todos los usuarios.
- Se adiciono la funcion para utilizarlo en SoapServer.
- En wsResponse se creo un nuevo template para la respuesta del webservice wsGetCaseNotesResponse con los campos status_code, message, notes, timestamp.
- En pmos2.wsdl se agregaron los datos necesarios para la salida correcta del webservice.
2012-05-02 09:56:30 -04:00
Victor Saisa Lopez
4b8d867af3 BUG 8984 "PMFNewCaseImpersonate(), WSNewCaseImpersonate() and..." SOLVED
- The PMFNewCaseImpersonate(), WSNewCaseImpersonate() and newCaseImpersonate() web service, do not return the UID and number of the new case like PMFNewCase(), WSNewCase() and newCase()
- It improved the code of the PMFNewCaseImpersonate method, for to returns the UID of case, as PMFNewCase
- It improved the code of the WSNewCaseImpersonate method, for to returns the UID of case, as WSNewCase
- Corrections made in the methods "Simple Trigger Web Services", including the files involved
2012-04-25 17:19:54 -04:00
Alvaro Campos
a40db2bd9d BUG 8315 añadido de los archivos nuevos para este webservice 2012-01-19 17:56:34 -04:00
Alvaro Campos
a55548cfd1 BUG 8315 Se añadio el webservice unassignedCaseList. 2012-01-19 17:22:58 -04:00
Hector Cortez
ee22d188cd BUG 5163 Changed the short open tags for PHP code to long open tag. 2011-12-22 16:56:22 -04:00
Fernando Ontiveros
aab8d610dd BUG 5156 Change response object in class.soap2.php
Grammar problem in "2 You have not privileges to execute this function". It needs a "do not", but it is better to not use "You".

In workflow/engine/methods/services/soap2.php,
change:
      $o->guid = "2 You have not privileges to execute this function";
To:
      $o->guid = "2. Insufficient privileges to execute this function'
2011-12-12 11:35:34 -04:00
Alvaro Campos
fa845af2d4 BUG 0000 fixed soap die 2011-09-19 11:17:23 -04:00
Alvaro Campos
53c1243fee BUG 6613 fixed issue PM_FACTORY in processlist WS 2011-09-15 17:52:15 -04:00
Alvaro Campos
c109b8007f BUG 6842 solved according to the Forum report 2011-09-15 16:37:29 -04:00
Erik Amaru Ortiz
be0c90af87 BUG 000 momentarily reverted to rc5 fro pmTables (fix) 2011-09-05 12:47:25 -04:00
Alvaro Campos
4e07c61241 add remove users from group webservices 2011-02-02 21:29:47 +00:00
Hugo Loza
f16d908205 Avoid errors executing eval of posted variables 2011-01-26 02:32:51 +00:00
Erik Amaru Ortiz
0525681d79 initial commit from rev. 632 2010-12-02 23:34:41 +00:00