Search results

  1. N

    Error Help With Error 9318, 9407 And 11748

    I have problems with a certificate with the SHA -2. I try to use a web service that has this algorithm, but I idncia errors 9318 , 9407 and 11748. I have reviewed the documentation in progress tried to export the PEM certs directory progress . but it has not worked . How this problem is solved...
  2. N

    Question That means the error 8243

    Default Application Service not found at NameServer at Host <Host> Port <Port>. (8243) See message CSMSG118. Where I get information about "See message CSMSG118." In my case, specifically "Default Application Service not found at NameServer at Host 127.0.0.1 Port 5162. (8243)" What the error...
  3. N

    Question save string to pdf

    I have a string encoded in base64. This chain is a PDF, ie contains a PDF. How do I save or export them this string to get a PDF file?
  4. N

    Question Send input param to webservice

    how to send an input parameter of type complex to a method on a webservice? what options are
  5. N

    Question Param to webservice

    Hello I'm trying to use a web service, which receives several parameters. and connects to the webservice, and connects to the port, but consumes the web service error indicates a missing parameter. the connection to the function you want to use the well performed: CREATE SERVER hServer...
  6. N

    Question Webservices CONNECT

    I'm trying to connect to a web service from the procedure editor with no web server, only the client version 10.1c progress, is it possible to make it that way or some other configuration required? the instruction I use is: lReturn = hServer:CONNECT("-WSDL https: // dominioom/timbrado/wsdl...
  7. N

    Resolved Work with DLL?

    Is it possible to call or work with third-party DLL libraries in progress? I have DLLs that I can use to connect to a webservice, can guide me how to do this.
  8. N

    run procedure extern

    Hello I am running a process from php progress from php using exec. script.php -> Exec(ruta/progress.exe parámetros ruta/file.r) The process progress file.r run a second process: File.r -> Run ruta/file2.r(input, output). The end file2.r process writes a log file, I direct and close...
  9. N

    matches howto?

    I apply this? using the function matches [A-Z]{3,4}[0-9]{6}[0-9A-Z]{3} matches ("[A-Z]{3,4}[0-9]{6}[0-9A-Z]{3}")?
  10. N

    Read output from php

    Is there any way to get a php variable from a procedure progress? In php execute a procedure .r using exec function, complete the procedure and I want to read it returns a value from php. In codigo.php do this: exec(' "C:\Program Files\PROGRESS\OpenEdge\bin\prowin32.exe" -db X -N X -S X -H X...
  11. N

    How do you export a RAW type field from one table to a file?

    How do you export a RAW type field from one table to a file? The contents of RAW type field contains an XML file, so my output will be an XML file. DEFINE VARIABLE FILENAME AS CHARACTER FORMAT "x(100)". FILENAME = "ruta\file.xml". FIND FIRST tabla WHERE condicion NO-LOCK NO-WAIT...
  12. N

    Passing parameters

    Hello The basic question is: How to pass parameters concatenated into a string using theseparator "^" one file to another I have a file that receives 2 parameters recibir.p. Get a file nameand a string concatinate, concatenated values ​​are separated by the character "^" My second file...
  13. N

    How to compare dates in PHP PROGRESS?

    I have a date = "2010/05/19" my field "FechaBD" in Progres is datetime, Basically I want to share: FechaBD <= Date I am working with ODBC. The SQL is: SELECT * FROM PUB.NombreTabla WHERE Cve1 = 10 AND (DATE(FechaBD) < DATE('2010/05/19') OR DATE(FechaBD) >= DATE('2010/05/19'))...
Top