Search results

  1. W

    Is Progress Explorer replacement for Procontrol?

    Architect uses JDBC to connect to the database, so you'll need to set that up. There'll be something on the knowledge centre about this I suspect.
  2. W

    Is Progress Explorer replacement for Procontrol?

    Bof, Once you've got databases set up through Explorer just use dbman from the command line to start/stop them. Similarly for appservers use asbman. It allows remote admin with the -H option. Explorer isn't that bad, and now that more and more sys admins are only interested in administering...
  3. W

    Change Procedure Return-Type

    I assume you're talking about this sort of thing: PROCEDURE someprocedure: /* do something */ RETURN /* somereturnvalue */. END PROCEDURE. A procedure RETURN-VALUE is always a character, or maybe a Progress.lang.error object for a RETURN ERROR. You can define the datatype for a function...
  4. W

    automatic e-mail reply from webspeed

    If you've got an SMTP mail server then you're probably best using smtpmail.p from freeframework.org. The code is fairly heavily self documented so you should be able to get something working.
  5. W

    EMail from WebSpeed on Windows

    I'm trying to get WebSpeed to send an email. The problem is its got to work on Windows (UNIX is easy) with an Exchange mail server with no SMTP service (again, SMTP would have been relatively easy). By changing the AdminService so it logs in as a domain user and not LocalSystem and using MAPI...
Top