Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1.  Open the axis2.xml file stored in the <DSS_HOME>/repository/conf/axis2 directory.
  2. Add <parameter name=“httpContentNegotiation”>true</parameter> to the list of parameters. Note that this parameter is not available by default in the axis2.xml file and requires to be added manually.

    Code Block
    <axisconfig name="AxisJava2.0">
    
    
        <!-- ================================================= -->
        <!-- Globally engaged modules -->
        <!-- ================================================= -->
        <module ref="addressing"/>
    
        <!-- ================================================= -->
        <!-- Parameters -->
        <!-- ================================================= -->
        <parameter name="hotdeployment">true</parameter>
        <parameter name="hotupdate">true</parameter>
        <parameter name="enableMTOM" locked="false">optional</parameter>
        <parameter name="cacheAttachments">true</parameter>
        <parameter name="attachmentDIR">work/mtom</parameter>
        <parameter name="sizeThreshold">4000</parameter>
        <parameter name=“httpContentNegotiation”>true</parameter>
        <parameter name=“EnableChildFirstClassLoading”>${childfirstCL}</parameter>

...