Search results

  1. 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...
  2. 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...
  3. 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 */...
  4. 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
  5. 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