Recent content by cferriol

  1. C

    Crystal Reports (ARRAY FIELDS)

    I think you have to parse the result
  2. C

    Printing an image using 4gl

    Any ideas?
  3. C

    Printing an image using 4gl

    I know but my application runs in Linux and I use ICELP to print in client session. So I need to print the image using lpr in Linux an the Printer daemon redirect the output to the define printer. Any suggestion?
  4. C

    Printing an image using 4gl

    Hi I need to print an image as part of a document in a laser printer. I'm using PCL5 to print plain text but now I need to add an image. Can any body help me?
  5. C

    How to configure webspeed ?

    Apache o IIS?
  6. C

    Extract from a MEMPTR

    Thak you all guys!
  7. C

    Extract from a MEMPTR

    Hi, I need to extract a part of e MEMPTR. I mean I have a MEMPTR variable and in need to extract the content from position 5 to the end. How can I do that?
  8. C

    Get the XML answer of a web service

    I have Progress 9. What I did is store the data in a MEMPTR var DEFINE VARIABLE mResponse AS MEMPTR. DEFINE VARIABLE mRespuesta AS MEMPTR. DEFINE VARIABLE mTMP AS MEMPTR. ... SET-SIZE(mRespuesta) = 0. DO WHILE lSuccess AND ERROR-STATUS:GET-MESSAGE(1) EQ '' : SET-SIZE(mResponse) = 1...
  9. C

    Get the XML answer of a web service

    I finished the server side of my application. I put an HTTP Post to my server an I get back and XML. Following the example on Progress Knowledge Base answer ID: P125506, I make the client application. The example is pretty good but they use a CHAR variable to store de server response. The...
  10. C

    Show an XML on Internet Explorer

    Thank you very much!
  11. C

    Show an XML on Internet Explorer

    Hi I need to reply an XML document as answer of a web request. Por example, If I write this URL on Internet Explorer http://localhost/cgi-bin/wspd_cgi.sh/WService=planta/web_prueba.p?number=1 Must display an XML. I try to SAVE the XML to standart output using STREAM. I found that when yo don't...
  12. C

    onlie database backup progress 8.1e

    We use this script in Linux. I'm sure it works in Unix fecha=`(set \`date +%Y%m%d \` ; echo $1 )` # Directory with databases DBDIR=/usr/dbdir # Directory to store backup # Be sure you have enought space in your volume # and that the directories exist BKDIR=/usr/bkdir TMDIR=/usr/bkdir/tmp #...
  13. C

    HTTP-POST authenticated

    We did it. Thank you all guys.
  14. C

    HTTP-POST authenticated

    Ok, thank you. Now I did this # telnet server1.domain.com 8020 'here is the server DNS 'I get server connection Trying 10.200.52.47... Connected to server1.domain.com (10.200.52.47). Escape character is '^]'. 'Now what I need POST /sap/xi/adapter_plain?and more HTTP/1.1 Host...
  15. C

    HTTP-POST authenticated

    Ok, thank you. I'll try later. But how should I encode the userId:password string?
Top