installing CFX_PayFlowPro on JRun4/cfmx

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

  1. #1

    Default installing CFX_PayFlowPro on JRun4/cfmx

    i've been trying to install the cfx_PayFlowPro on a linux box running Jrun4
    that has CFMX 6.1 with no luck so far.

    since the instructions for the cfx tag say to go into the cf admin and modify
    the JVM path to include where the Verisign.jar file is located, and made sure
    the path to that dir also exists.

    the folder i have them in is
    /opt/jrun4/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/lib

    the string from jvm.config is

    # JVM classpath

    java.class.path={application.home}/servers/lib,{application.home}/servers/cfusio
    n/cfusion-ear/cfusion-war/WEB-INF/cfusion/lib/cfusion.jar,{application.home}/ser
    vers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/lib,{application.home}/lib/
    jrun.jar,{application.home}/lib,{application.home}/servers/cfusion/cfusion-ear/c
    fusion-war/WEB-INF/cfusion/lib/Verisign.jar

    the cfx is registered as

    tag name: CFX_PAYFLOWPRO
    class name: CFXPayFlowPro
    desc: CFXPayFlowPro

    the box has been restarted a few times, and no luck thus far.

    i just got the JMC password, so i'm going to see if i can find that to see if
    there is any settings in there that might help. besides that i'm running out
    of ideas because i've searched the web pretty heavily and haven't found anyone
    else with this problem trying to install a cfx tag in a jrun4 environment.

    Thanks in advance

    Sean




    ssidelko Guest

  2. Similar Questions and Discussions

    1. Installing CFMX 7 on WebSphere 6
      We have been working on installing the Trial Edition of CFMX 7 on WAS 6 Express, and we are having problems getting the ColdFusion Administrator to...
    2. Problem installing CFMX develepor
      All of a sudden I can't get into the CF Administrator and setup a new data source. It's been just peachy for 2 years, but now I get various error...
    3. Problem installing CFMX 7
      We have the same problem that you've described. It happens on all pages for us, so we can't change any administrator setting. And it happend on more...
    4. Flash Remoting with CFMX on JRun4
      Hello all, I'm having trouble getting Flash Remoting working with CFMX 7 running on JRun4. When I try to load...
    5. Installing standalone CF7 after installing JRun4
      I have installed JRun4 in developer mode. Subsequently I am attempting to install CF7 in "Multiserver configuration" but this option is dimmed out...
  3. #2

    Default Re: installing CFX_PayFlowPro on JRun4/cfmx

    We had the same problem on a Windows 2000 box. Here's how we solved it:

    Turns out the VeriSign documentation is dead-wrong about what needs to be in
    the classpath. (I figured this out by systematically removing each classpath
    entry from jvm.config and restarting the cfusion service each time to see if it
    worked.)

    The key is to NOT have Verisign.jar specified in the classpath; only the path
    to the correct FOLDER should be specified, WITHOUT the file name:

    Incorrect:
    {application.home}/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/lib/V
    erisign.jar

    Correct:
    {application.home}/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/lib

    (Why cfusion.jar and jrun.jar work with their file names in the classpath is
    beyond me. But trust me on this one.)

    I also learned that any other Java cfx tag .jar files need to be in the same
    folder as Verisign.jar or else there may be conflicts. It doesn't matter where
    you put them, as long as they're all in the same place, and in a folder
    specified in the classpath.

    Another important tip: DO NOT use the JRun JMC to change the classpaths. There
    seems to be a bug in the JMC that corrupts the jvm.config file. (Adds extra
    carriage returns maybe?) Better to edit the file in Notepad.

    Also remember that the same jvm.config is used by all your cf server
    instances. So make sure any changes you make will work across all server
    instances on that box.

    Hope that helps!

    websaws Guest

  4. #3

    Default Re: installing CFX_PayFlowPro on JRun4/cfmx

    RE: Another important tip: DO NOT use the JRun JMC to change the classpaths.
    There seems to be a bug in the JMC that corrupts the jvm.config file

    This is bug 53429 as detailed in
    [url]http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19094[/url]

    Regards,

    David.

    rave 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