It seems to me the possible values for the compression property are:
static int WMQ_COMPMSG_DEFAULT
static int WMQ_COMPMSG_NONE
static int WMQ_COMPMSG_RLE
static int WMQ_COMPMSG_ZLIBFAST
static int WMQ_COMPMSG_ZLIBHIGH
So something like this might work:
cf.SetIntProperty(XMSC.WMQ_MSG_COMP, XMSC.WMQ_COMPMSG_DEFAULT);
Edit:
Even got the actual values, if that helps.
public static final int WMQ_COMPMSG_DEFAULT 0
public static final int WMQ_COMPMSG_NONE 0
public static final int WMQ_COMPMSG_RLE 1
public static final int WMQ_COMPMSG_ZLIBFAST 2
public static final int WMQ_COMPMSG_ZLIBHIGH 4
Please remember, I'm trying to help, but won't set up a test environment just to post a possible solution. If it doesn't help feel free to vote it down.