Search results

  1. greeshma

    Self Join Json

    Here the problem is object and array are of same table. I had tried to create data-relation. It throw error saying relation can not be build for same table.
  2. greeshma

    Self Join Json

    Is it possible to generate json as above in progress open edge. I am using 11.7 version. Appreciate if you can provide me any sample codes for slef join json.
  3. greeshma

    Serialize-name For Dynamic Temp-table

    Thank you Stefan, I can collect the field and its serialize name. But i couldn't find a syntax to add serialize name like that. Can you please help me.
  4. greeshma

    Serialize-name For Dynamic Temp-table

    Hi, /* Add field to temp table */ ASSIGN run-ok = hTT-data:ADD-NEW-FIELD(hField:NAME, hField:DATA-TYPE, hField:EXTENT...
  5. greeshma

    Single Search For A Table

    Dear all, We are in a development phase of new product. In screen designs all table is having only one search screen. Is there any way in progress where we can search all columns with matching search criteria.
  6. greeshma

    Calling Webservice With Wsdl File Throws Error

    Thank you Dude A wildcard certificate is used by the server . We had problems connecting initially and this was corrected by following the workaround mentioned in the below link. Progress KB - OpenEdge client and bprowsdldoc are unable to connect to a site which uses wildcard certificates The...
  7. greeshma

    Calling Webservice With Wsdl File Throws Error

    Hi Dude, We don't have any certification. Client advised us to use basic authentication. Thanking you.
  8. greeshma

    Calling Webservice With Wsdl File Throws Error

    Hi All, I am trying to call an external wsdl url. Sample code is given below. I am able to connect. But in second run (RUN ipAction IN hPortType), i am getting below error. Input is an XML. Expecting a xml having base64 data in one of the element in response xml which needs to converted to pdf...
  9. greeshma

    Adding STX ETX to XML in 9.1D

    <?xml version="1.0" encoding="utf-16" ?><IccTransactionRequest xmlns="http://servebase.com/2009/06/pedframework" xmlns:xsd="http://www.w3.org/2001/XMLSchema"...
  10. greeshma

    Adding STX ETX to XML in 9.1D

    Hi, CHR(02) + v-result + CHR(03) chr(02) is STX and chr(03) is ETX . Then only third party system will recognize the message .
  11. greeshma

    Adding STX ETX to XML in 9.1D

    HI, But how I can add STX and ETX then to XML. hDoc contains XML.
  12. greeshma

    Adding STX ETX to XML in 9.1D

    def VAR hDoc as handle no-undo. /* hDoc contains XML */ DEF VAR v-result AS LONGCHAR NO-UNDO. DEF VAR mPointer AS MEMPTR NO-UNDO. ll = hDoc:SAVE("LONGCHAR",v-result). v-result = CHR(02) + v-result + CHR(03) . COPY-LOB FROM v-result TO mPointer NO-CONVERT . The current...
  13. greeshma

    XML hDoc:save returns error 9082 in OE 10.2B

    Hi , Development team is in version OE 10.2B . When we try to save an xml it returns error "X-NODEREF or X-DOCUMENT save got an error "Attempt to re-declare namespace prefix "for name space" in element in ICCTransactionRequest . It is already declared for name space http://servebase.com...
  14. greeshma

    Perfomance Issue

    From a gui program , with appserver routine i am calling a program in character. CREATE SERVER hAppServer. v-as-connected = hAppServer:CONNECT( g-aspf-val ) NO-ERROR. empty temp-table tt-sales. RUN asloadTT.p ON SERVER hAppServer (OUTPUT TABLE...
  15. greeshma

    ajax to webservice json passing

    It was a sheer cross domain issue . When we send the request with method type POST, it will be sending as OPTIONS due to cross domain policy. So in order to resolve this issue, following response headers should be added in the server side. Access-Control-Allow-Origin: *...
  16. greeshma

    ajax to webservice json passing

    Can you please tell how to do that what i have is only WEB-CONTEXT and that is not json/xml then how to check its content
  17. greeshma

    ajax to webservice json passing

    Hi All, we are in between a new development where front end will a web browser. server is openedge 10.2B. from the browser value is passing to webservice as json. From ajax they are posting to url of webservice which ends in program name wsdxi.p, which is progress oe 10.2B. inside that program...
  18. greeshma

    Different font style printing

    Thanks Larry :)
  19. greeshma

    Different font style printing

    Hi, Is there any possibility to achieve different style in one singe page using progress. def new shared stream report. DEF VAR v-ans AS logi . DEF VAR v-pg-length AS INT INIT 10 . SYSTEM-DIALOG PRINTER-SETUP NUM-COPIES 1 UPDATE v-ans. output stream report to PRINTER NUM-COPIES 1 paged...
  20. greeshma

    String Comparison

    Hi All, I am trying to get print job status of a selected printer using WMI. My printer is not connected to system and printjob's can be viewed from start-> device and printers -> see what's printing. There jobstatus is displaying blank. But in my program it returns value "?". I tried...
Top