Skip to main content

web runtime AcuParam1 .. 14 in <object> tag

  • January 16, 2013
  • 3 replies
  • 0 views

why AcuParam are not recognized?

 <OBJECT ID="AcuGTAX1" WIDTH=640 HEIGHT=480

    CLASSID="CLSID:077C768D-64C1-4AC1-845D-4589B4B2C24E"

    CODEBASE="www.acucorp.com/.../acugtax

 acugtax8121.cab#Version=8,1,2,2949">

    <PARAM NAME="SRC" VALUE="localhost/.../Cogeweb.acu">

    <PARAM NAME="AcuEmbedded" VALUE="TRUE">

    <PARAM NAME="AcuParam1"   VALUE "_PARAZZA">

    <PARAM NAME="AcuParam2"   VALUE "PARAZZAPARAZZA">

    <PARAM NAME="AcuParam3"   VALUE "CogeWeb_Call_Sime">

    <PARAM NAME="AcuParam4"   VALUE "10">

In cobol program "c$getvariant" return blanks.

3 replies

Stephen Hjerpe
  • Participating Frequently
  • 1100 replies
  • January 16, 2013

why AcuParam are not recognized?

 <OBJECT ID="AcuGTAX1" WIDTH=640 HEIGHT=480

    CLASSID="CLSID:077C768D-64C1-4AC1-845D-4589B4B2C24E"

    CODEBASE="www.acucorp.com/.../acugtax

 acugtax8121.cab#Version=8,1,2,2949">

    <PARAM NAME="SRC" VALUE="localhost/.../Cogeweb.acu">

    <PARAM NAME="AcuEmbedded" VALUE="TRUE">

    <PARAM NAME="AcuParam1"   VALUE "_PARAZZA">

    <PARAM NAME="AcuParam2"   VALUE "PARAZZAPARAZZA">

    <PARAM NAME="AcuParam3"   VALUE "CogeWeb_Call_Sime">

    <PARAM NAME="AcuParam4"   VALUE "10">

In cobol program "c$getvariant" return blanks.

Based on what I see in the documentation ... Programmers Guide to the Internet

Chapter 5: Using the ACUCOBOL-GT Web Runtime > 5.6 Invoking Your COBOL Application with the Web Runtime > 5.6.1 Using the <OBJECT> Tag > 5.6.1.3 Web runtime object interface :

The Web runtime's object interface consists of the following methods and properties. Some are bi-directional (B), some are write only (W), and others are read only (R).

AcuParam1 W

AcuParam2 W

It would appear that the AcuParam are write only, not Read or bi directional.


  • Author
  • Rocketeer
  • 19312 replies
  • January 17, 2013

why AcuParam are not recognized?

 <OBJECT ID="AcuGTAX1" WIDTH=640 HEIGHT=480

    CLASSID="CLSID:077C768D-64C1-4AC1-845D-4589B4B2C24E"

    CODEBASE="www.acucorp.com/.../acugtax

 acugtax8121.cab#Version=8,1,2,2949">

    <PARAM NAME="SRC" VALUE="localhost/.../Cogeweb.acu">

    <PARAM NAME="AcuEmbedded" VALUE="TRUE">

    <PARAM NAME="AcuParam1"   VALUE "_PARAZZA">

    <PARAM NAME="AcuParam2"   VALUE "PARAZZAPARAZZA">

    <PARAM NAME="AcuParam3"   VALUE "CogeWeb_Call_Sime">

    <PARAM NAME="AcuParam4"   VALUE "10">

In cobol program "c$getvariant" return blanks.

I think conversely that the AcuParam are bi directional because this works:

     <SCRIPT LANGUAGE="VBScript">

     sub button1_onclick()

        call AcuGTAX.src("localhost/.../Cogeweb.acu")

        call AcuGTAX.AcuEmbedded(1)

        call AcuGTAX.AcuOptions(" -d -c cblconfi.giovanni")

        call AcuGTAX.AcuParam1("_PARAZZA")

        call AcuGTAX.AcuParam2("CogeWebCallSime")

        call AcuGTAX.AcuParam3("11")

        call AcuGTAX.AcuExecute()

     end sub

     </SCRIPT>

thanks for the reply


  • Author
  • Rocketeer
  • 19312 replies
  • January 17, 2013

why AcuParam are not recognized?

 <OBJECT ID="AcuGTAX1" WIDTH=640 HEIGHT=480

    CLASSID="CLSID:077C768D-64C1-4AC1-845D-4589B4B2C24E"

    CODEBASE="www.acucorp.com/.../acugtax

 acugtax8121.cab#Version=8,1,2,2949">

    <PARAM NAME="SRC" VALUE="localhost/.../Cogeweb.acu">

    <PARAM NAME="AcuEmbedded" VALUE="TRUE">

    <PARAM NAME="AcuParam1"   VALUE "_PARAZZA">

    <PARAM NAME="AcuParam2"   VALUE "PARAZZAPARAZZA">

    <PARAM NAME="AcuParam3"   VALUE "CogeWeb_Call_Sime">

    <PARAM NAME="AcuParam4"   VALUE "10">

In cobol program "c$getvariant" return blanks.

I restarted IIS and now works