Web Services broken on ColdFusion MX 8

  • 23
  • Nov 2012
  • Dev @ Contech Lab
  • View: 21572 | 0 Comments

  • linux | coldfusion | library | webservices

  • Running CFMX 8 and CFINVOKE TAG, Web Services seem to be broken.

    This error follows a series of errors during update of CFCs procedure.

    Our system Centos Linux OS reads as follows...

    view plain print about
    <CFINVOKE>

    (webservice), or createObject("webservice")

    coldfusion.jsp.CompilationFailedException: 

    Errors reported by Java compiler: jikes: error while loading 
    shared libraries: 

    libstdc++.so.5: 

    cannot open shared object file: No such file or directory .

    The solution:

    need to install the compat-libstdc++-33 package.

    This is the latest one as of today:

    compat-libstdc++-33-3.2.3-47.3.i386.rpm

    Install that and all will be fine. The issue is jikes is looking for libstdc++.so.5, but libstdc++.so.6 is installed. try this on linux machine:

    view plain print about
    yum install compat-libstdc*

    Installing: compat-libstdc++-296 compat-libstdc++-33

    Problem solved ! OK