Search results

  1. B

    Input Output Parameters

    Thanks Cringer - this works fine.
  2. B

    Input Output Parameters

    I have an appserver routine that is being exposed as a web service. I have a requirement to have an input parameter the same name as an output parameter on the web service e.g. the parameter "JobId"... DEFINE INPUT PARAMETER JobId AS INTEGER NO-UNDO. DEFINE INPUT PARAMETER JobAction...
  3. B

    Defining Web Service Parameters

    I have to create a Progress Web Service that will allow a request like the following to be submitted. <ReasonCode>56</ReasonCode> <Job> <Id>12345</Id> <ExternalReference1>ABC123</ExternalReference1> </Job> <JobDone>true</JobDone> <StatusCode>1</StatusCode> <Action>4</Action> My...
  4. B

    Calling Outlook 2010

    Hi, I have a progress 10.2B client running on windows 7 and I am trying to interface with Outlook 2010. The following example code worked fine on Windows XP/ Outlook 2003: DEF VAR hSession AS COM-HANDLE. CREATE "MAPI.Session" hSession. hSession:logon("", /* profile */...
  5. B

    Read-Only Database

    Tom, Thanks for the quick reply - I'll look into the -RO option. The system is obsolete but users still want an archived version for read-only so not worth upgrading.
  6. B

    Read-Only Database

    Hi, We have a Progress V9 database (on a unix server) which we want to allow users to query only. We are using the client/server model of accessing the data. Is there any startup parameter on the client or server side for only allowing read-only access ? Any help greatly appreciated. Thanks
  7. B

    Possible Index Corruption

    Hi Cringer, I've amended the code as requested but still have the same problem. The problem just suddenly started yesterday morning. No database or program code has changed for weeks. No changes on unix server either. ?
  8. B

    Possible Index Corruption

    Hi (first time poster !) , We have started experiencing problems retrieving records on a table using a logical field which is indexed. Code that previously worked: FOR EACH Job WHERE Job.Issued = FALSE : ...... Does not return any records any more. However if we change the statement to...
Top