Recent content by Courtney White

  1. Courtney White

    Question Query remote SQL server from progress program.

    I need a push in the right direction, and then I should be able to figure this out. Our users want a browse that includes a field that contains a logical value from a mssql server. I've explained to them that whatever we do, it's going to be extremely slow, but they insist. I'd like to make a...
  2. Courtney White

    Question Best Method for Changing XML Values Inside Program.

    I'm looking for a jumping in point on the Progress XML manipulation. I'm not very familiar with XML, in general. What would be my first step after having the xml returned into the getProcessReturn LONGCHAR? Do I load it into a X-Document? Should have I declared getProcessReturn as a X-Document...
  3. Courtney White

    Question Best Method for Changing XML Values Inside Program.

    Ended up using the following: PERLCommand = "perl -p -0777 -e 's@H_Complaint Number</label><value xsi:type=\"xsd:string\"></value>@H_Complaint Number</label><value xsi:type=\"xsd:string\">" + ca_nbrDEBUG + "</value>@sg' '/srv/servicecalls/'" + ca_nbrDEBUG + ".xml >'/srv/servicecalls/'" +...
  4. Courtney White

    Question Best Method for Changing XML Values Inside Program.

    We are running on Enterprise SUSE 10
  5. Courtney White

    Question Best Method for Changing XML Values Inside Program.

    We need to interface our QAD 2012.EE system with our document control system, MasterControl. We are working with OpenEdge Release 10.2B05. First, we make a connection and request an XML file. We have to pull a fresh XML file each time, as there are unique identifiers: CREATE SERVER...
  6. Courtney White

    Question Launching a web browser via QAD

    Here is the VBSscript I've come up with. Since the server is Linux, I will launch it using WINE and the OS-COMMAND progress function. Our users use the same UserID for QAD and Windows, so using the usr_mstr.usr_userID field, we can pass that as the first argument. In our case, the server the...
  7. Courtney White

    Question Launching a web browser via QAD

    I've taken over this project from Rob. After doing some investigating, I think I've determined that everything Progress is run on the QAD server, so there is no way to directly launch a Windows application using a progress program. I think the solution is going to be one of the following: 1...
Top