Commit cfad22b946fb25bd65c74af5fae6ea1f2749d643
1 parent
046d9578
Exists in
master
- atualizado contexto de acesso a novo WS (Verificar se serviço está ativo)
git-svn-id: http://svn.softwarepublico.gov.br/svn/cacic/cacic/trunk/agente-windows@1249 fecfc0c7-e812-0410-ae72-849f08638ee7
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
gercols/gercols.dpr
... | ... | @@ -230,7 +230,7 @@ Begin |
230 | 230 | |
231 | 231 | Try |
232 | 232 | Try |
233 | - strRetorno := Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'get_test.php', strFieldsAndValuesToRequest, objCacic.getLocalFolderName, 'Testando comunicação com o Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').'); | |
233 | + strRetorno := Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'get/test', strFieldsAndValuesToRequest, objCacic.getLocalFolderName, 'Testando comunicação com o Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').'); | |
234 | 234 | |
235 | 235 | if (strRetorno <> '0') Then |
236 | 236 | Begin |
... | ... | @@ -1482,7 +1482,7 @@ begin |
1482 | 1482 | CriaCookie('aguarde_GER.txt'); |
1483 | 1483 | |
1484 | 1484 | // Esse teste também colocará a estação de trabalho em DEBUG, caso seja determinado no Gerente WEB |
1485 | - Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'get_test.php', strFieldsAndValuesToRequest, objCacic.getLocalFolderName, strAcaoGerCols); | |
1485 | + Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'get/test', strFieldsAndValuesToRequest, objCacic.getLocalFolderName, strAcaoGerCols); | |
1486 | 1486 | |
1487 | 1487 | objCacic.setBoolCipher(not objCacic.isInDebugMode); |
1488 | 1488 | ... | ... |
installcacic/uInstallCACIC.pas
... | ... | @@ -529,7 +529,7 @@ begin |
529 | 529 | strCommResponse := Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'get_config.php', strFieldsAndValuesToRequest, objCACIC.getLocalFolderName); |
530 | 530 | if (strCommResponse <> '0') then |
531 | 531 | Begin |
532 | - { Já realizados na chamada ao get_test.php | |
532 | + { Já realizados na chamada ao get/test | |
533 | 533 | objCacic.setBoolCipher |
534 | 534 | objCacic.setMainProgramName |
535 | 535 | objCacic.setMainProgramHash | ... | ... |