Connect Direct call using CFEXECUTE

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Connect Direct call using CFEXECUTE

    I am trying to CFEXECUTE Stirling Commerce's CONNECT DIRECT program via a Batch
    File command. I can get Connect Direct to start but can't pick up the arguments
    it needs to send anything. Something about how CFusion syntax is bumping heads
    with the usage of this program. Could be the quotes in the Batch file arugments
    prematurely ending the CFEXECUTE command?? I am trying to pull in another file
    using the redirection command "<". The batch command works on the console but
    CF does not seem to get this triggered all the way.

    <CFEXECUTE Name="C:\batchfile.bat" OUTPUTFILE="c:/output.txt" timeout=15>
    </CFEXECUTE>

    Batch file command =
    c:
    cd \progra~1\cdreq32\
    direct.exe -ucd_epa -pepacduser < c:\CMA00.cdp

    The CDP file has arguments that need to be in quotes so does this cause the
    CFEXECUTE command to quit early and if so, I cannot find how to make a quote be
    just a quote literally.

    f4u_corsair Guest

  2. Similar Questions and Discussions

    1. desperate call for help: "The underlying connection was closed: Unable to connect to the remote server.
      I have a web service running on a server. With my brower, I can get the asmx page and get the expected output on the page. With a console...
    2. #39665 [NEW]: would like to make a direct call to html_entity_decode() from C/C++
      From: drew at folta dot net Operating system: PHP version: 5.2.0 PHP Bug Type: Unknown/Other Function Bug description: ...
    3. CFExecute and MX7
      Under testing CFEXECUTE in MX7 I noted it is running under the SYSTEM account. In MX6.1 it ran under the account that was running the MMCF service. ...
    4. Direct Cable Connect
      You need to install NetBEUI protocall on all computers on your network, for WindowsXP clients download this file and run it, it will then allow you...
    5. direct connect using parallel port
      how to i create a connection between two computer using parallel port,and how do i access the file on the host computer. both computer are running...
  3. #2

    Default Re: Connect Direct call using CFEXECUTE

    If direct.exe tries to access the network, it could be a CF account permission problem.

    Also, you might try this one instead of CFEXECUTE:

    [url]http://www.cftagstore.com/tags/cfxexec.cfm[/url]

    Mr Black Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139