Will,

I still don't get why you want to use a BAT file to do this at all.
IF you're using IIS, you should really be using ASP.

The simplest way is to load UniObjects onto the web server, and just use
that from some very simple asp code, e.g.:

<html>
<body>
<%
  Dim Sess, Subr, Text
  Set Sess = CreateObject("UniObjects.UniOaifCtrl")
  Sess.HostName = "localhost"
  Sess.UserName = "your_user_here"
  Sess.AccountPath = "your_account_here"
  Sess.Password = "your_password_here"

  ' Now connect
  Sess.Connect

  ' Set up the subroutine call
  Set Subr = Sess.Subroutine("Your_Subroutine_Name",1)
  Subr.Call
  Text = Subr.GetArg(0)

  ' Now write the text to the page
  Response.Write Text
%>
</body>
</html>

Brian
-------
u2-users mailing list
[email protected]
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to