Search results

  1. Boomn4x4

    Waiting For Progress App From Java

    I've got a java application that I'm using to execute a Progress application via "mbpro database -p program.p" I'm then doing a Process.waitFor() in java to wait for that process to terminate before continuing. The process terminates immediatly. With that said, I'm not really a progress...
  2. Boomn4x4

    JDBC SQL string help

    Hello, I'm having a problem with an SQL statement through a JDBC connection. I know I'm connected and can collect data from some queries, but I'm struggling with a WHERE clause. If I run the following SQL statement from my Progress editor, it works fine select c-fld[3] from sys-ctl where...
  3. Boomn4x4

    C++ Stringstream data type causing core dump

    I have a C++ shared object library ( that WAS working at one point ) that is being called from Progress. If I go so far as to even declare a data type "stringstream" in the C++ library, Progress core dumps with the following stderr out message: "SYSTEM ERROR: Memory violation. (49) ** Save file...
  4. Boomn4x4

    Could not load DLL procedure (3258)

    This problem has me at wits end... I have a C++ library compiled. I'm calling the library from Progress, however, when I call it, it is telling me that it "could not load DLL procedure". The DLL is there, and Progress is seeing it because if I delete the DLL, I get a "such file or directory...
  5. Boomn4x4

    Could not find the entrypoint (3260)

    I have a C++ library, compiled in eclipse (if that matters) that I am using in Progress. And I'm getting a Could not find the entrypoint (3260) The procedure is bulit as follows: PROCEDURE msgi_send_one EXTERNAL {&libmsgi} CDECL PERSISTENT : define input parameter destType as...
  6. Boomn4x4

    Optional Parameter to Procedure

    Is there a way to define an optional parameter in a procedure?
  7. Boomn4x4

    ODBC querey against a logical database field

    I'm trying to do a data base query through ODBC on a logical database field, but cannot figure out how to do it.. I've tried "...where field = y, field = true, field = yes, field = 1" none of them work. For the interm, I've changed the field type to be integer and tested against 1 or 0, which...
  8. Boomn4x4

    memptr as function parameter

    I have a function setup as: PROCEDURE msgi_request_reply EXTERNAL {&libmsgi} CDECL PERSISTENT : define input parameter requestDestType as character. /* 'QUEUE' or 'TOPIC'*/ define input parameter requestDestination as character. /* name of queue or topic */...
  9. Boomn4x4

    Cannot Open Dynamic Library (8013)

    I've written a C++ shared object library to use within OpenEdge v10. The library is for WebSphere MQ functionality. I have all of the .so code commented out except the variable declaration of the MQ object so there really isn't much code to cause a problem. When I try to run my progress...
  10. Boomn4x4

    JDBC CLASSPATH through Eclipse

    I have a Java application utilizing JDBC drivers to interact with an OpenEdge database. When launching the application using my local "java" interpreter, the application works fine. This is due to some external class's that JDBC needs to load the driver. To do so, I have my CLASSPATH...
  11. Boomn4x4

    JDBC access - Authorization Failed.

    I have a JDBC connection working to a remote test environment, and all is working fine. However, when I try to connect to a different local test system, I get the following error when trying to do a select: java.sql.SQLException: [DataDirect][OpenEdge JDBC Driver][OpenEdge] Access denied...
  12. Boomn4x4

    JDBC Unable to Load JDBC driver

    Hello, I am trying to use Java to connect to the Progress DB, and am failing to do so... I have to assume there is something wrong with my path's and/or libraries. It appears that I can't even load the driver. Here is an "ls" of my /zzz/dlc/java directory aia.jar java.policy...
  13. Boomn4x4

    X-NODEREF ... SET-ATTRIBUTE got an error: An invalid character was specified. (9082)

    I'm trying to generate an XML file, and I'm using the XML documentation from Progress... but am running into an error I cannot figure out (FYI.. I'm pretty new to both XML and Progress). My code is as follows def var hDoc as handle no-undo. def var hSale as handle no-undo. def var hTran as...
Top