Search results

  1. R

    Table as Parameter

    That's the complete code. I have to apologize. I neglected to check the keyword forget list. 'TABLE' is in there along with plenty of others that would be of use to contemporary developers. Here's the complete list, just for giggles: ADD ANY AVG BACKGROUND CHECK DEBUG-LIST ETIME EXISTS GROUP...
  2. R

    Table as Parameter

    OS: AIX 6 PROVERSION: 9.1D {code snippet from beginning of file} def temp-table ttExample field vcField1 as char field vcField2 as char . define input-output parameter table for ttExample. {end code} Question: Compiling returns error 247 'Unable to understand after parameter table'...
  3. R

    9.1E Appserver on Windows 2008 Srv

    Summarizing: We abandoned a progress-only solution because the cost to the client was prohibitive. Instead, we deployed a PHP script that accepts HTTP POST with two matched pairs of data, the first being the method and the second being the URL to the XML file containing additional parameters...
  4. R

    9.1E Appserver on Windows 2008 Srv

    An update of where I am at... Added a registry setting to EnableJIT on the Java VM: HKEY_CURRENT_USER\Software\WOW6432Node\Microsoft\Java VM –> EnableJIT = 0. I can run Progress Explorer client but cannot execute proadsv -q, getting "jave.exe has stopped working". I'm at the end of my internal...
  5. R

    9.1E Appserver on Windows 2008 Srv

    "Yes, can't run pro/oe explorer on 2008. Yes, can't exec command line asbman/asconfig for same reason: java." Same reason here :). To configure appserver, progress/oe explorer running on client connected to server is supposed to work. With client as Win7, this should still work, right?
  6. R

    9.1E Appserver on Windows 2008 Srv

    I already know that I will receive the "Why would you want to..." for this question, but I just have to know. Is there a way to configure 9.1E appserver to run on Win2008srv against a 9.1E db? Yes, can't run pro/oe explorer on 2008. Yes, can't exec command line asbman/asconfig for same...
  7. R

    PHP:PDO and odbc connection parameters for Progress 10.2B ODBC Driver

    Both, always curious, but hitting an error now. Using $dsn = "odbc:blahblahdsn", error returned is: Connection failed: could not find driver - which makes me think that i need more info in the $dsn entry in order for this to work. Using $dsn = "blahblahdsn", error returned is: Connection...
  8. R

    PHP:PDO and odbc connection parameters for Progress 10.2B ODBC Driver

    Anyone successfully connected to OpenEdge 10.2B db using PHP:PDO and Progress 10.2B ODBC Driver? Example: $dsn = "blahblahdsn"; $userid = "blahmama"; $pwd = "blahblahblah"; try { $dbh = new PDO($dsn, $userid, $pwd); } catch (PDOException $e) { echo...
Top